Home
last modified time | relevance | path

Searched refs:nextState (Results 1 - 25 of 58) sorted by relevance

123

/base/telephony/call_manager/services/call_report/src/
H A Dcall_state_report_proxy.cpp38 sptr<CallBase> &callObjectPtr, TelCallState priorState, TelCallState nextState) in CallStateUpdated()
48 UpdateCallState(callObjectPtr, nextState); in CallStateUpdated()
49 UpdateCallStateForSlotId(callObjectPtr, nextState); in CallStateUpdated()
52 void CallStateReportProxy::UpdateCallState(sptr<CallBase> &callObjectPtr, TelCallState nextState) in UpdateCallState() argument
55 if (nextState == TelCallState::CALL_STATUS_ANSWERED) { in UpdateCallState()
65 if ((foregroundCall != nullptr) && (nextState == TelCallState::CALL_STATUS_ANSWERED || in UpdateCallState()
69 if (nextState == TelCallState::CALL_STATUS_ANSWERED) { in UpdateCallState()
105 TelCallState nextState = TelCallState::CALL_STATUS_IDLE; in GetVoipCallState() local
108 nextState = TelCallState::CALL_STATUS_IDLE; in GetVoipCallState()
111 nextState in GetVoipCallState()
37 CallStateUpdated( sptr<CallBase> &callObjectPtr, TelCallState priorState, TelCallState nextState) CallStateUpdated() argument
125 UpdateCallStateForSlotId(sptr<CallBase> &callObjectPtr, TelCallState nextState) UpdateCallStateForSlotId() argument
[all...]
/base/telephony/call_manager/test/fuzztest/callnotification_fuzzer/
H A Dcallnotification_fuzzer.cpp48 TelCallState nextState = static_cast<TelCallState>(size % CALL_STATE_NUM); in IncomingCallNotificationFunc() local
53 notification->CallStateUpdated(callObjectPtr, priorState, nextState); in IncomingCallNotificationFunc()
72 TelCallState nextState = static_cast<TelCallState>(size % CALL_STATE_NUM); in IncomingCallWakeupFunc() local
82 notification->CallStateUpdated(callObjectPtr, priorState, nextState); in IncomingCallWakeupFunc()
95 TelCallState nextState = static_cast<TelCallState>(size % CALL_STATE_NUM); in ProximitySensorFunc() local
103 notification->CallStateUpdated(callObjectPtr, priorState, nextState); in ProximitySensorFunc()
116 TelCallState nextState = static_cast<TelCallState>(size % CALL_STATE_NUM); in StatusBarFunc() local
127 notification->CallStateUpdated(callObjectPtr, priorState, nextState); in StatusBarFunc()
140 TelCallState nextState = static_cast<TelCallState>(size % CALL_STATE_NUM); in WiredHeadsetHandlerFunc() local
149 notification->CallStateUpdated(callObjectPtr, priorState, nextState); in WiredHeadsetHandlerFunc()
188 TelCallState nextState = static_cast<TelCallState>(size % CALL_STATE_NUM); MissedCallNotificationFunc() local
213 TelCallState nextState = static_cast<TelCallState>(size % CALL_STATE_NUM); RejectCallSmsFunc() local
[all...]
/base/telephony/call_manager/services/call_report/include/
H A Dcall_state_report_proxy.h31 void CallStateUpdated(sptr<CallBase> &callObjectPtr, TelCallState priorState, TelCallState nextState);
32 void UpdateCallState(sptr<CallBase> &callObjectPtr, TelCallState nextState);
33 void UpdateCallStateForSlotId(sptr<CallBase> &callObjectPtr, TelCallState nextState);
/base/useriam/face_auth/services_ex/src/
H A Dfinite_state_machine_builder.cpp41 uint32_t nextState, const FiniteStateMachine::Action &action) in MakeTransition()
43 auto ret = transitionMap_.try_emplace(FiniteStateMachineImpl::GetTransitionIndex(state, event), nextState, action); in MakeTransition()
52 uint32_t nextState) in MakeTransition()
54 MakeTransition(state, event, nextState, nullptr); in MakeTransition()
40 MakeTransition(uint32_t state, uint32_t event, uint32_t nextState, const FiniteStateMachine::Action &action) MakeTransition() argument
51 MakeTransition(uint32_t state, uint32_t event, uint32_t nextState) MakeTransition() argument
/base/useriam/user_auth_framework/services/base/src/
H A Dfinite_state_machine_builder.cpp41 uint32_t nextState, const FiniteStateMachine::Action &action) in MakeTransition()
43 auto ret = transitionMap_.try_emplace(FiniteStateMachineImpl::GetTransitionIndex(state, event), nextState, action); in MakeTransition()
52 uint32_t nextState) in MakeTransition()
54 MakeTransition(state, event, nextState, nullptr); in MakeTransition()
40 MakeTransition(uint32_t state, uint32_t event, uint32_t nextState, const FiniteStateMachine::Action &action) MakeTransition() argument
51 MakeTransition(uint32_t state, uint32_t event, uint32_t nextState) MakeTransition() argument
H A Dfinite_state_machine_builder.h36 std::shared_ptr<FiniteStateMachine::Builder> MakeTransition(uint32_t state, uint32_t event, uint32_t nextState,
39 uint32_t nextState) override;
/base/account/os_account/services/accountmgr/src/
H A Daccount_state_machine.cpp123 int nextState = eventIter->second->GetNextState(); in StateChangeProcess() local
124 if (currentState_ != nextState) { in StateChangeProcess()
125 ACCOUNT_LOGI("account state change, (oldstate, newstate) = (%{public}d, %{public}d)", currentState_, nextState); in StateChangeProcess()
126 currentState_ = nextState; in StateChangeProcess()
131 stateRecordStr.append(std::to_string(nextState)).append("], event[").append(std::to_string(evt)).append("] Cost"); in StateChangeProcess()
/base/telephony/call_manager/services/satellite_call/src/
H A Dsatellite_call_control.cpp130 TelCallState priorState, TelCallState nextState) in HandleSatelliteCallStateUpdate()
132 bool isDisconnected = (nextState == TelCallState::CALL_STATUS_DISCONNECTED in HandleSatelliteCallStateUpdate()
133 || nextState == TelCallState::CALL_STATUS_DISCONNECTING) ? true : false; in HandleSatelliteCallStateUpdate()
138 if (nextState == TelCallState::CALL_STATUS_INCOMING || nextState == TelCallState::CALL_STATUS_WAITING) { in HandleSatelliteCallStateUpdate()
141 if (nextState == TelCallState::CALL_STATUS_ACTIVE) { in HandleSatelliteCallStateUpdate()
152 if (nextState == TelCallState::CALL_STATUS_ACTIVE && !IsShowDialog()) { in HandleSatelliteCallStateUpdate()
129 HandleSatelliteCallStateUpdate(sptr<CallBase> &call, TelCallState priorState, TelCallState nextState) HandleSatelliteCallStateUpdate() argument
/base/useriam/face_auth/services_ex/inc/
H A Dfinite_state_machine_builder.h36 std::shared_ptr<FiniteStateMachine::Builder> MakeTransition(uint32_t state, uint32_t event, uint32_t nextState,
39 uint32_t nextState) override;
H A Dfinite_state_machine.h46 virtual std::shared_ptr<Builder> MakeTransition(uint32_t state, uint32_t event, uint32_t nextState,
49 virtual std::shared_ptr<Builder> MakeTransition(uint32_t state, uint32_t event, uint32_t nextState) = 0;
/base/useriam/user_auth_framework/services/base/inc/
H A Dfinite_state_machine.h46 virtual std::shared_ptr<Builder> MakeTransition(uint32_t state, uint32_t event, uint32_t nextState,
49 virtual std::shared_ptr<Builder> MakeTransition(uint32_t state, uint32_t event, uint32_t nextState) = 0;
/base/telephony/call_manager/services/audio/include/
H A Daudio_control_manager.h76 void CallStateUpdated(sptr<CallBase> &callObjectPtr, TelCallState priorState, TelCallState nextState) override;
93 void HandleNextState(sptr<CallBase> &callObjectPtr, TelCallState nextState);
95 void HandleCallStateUpdatedForVoip(sptr<CallBase> &callObjectPtr, TelCallState priorState, TelCallState nextState);
96 void HandleCallStateUpdated(sptr<CallBase> &callObjectPtr, TelCallState priorState, TelCallState nextState);
/base/telephony/call_manager/services/audio/src/
H A Daudio_control_manager.cpp95 sptr<CallBase> &callObjectPtr, TelCallState priorState, TelCallState nextState) in HandleCallStateUpdatedForVoip()
97 TELEPHONY_LOGI("control audio for voip start, callId:%{public}d, priorState:%{public}d, nextState:%{public}d", in HandleCallStateUpdatedForVoip()
98 callObjectPtr->GetCallID(), priorState, nextState); in HandleCallStateUpdatedForVoip()
99 if (priorState == TelCallState::CALL_STATUS_INCOMING && nextState == TelCallState::CALL_STATUS_INCOMING) { in HandleCallStateUpdatedForVoip()
117 sptr<CallBase> &callObjectPtr, TelCallState priorState, TelCallState nextState) in CallStateUpdated()
124 HandleCallStateUpdatedForVoip(callObjectPtr, priorState, nextState); in CallStateUpdated()
134 HandleCallStateUpdated(callObjectPtr, priorState, nextState); in CallStateUpdated()
135 if (nextState == TelCallState::CALL_STATUS_DISCONNECTED && totalCalls_.count(callObjectPtr) > 0) { in CallStateUpdated()
292 sptr<CallBase> &callObjectPtr, TelCallState priorState, TelCallState nextState) in HandleCallStateUpdated()
298 if (nextState in HandleCallStateUpdated()
94 HandleCallStateUpdatedForVoip( sptr<CallBase> &callObjectPtr, TelCallState priorState, TelCallState nextState) HandleCallStateUpdatedForVoip() argument
116 CallStateUpdated( sptr<CallBase> &callObjectPtr, TelCallState priorState, TelCallState nextState) CallStateUpdated() argument
291 HandleCallStateUpdated( sptr<CallBase> &callObjectPtr, TelCallState priorState, TelCallState nextState) HandleCallStateUpdated() argument
314 HandleNextState(sptr<CallBase> &callObjectPtr, TelCallState nextState) HandleNextState() argument
[all...]
/base/telephony/call_manager/services/call/include/
H A Dcall_state_listener_base.h34 virtual void CallStateUpdated(sptr<CallBase> &callObjectPtr, TelCallState priorState, TelCallState nextState) in CallStateUpdated() argument
H A Dcall_state_listener.h34 void CallStateUpdated(sptr<CallBase> &callObjectPtr, TelCallState priorState, TelCallState nextState);
/base/telephony/call_manager/services/satellite_call/include/
H A Dsatellite_call_control.h36 void HandleSatelliteCallStateUpdate(sptr<CallBase> &call, TelCallState priorState, TelCallState nextState);
/base/telephony/call_manager/services/call/call_state_observer/include/
H A Dproximity_sensor.h32 void CallStateUpdated(sptr<CallBase> &callObjectPtr, TelCallState priorState, TelCallState nextState) override;
H A Dstatus_bar.h31 void CallStateUpdated(sptr<CallBase> &callObjectPtr, TelCallState priorState, TelCallState nextState) override;
H A Dreject_call_sms.h34 void CallStateUpdated(sptr<CallBase> &callObjectPtr, TelCallState priorState, TelCallState nextState) override;
H A Dincoming_call_wake_up.h35 void CallStateUpdated(sptr<CallBase> &callObjectPtr, TelCallState priorState, TelCallState nextState) override;
H A Dincoming_call_notification.h33 void CallStateUpdated(sptr<CallBase> &callObjectPtr, TelCallState priorState, TelCallState nextState) override;
/base/telephony/call_manager/services/call/src/
H A Dcall_state_listener.cpp85 sptr<CallBase> &callObjectPtr, TelCallState priorState, TelCallState nextState) in CallStateUpdated()
93 observer->CallStateUpdated(callObjectPtr, priorState, nextState); in CallStateUpdated()
84 CallStateUpdated( sptr<CallBase> &callObjectPtr, TelCallState priorState, TelCallState nextState) CallStateUpdated() argument
/base/telephony/call_manager/services/call/call_state_observer/src/
H A Dproximity_sensor.cpp53 sptr<CallBase> &callObjectPtr, TelCallState priorState, TelCallState nextState) in CallStateUpdated()
52 CallStateUpdated( sptr<CallBase> &callObjectPtr, TelCallState priorState, TelCallState nextState) CallStateUpdated() argument
H A Dstatus_bar.cpp64 void StatusBar::CallStateUpdated(sptr<CallBase> &callObjectPtr, TelCallState priorState, TelCallState nextState) {} in CallStateUpdated() argument
/base/hiviewdfx/hiview/plugins/unified_collector/
H A Dunified_collector.cpp214 auto nextState = std::make_shared<StartTraceState>(appTraceContext_, appCallerEvent, shared_from_this()); in OnStartAppTrace() local
215 return appTraceContext_->TransferTo(nextState) == 0; in OnStartAppTrace()
220 auto nextState = std::make_shared<DumpTraceState>(appTraceContext_, appCallerEvent, shared_from_this()); in OnDumpAppTrace() local
221 return appTraceContext_->TransferTo(nextState) == 0; in OnDumpAppTrace()
226 auto nextState = std::make_shared<StopTraceState>(appTraceContext_, appCallerEvent); in OnStopAppTrace() local
227 return appTraceContext_->TransferTo(nextState) == 0; in OnStopAppTrace()

Completed in 9 milliseconds

123