Home
last modified time | relevance | path

Searched refs:ReportDataCache (Results 1 – 16 of 16) sorted by relevance

/base/sensors/medical_sensor/utils/include/
Dreport_data_cache.h36 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/
Dreport_data_cache.cpp35 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/
Dhdi_connection.h47 …int32_t RegisteDataReport(DataCacheFunc cacheData, sptr<ReportDataCache> reportDataCache) override;
53 sptr<ReportDataCache> getReportDataCallback();
59 static sptr<ReportDataCache> reportDataCache_;
Dcompatible_connection.h46 …int32_t RegisteDataReport(DataCacheFunc cacheData, sptr<ReportDataCache> reportDataCache) override;
54 static sptr<ReportDataCache> reportDataCache_;
/base/sensors/medical_sensor/services/medical_sensor/include/
Dmedical_sensor_manager.h42 sptr<ReportDataCache> dataCache);
51 sptr<ReportDataCache> reportDataCache_;
Dmedical_sensor_data_processer.h40 int32_t ProcessEvents(sptr<ReportDataCache> dataCallback);
42 …static int DataThread(sptr<MedicalSensorDataProcesser> dataProcesser, sptr<ReportDataCache> dataCa…
Dmedical_sensor_service.h93 sptr<ReportDataCache> reportDataCache_;
/base/sensors/medical_sensor/services/medical_sensor/hdi_connection/interface/include/
Di_sensor_hdi_connection.h48 …virtual int32_t RegisteDataReport(DataCacheFunc cacheData, sptr<ReportDataCache> reportDataCache) …
Dsensor_hdi_connection.h46 …int32_t RegisteDataReport(DataCacheFunc cacheData, sptr<ReportDataCache> reportDataCache) override;
/base/sensors/medical_sensor/services/medical_sensor/hdi_connection/adapter/src/
Dsensor_event_callback.cpp46 sptr<ReportDataCache> reportDataCallback_ = HdiConnection_->getReportDataCallback(); in OnDataEvent()
Dcompatible_connection.cpp33 sptr<ReportDataCache> CompatibleConnection::reportDataCache_ = nullptr;
151 int32_t CompatibleConnection::RegisteDataReport(DataCacheFunc cacheData, sptr<ReportDataCache> repo… in RegisteDataReport()
Dhdi_connection.cpp46 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/
Dsensor_hdi_connection.cpp129 int32_t SensorHdiConnection::RegisteDataReport(DataCacheFunc cacheData, sptr<ReportDataCache> repor… in RegisteDataReport()
/base/sensors/medical_sensor/services/medical_sensor/src/
Dmedical_data_processer.cpp358 int32_t MedicalSensorDataProcesser::ProcessEvents(sptr<ReportDataCache> dataCache) in ProcessEvents()
404 sptr<MedicalSensorDataProcesser> dataProcesser, sptr<ReportDataCache> dataCache) in DataThread()
Dmedical_manager.cpp34 sptr<MedicalSensorDataProcesser> dataProcesser, sptr<ReportDataCache> dataCache) in InitSensorMap()
Dmedical_service.cpp111 reportDataCache_ = new (std::nothrow) ReportDataCache(); in InitDataCache()
116 DataCacheFunc cacheData = &ReportDataCache::CacheData; in InitDataCache()