/ohos5.0/foundation/arkui/ace_engine_lite/frameworks/src/core/router/ |
H A D | js_page_state.cpp | 27 int currState = sm.GetCurrentState(); in Handle() local 28 if (currState == UNDEFINED_STATE) { in Handle() 46 int currState = sm.GetCurrentState(); in Handle() local 47 if (currState == INIT_STATE) { in Handle() 57 currState); in Handle() 63 int currState = sm.GetCurrentState(); in Handle() local 64 if ((currState == READY_STATE) || (currState == BACKGROUND_STATE)) { in Handle() 74 currState); in Handle() 80 int currState = sm.GetCurrentState(); in Handle() local 81 if ((currState == READY_STATE) || (currState == SHOW_STATE)) { in Handle() [all …]
|
/ohos5.0/base/security/device_security_level/baselib/utils/src/ |
H A D | utils_state_machine.c | 35 machine->currState = initState; in InitStateMachine() 91 uint32_t state = machine->currState; in ScheduleMachine() 100 machine->currState = (result == true) ? node->nextStateT : node->nextStateF; in ScheduleMachine() 103 machine->machineId, state, event, machine->currState); in ScheduleMachine()
|
/ohos5.0/foundation/multimedia/player_framework/services/services/player/server/ |
H A D | player_server.cpp | 473 return currState->Prepare(); in OnPrepare() 554 (void)currState->Play(); in OnPlay() 612 (void)currState->Pause(isSystemOperation); in OnPause() 676 (void)currState->Stop(); in OnStop() 855 (void)currState->Seek(mSeconds, mode); in Seek() 1071 (void)currState->SetPlaybackSpeed(mode); in SetPlaybackSpeed() 1157 (void)currState->Seek(seekTime, seekMode); in HandleEos() 1559 (void)currState->Pause(true); in OnErrorMessage() 1570 (void)currState->PauseDemuxer(); in OnErrorMessage() 1685 (void)currState->PauseDemuxer(); in OnNotifyBufferingStart() [all …]
|
/ohos5.0/foundation/graphic/graphic_3d/lume/Lume_3D/src/render/node/ |
H A D | render_node_default_depth_render_slot.cpp | 434 RenderHandle currState; in CreateNewPso() local 449 currState = gfxStateHandle; in CreateNewPso() 458 currState = slotState; in CreateNewPso() 468 … currState = RenderHandleUtil::IsValid(currState) ? currState : allShaderData_.defaultStateHandle; in CreateNewPso() 475 GraphicsState gfxState = shaderMgr.GetGraphicsState(currState); in CreateNewPso() 481 const GraphicsState& gfxState = shaderMgr.GetGraphicsState(currState); in CreateNewPso() 483 …psoHandle = psoMgr.GetGraphicsPsoHandle(currShader, currState, currPl, currVid, spec, dynamicState… in CreateNewPso() 486 allShaderData_.perShaderData.push_back(PerShaderData { currShader, psoHandle, currState }); in CreateNewPso()
|
H A D | render_node_default_shadow_render_slot.cpp | 463 RenderHandle currState; in CreateNewPso() local 475 currState = gfxStateHandle; in CreateNewPso() 484 currState = slotState; in CreateNewPso() 492 currState = RenderHandleUtil::IsValid(currState) ? currState : ssd.defaultShaderState; in CreateNewPso() 499 GraphicsState gfxState = shaderMgr.GetGraphicsState(currState); in CreateNewPso() 507 …currShader, currState, currPl, currVid, specialization, { DYNAMIC_STATES, countof(DYNAMIC_STATES) … in CreateNewPso() 510 allShaderData_.perShaderData.push_back(PerShaderData { currShader, psoHandle, currState }); in CreateNewPso()
|
H A D | render_node_default_material_render_slot.cpp | 720 RenderHandle currState; in CreateNewPso() local 735 currState = gfxStateHandle; in CreateNewPso() 744 currState = slotState; in CreateNewPso() 754 … currState = RenderHandleUtil::IsValid(currState) ? currState : allShaderData_.defaultStateHandle; in CreateNewPso() 760 GraphicsState gfxState = shaderMgr.GetGraphicsState(currState); in CreateNewPso() 767 const GraphicsState& gfxState = shaderMgr.GetGraphicsState(currState); in CreateNewPso() 770 …psoHandle = psoMgr.GetGraphicsPsoHandle(currShader, currState, currPl, currVid, spec, GetDynamicSt… in CreateNewPso() 775 …allShaderData_.perShaderData.push_back(PerShaderData { currShader, psoHandle, currState, needsCust… in CreateNewPso()
|
/ohos5.0/base/security/device_security_level/services/dslm/ |
H A D | dslm_core_process.c | 227 info->machine.currState = STATE_SUCCESS; in InitSelfDeviceSecureLevel() 231 info->machine.currState = STATE_FAILED; in InitSelfDeviceSecureLevel() 234 info->machine.currState = STATE_SUCCESS; in InitSelfDeviceSecureLevel()
|
H A D | dslm_fsm_process.c | 458 return info->machine.currState; in GetCurrentMachineState()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/gestures/ |
H A D | parallel_recognizer.cpp | 110 DetectState currState = recognizer->GetDetectState(); in IsRecognizeEnd() local 112 return (refereeState == RefereeState::SUCCEED && currState != DetectState::DETECTED) || in IsRecognizeEnd()
|
H A D | sequenced_recognizer.cpp | 102 DetectState currState = curRecognizer->GetDetectState(); in HandleEvent() local 103 …if (curRecognizer->GetRefereeState() == RefereeState::SUCCEED && currState != DetectState::DETECTE… in HandleEvent()
|
/ohos5.0/base/security/device_security_level/baselib/utils/include/ |
H A D | utils_state_machine.h | 42 uint32_t currState; member
|
/ohos5.0/foundation/multimedia/player_framework/services/services/player/player_mem_manage/ |
H A D | player_server_mem.cpp | 71 recoverConfig_.currState = std::static_pointer_cast<MemBaseState>(memIdleState_); in Init() 755 recoverConfig_.currState = itSatetMap->second; in LocalResourceRelease() 756 auto ret = recoverConfig_.currState->MemStateRelease(); in LocalResourceRelease() 797 MEDIA_LOGI("Enter, currState:%{public}s", recoverConfig_.currState->GetStateName().c_str()); in LocalResourceRecover() 801 auto ret = recoverConfig_.currState->MemStateRecover(); in LocalResourceRecover() 890 recoverConfig_.currState->MemPlayerCbRecover(type, extra); in CheckHasRecover()
|
H A D | player_server_mem.h | 105 std::shared_ptr<MemBaseState> currState = nullptr; member
|
/ohos5.0/foundation/communication/wifi/wifi/services/wifi_standard/wifi_framework/wifi_manage/wifi_controller/ |
H A D | wifi_controller_state_machine.cpp | 506 auto currState = WifiConfigCenter::GetInstance().GetWifiDetailState(msg->GetParam2()); in ShouldDisableWifi() local 508 …(currState == WifiDetailState::STATE_ACTIVATED || currState == WifiDetailState::STATE_ACTIVATING) … in ShouldDisableWifi()
|
/ohos5.0/base/security/device_security_level/test/dslm_fuzz_test/dslm_fuzzer/ |
H A D | dslm_fuzzer.cpp | 339 info->machine.currState = parcel.ReadUint32() % ITEMSTATE; in OnPeerMsgReceivedFuzzer()
|
/ohos5.0/base/security/device_security_level/test/dslm_unit_test/ |
H A D | dslm_test.cpp | 470 if (info->machine.currState == status) { in BlockCheckDeviceStatus() 1416 EXPECT_EQ(STATE_WAITING_CRED_RSP, info->machine.currState); 1419 EXPECT_EQ(STATE_FAILED, info->machine.currState);
|