Searched refs:ReportDataCache (Results 1 – 16 of 16) sorted by relevance
/base/sensors/medical_sensor/utils/include/ |
D | report_data_cache.h | 36 class ReportDataCache : public RefBase { 38 ReportDataCache(); 39 ~ReportDataCache(); 40 int32_t CacheData(const struct SensorEvent *event, sptr<ReportDataCache> cache); 45 using DataCacheFunc = int32_t (ReportDataCache::*)(const struct SensorEvent *event, sptr<ReportData…
|
/base/sensors/medical_sensor/utils/src/ |
D | report_data_cache.cpp | 35 ReportDataCache::ReportDataCache() in ReportDataCache() function in OHOS::Sensors::ReportDataCache 43 ReportDataCache::~ReportDataCache() in ~ReportDataCache() 54 int32_t ReportDataCache::CacheData(const struct SensorEvent* event, sptr<ReportDataCache> cache) in CacheData() 97 struct CircularEventBuf &ReportDataCache::GetEventData() in GetEventData()
|
/base/sensors/medical_sensor/services/medical_sensor/hdi_connection/adapter/include/ |
D | hdi_connection.h | 47 …int32_t RegisteDataReport(DataCacheFunc cacheData, sptr<ReportDataCache> reportDataCache) override; 53 sptr<ReportDataCache> getReportDataCallback(); 59 static sptr<ReportDataCache> reportDataCache_;
|
D | compatible_connection.h | 46 …int32_t RegisteDataReport(DataCacheFunc cacheData, sptr<ReportDataCache> reportDataCache) override; 54 static sptr<ReportDataCache> reportDataCache_;
|
/base/sensors/medical_sensor/services/medical_sensor/include/ |
D | medical_sensor_manager.h | 42 sptr<ReportDataCache> dataCache); 51 sptr<ReportDataCache> reportDataCache_;
|
D | medical_sensor_data_processer.h | 40 int32_t ProcessEvents(sptr<ReportDataCache> dataCallback); 42 …static int DataThread(sptr<MedicalSensorDataProcesser> dataProcesser, sptr<ReportDataCache> dataCa…
|
D | medical_sensor_service.h | 93 sptr<ReportDataCache> reportDataCache_;
|
/base/sensors/medical_sensor/services/medical_sensor/hdi_connection/interface/include/ |
D | i_sensor_hdi_connection.h | 48 …virtual int32_t RegisteDataReport(DataCacheFunc cacheData, sptr<ReportDataCache> reportDataCache) …
|
D | sensor_hdi_connection.h | 46 …int32_t RegisteDataReport(DataCacheFunc cacheData, sptr<ReportDataCache> reportDataCache) override;
|
/base/sensors/medical_sensor/services/medical_sensor/hdi_connection/adapter/src/ |
D | sensor_event_callback.cpp | 46 sptr<ReportDataCache> reportDataCallback_ = HdiConnection_->getReportDataCallback(); in OnDataEvent()
|
D | compatible_connection.cpp | 33 sptr<ReportDataCache> CompatibleConnection::reportDataCache_ = nullptr; 151 int32_t CompatibleConnection::RegisteDataReport(DataCacheFunc cacheData, sptr<ReportDataCache> repo… in RegisteDataReport()
|
D | hdi_connection.cpp | 46 sptr<ReportDataCache> HdiConnection::reportDataCache_ = nullptr; 175 int32_t HdiConnection::RegisteDataReport(DataCacheFunc cacheData, sptr<ReportDataCache> reportDataC… in RegisteDataReport() 223 sptr<ReportDataCache> HdiConnection::getReportDataCallback() in getReportDataCallback()
|
/base/sensors/medical_sensor/services/medical_sensor/hdi_connection/interface/src/ |
D | sensor_hdi_connection.cpp | 129 int32_t SensorHdiConnection::RegisteDataReport(DataCacheFunc cacheData, sptr<ReportDataCache> repor… in RegisteDataReport()
|
/base/sensors/medical_sensor/services/medical_sensor/src/ |
D | medical_data_processer.cpp | 358 int32_t MedicalSensorDataProcesser::ProcessEvents(sptr<ReportDataCache> dataCache) in ProcessEvents() 404 sptr<MedicalSensorDataProcesser> dataProcesser, sptr<ReportDataCache> dataCache) in DataThread()
|
D | medical_manager.cpp | 34 sptr<MedicalSensorDataProcesser> dataProcesser, sptr<ReportDataCache> dataCache) in InitSensorMap()
|
D | medical_service.cpp | 111 reportDataCache_ = new (std::nothrow) ReportDataCache(); in InitDataCache() 116 DataCacheFunc cacheData = &ReportDataCache::CacheData; in InitDataCache()
|