Home
last modified time | relevance | path

Searched refs:ActionThermalLevel (Results 1 – 6 of 6) sorted by relevance

/ohos5.0/base/powermgr/thermal_manager/services/native/src/thermal_action/action/
H A Daction_thermal_level.cpp39 int32_t ActionThermalLevel::lastValue_ = INT_MIN;
41 ActionThermalLevel::ActionThermalLevel(const std::string& actionName) in ActionThermalLevel() function in OHOS::PowerMgr::ActionThermalLevel
46 void ActionThermalLevel::InitParams(const std::string& params) in InitParams()
53 void ActionThermalLevel::SetStrict(bool enable) in SetStrict()
58 void ActionThermalLevel::SetEnableEvent(bool enable) in SetEnableEvent()
63 void ActionThermalLevel::AddActionValue(std::string value) in AddActionValue()
71 void ActionThermalLevel::Execute() in Execute()
86 int32_t ActionThermalLevel::GetActionValue() in GetActionValue()
99 int32_t ActionThermalLevel::GetThermalLevel() in GetThermalLevel()
104 void ActionThermalLevel::LevelRequest(int32_t level) in LevelRequest()
[all …]
/ohos5.0/base/powermgr/thermal_manager/services/native/include/thermal_action/action/
H A Daction_thermal_level.h34 class ActionThermalLevel : public IThermalAction {
36 ActionThermalLevel(const std::string& actionName);
37 ~ActionThermalLevel() = default;
/ohos5.0/base/powermgr/thermal_manager/test/unittest/src/
H A Dthermal_action_test.cpp63 std::shared_ptr<ActionThermalLevel> g_actionThermalLevel = std::make_shared<ActionThermalLevel>("th…
150 std::make_shared<ActionThermalLevel::ThermalLevelCallbackDeathRecipient>();
/ohos5.0/base/powermgr/thermal_manager/services/native/include/thermal_action/
H A Dthermal_action_manager.h64 std::shared_ptr<ActionThermalLevel> actionThermalLevel_;
/ohos5.0/base/powermgr/thermal_manager/services/native/src/thermal_action/
H A Dthermal_action_factory.cpp60 … [&](std::string actionName) { return std::make_shared<ActionThermalLevel>(actionName); }), in InitFactory()
H A Dthermal_action_manager.cpp35 actionThermalLevel_ = std::make_shared<ActionThermalLevel>(THERMAL_LEVEL_NAME); in Init()