Home
last modified time | relevance | path

Searched refs:LoopingThreadEntry (Results 1 – 14 of 14) sorted by relevance

/ohos5.0/base/msdp/device_status/test/unittest/libs/src/
H A Ddevice_status_mock_test.cpp286 std::make_unique<std::thread>(&DeviceStatusMsdpMock::LoopingThreadEntry, g_testMock)->detach();
302 std::make_unique<std::thread>(&DeviceStatusMsdpMock::LoopingThreadEntry, g_testMock)->detach();
318 std::make_unique<std::thread>(&DeviceStatusMsdpMock::LoopingThreadEntry, g_testMock)->detach();
334 std::make_unique<std::thread>(&DeviceStatusMsdpMock::LoopingThreadEntry, g_testMock)->detach();
452 std::make_unique<std::thread>(&DeviceStatusMsdpMock::LoopingThreadEntry, g_testMock)->detach();
493 std::make_unique<std::thread>(&DeviceStatusMsdpMock::LoopingThreadEntry, g_testMock)->detach();
510 std::make_unique<std::thread>(&DeviceStatusMsdpMock::LoopingThreadEntry, g_testMock)->detach();
567 deviceStatusMsdpMock.LoopingThreadEntry();
582 deviceStatusMsdpMock.LoopingThreadEntry();
/ohos5.0/drivers/peripheral/thermal/interfaces/hdi_service/src/
H A Dthermal_hdf_timer.cpp91 void ThermalHdfTimer::LoopingThreadEntry() in LoopingThreadEntry() function in OHOS::HDI::Thermal::V1_1::ThermalHdfTimer
120 callbackThread_ = std::make_unique<std::thread>([this] { this->LoopingThreadEntry(); }); in Run()
/ohos5.0/base/powermgr/thermal_manager/application/protector/src/
H A Dthermal_protector_timer.cpp141 int32_t ThermalProtectorTimer::LoopingThreadEntry(void *arg, int32_t epfd) in LoopingThreadEntry() function in OHOS::PowerMgr::ThermalProtectorTimer
166 …std::make_unique<std::thread>([this, service, epfd] { this->LoopingThreadEntry(service, epfd); })-… in Run()
H A Dthermal_sensor_provider.cpp197 int32_t ThermalSensorProvider::LoopingThreadEntry(void *arg, int32_t epfd) in LoopingThreadEntry() function in OHOS::PowerMgr::ThermalSensorProvider
218 …std::make_unique<std::thread>([this, service, epfd] { this->LoopingThreadEntry(service, epfd); })-… in Run()
/ohos5.0/base/msdp/device_status/libs/src/
H A Ddevicestatus_msdp_mock.cpp234 thread_ = std::thread([this] { this->LoopingThreadEntry(); }); in StartThread()
238 void DeviceStatusMsdpMock::LoopingThreadEntry() in LoopingThreadEntry() function in OHOS::Msdp::DeviceStatus::DeviceStatusMsdpMock
/ohos5.0/base/powermgr/battery_manager/charger/include/
H A Dbattery_thread.h40 int32_t LoopingThreadEntry(void* arg);
/ohos5.0/drivers/peripheral/thermal/interfaces/hdi_service/include/
H A Dthermal_hdf_timer.h45 void LoopingThreadEntry();
/ohos5.0/base/powermgr/thermal_manager/application/protector/include/
H A Dthermal_protector_timer.h39 int32_t LoopingThreadEntry(void *arg, int32_t epfd);
H A Dthermal_sensor_provider.h52 int32_t LoopingThreadEntry(void *arg, int32_t epfd);
/ohos5.0/drivers/peripheral/battery/interfaces/hdi_service/src/
H A Dbattery_thread.cpp255 void BatteryThread::LoopingThreadEntry(void* arg) in LoopingThreadEntry() function in OHOS::HDI::Battery::V2_0::BatteryThread
296 …batteryThread_ = std::make_unique<std::thread>([this, service] { this->LoopingThreadEntry(service)… in Run()
/ohos5.0/base/msdp/device_status/libs/include/
H A Ddevicestatus_msdp_mock.h51 void LoopingThreadEntry();
/ohos5.0/drivers/peripheral/battery/interfaces/hdi_service/include/
H A Dbattery_thread.h44 void LoopingThreadEntry(void* arg);
/ohos5.0/base/powermgr/battery_manager/charger/src/
H A Dbattery_thread.cpp171 int32_t BatteryThread::LoopingThreadEntry(void* arg) in LoopingThreadEntry() function in OHOS::PowerMgr::BatteryThread
H A Dcharger_thread.cpp456 std::make_unique<std::thread>([this, service] { this->LoopingThreadEntry(service); })->join(); in Run()