Home
last modified time | relevance | path

Searched refs:idleState (Results 1 – 11 of 11) sorted by relevance

/ohos5.0/base/telephony/cellular_data/test/fuzztest/updateincalldatamachine_fuzzer/
H A Dupdateincalldatamachine_fuzzer.cpp47 auto idleState = static_cast<IdleState *>(machine->idleState_.GetRefPtr()); in IdleStateMachineFuzz() local
61 idleState->StateProcess(event); in IdleStateMachineFuzz()
62 idleState->ProcessCallStarted(event); in IdleStateMachineFuzz()
63 idleState->ProcessCallEnded(event); in IdleStateMachineFuzz()
64 idleState->ProcessSettingsOn(event); in IdleStateMachineFuzz()
65 idleState->ProcessDsdsChanged(event); in IdleStateMachineFuzz()
187 idleState->StateProcess(event); in DeactivatingSecondaryStateMachineFuzz()
188 idleState->ProcessCallStarted(event); in DeactivatingSecondaryStateMachineFuzz()
189 idleState->ProcessCallEnded(event); in DeactivatingSecondaryStateMachineFuzz()
190 idleState->ProcessSettingsOn(event); in DeactivatingSecondaryStateMachineFuzz()
[all …]
/ohos5.0/base/powermgr/thermal_manager/test/unittest/src/
H A Dthermal_config_file_parser.cpp294 IdleState idleState; in ParseIdleNode() local
299 StrToInt(reinterpret_cast<char*>(value), idleState.level); in ParseIdleNode()
305 StrToInt(reinterpret_cast<char*>(value), idleState.soc); in ParseIdleNode()
311 StrToInt(reinterpret_cast<char*>(value), idleState.charging); in ParseIdleNode()
317 StrToInt(reinterpret_cast<char*>(value), idleState.current); in ParseIdleNode()
325 idleState.level, idleState.soc, idleState.charging, idleState.current); in ParseIdleNode()
/ohos5.0/base/powermgr/thermal_manager/services/native/include/thermal_observer/state_machine/
H A Dstate_machine.h54 void SetIdleStateConfig(const IdleState& idleState) in SetIdleStateConfig() argument
56 idleStateConfig_ = idleState; in SetIdleStateConfig()
/ohos5.0/base/powermgr/thermal_manager/services/native/src/thermal_policy/
H A Dthermal_srv_config_parser.cpp659 IdleState idleState; in ParseIdleNode() local
664 StrToInt(reinterpret_cast<char*>(value), idleState.level); in ParseIdleNode()
670 StrToInt(reinterpret_cast<char*>(value), idleState.soc); in ParseIdleNode()
676 StrToInt(reinterpret_cast<char*>(value), idleState.charging); in ParseIdleNode()
682 StrToInt(reinterpret_cast<char*>(value), idleState.current); in ParseIdleNode()
690 idleState.level, idleState.soc, idleState.charging, idleState.current); in ParseIdleNode()
692 tms->GetStateMachineObj()->SetIdleStateConfig(idleState); in ParseIdleNode()
/ohos5.0/foundation/communication/wifi/wifi/test/wifi_standard/wifi_framework/wifi_manage/wifi_p2p/test/Mock/
H A Dmock_p2p_state_machine.h30 …oupJoinState &groupJoinState, P2pGroupOperatingState &groupOperatingState, P2pIdleState &idleState, in MockP2pStateMachine() argument
36 … groupOperatingState, idleState, invitingState, provisionDiscoveryState, groupRemoveState) in MockP2pStateMachine()
/ohos5.0/foundation/arkui/napi/native_engine/impl/ark/
H A Dark_idle_monitor.h52 void SetIdleState(bool idleState) in SetIdleState() argument
54 idleState_.store(idleState, std::memory_order_relaxed); in SetIdleState()
/ohos5.0/base/location/frameworks/location_common/common/source/
H A Dhook_utils.cpp105 bool HookUtils::ExecuteHookWhenAddWorkRecord(bool stillState, bool idleState, std::string abilityNa… in ExecuteHookWhenAddWorkRecord() argument
110 locatorRequestStruct.deviceIdleState = idleState; in ExecuteHookWhenAddWorkRecord()
/ohos5.0/base/telephony/call_manager/test/unittest/call_manager_gtest/src/
H A Dcall_manager1_gtest.cpp626 int32_t idleState = (int32_t)CallStateToApp::CALL_STATE_IDLE; variable
627 ASSERT_EQ(callState, idleState);
752 int32_t idleState = (int32_t)CallStateToApp::CALL_STATE_IDLE; variable
753 ASSERT_EQ(callState, idleState);
772 int32_t idleState = (int32_t)CallStateToApp::CALL_STATE_IDLE; variable
773 ASSERT_EQ(callState, idleState);
/ohos5.0/base/location/interfaces/inner_api/include/
H A Dhook_utils.h101 … static bool ExecuteHookWhenAddWorkRecord(bool stillState, bool idleState, std::string abilityName,
/ohos5.0/base/telephony/cellular_data/test/
H A Dzero_branch_test.cpp1400 auto idleState = static_cast<IdleState *>(incallStateMachine->idleState_.GetRefPtr()); variable
1403 idleState->StateBegin();
1404 ASSERT_FALSE(idleState->StateProcess(event));
1405 ASSERT_TRUE(idleState->ProcessCallStarted(event));
1406 ASSERT_TRUE(idleState->ProcessCallEnded(event));
1407 ASSERT_TRUE(idleState->ProcessSettingsOn(event));
1408 ASSERT_TRUE(idleState->ProcessDsdsChanged(event));
1409 idleState->StateEnd();
/ohos5.0/foundation/communication/wifi/wifi/services/wifi_standard/wifi_framework/wifi_manage/wifi_p2p/
H A Dp2p_state_machine.cpp63 …P2pGroupOperatingState &groupOperatingState, P2pIdleState &idleState, P2pInvitingState &invitingSt… in P2pStateMachine() argument
84 p2pIdleState(idleState), in P2pStateMachine()