/foundation/multimedia/media_lite/services/player_lite/impl/player_control/player/fsm/include/ |
H A D | hi_fsm.h | 32 typedef int32_t (*HI_FSM_StateEnter)(const void *priv, const char *stateName); 34 typedef int32_t (*HI_FSM_StateExit)(const void *priv, const char *stateName); 39 char stateName[MAX_STATE_NAME_LEN]; member 69 int32_t HI_FSM_GetCurrentState(void *stateMachine, char stateName[MAX_STATE_NAME_LEN]);
|
/foundation/multimedia/media_lite/services/player_lite/impl/player_control/player/fsm/src/ |
H A D | hi_fsm.cpp | 96 std::string stateName(state.stateName); in FsmFindState() 97 if (stateName == fsmState->Name()) { in FsmFindState() 193 std::string stateName(state->stateName); in HI_FSM_AddState() 198 MEDIA_ERR_LOG("state: %s already exist", state->stateName); in HI_FSM_AddState() 204 state->priv, stateName); in HI_FSM_AddState() 265 stateTrans->srcState->stateName); in HI_FSM_AddTransition() 273 stateTrans->destState->stateName); in HI_FSM_AddTransition() 295 MEDIA_ERR_LOG("could not find state: %s ", state->stateName); in HI_FSM_SetInitState() 332 HI_FSM_GetCurrentState(void *stateMachine, char stateName[MAX_STATE_NAME_LEN]) HI_FSM_GetCurrentState() argument [all...] |
/foundation/multimedia/av_codec/services/engine/codec/video/hcodec/ |
H A D | state_machine.h | 27 explicit State(std::string stateName) : stateName_(std::move(stateName)) {} in State() argument
|
H A D | hcodec.h | 392 BaseState(HCodec *codec, const std::string &stateName, in BaseState() 394 : State(stateName), codec_(codec), inputMode_(inputMode), outputMode_(outputMode) {} in BaseState()
|
/foundation/multimedia/image_framework/plugins/common/libs/image/libextplugin/include/hardware/imagecodec/ |
H A D | state_machine.h | 27 explicit State(std::string stateName) : stateName_(std::move(stateName)) {} in State() argument
|
H A D | image_codec.h | 291 BaseState(ImageCodec *codec, const std::string &stateName, in BaseState() 293 : State(stateName), codec_(codec), inputMode_(inputMode), outputMode_(outputMode) {} in BaseState()
|
/foundation/multimedia/media_lite/services/player_lite/impl/player_control/player/ |
H A D | liteplayer_state_machine.cpp | 51 const std::string stateName; member 73 PlayerStatus StateConvert2Enum(const std::string stateName) in StateConvert2Enum() argument 79 if (stateName == LITEPLAY_STATEMAP[i].stateName) { in StateConvert2Enum() 85 MEDIA_ERR_LOG("could not find respond state :%s", stateName.c_str()); in StateConvert2Enum() 93 return LITEPLAY_STATEMAP[state].stateName; in StateEnum2Name()
|
/foundation/communication/bluetooth_service/services/bluetooth/service/src/avrcp_ct/ |
H A D | avrcp_ct_state_machine.cpp | 266 bool AvrcCtStateMachineManager::IsControlSpecifiedState(const std::string &addr, std::string stateName) in IsControlSpecifiedState() argument 268 HILOGI("addr: %{public}s, stateName: %{public}s", GetEncryptAddr(addr).c_str(), stateName.c_str()); in IsControlSpecifiedState() 276 if (pair->first->GetState()->Name().compare(stateName) == 0) { in IsControlSpecifiedState() 286 bool AvrcCtStateMachineManager::IsBrowseSpecifiedState(const std::string &addr, std::string stateName) in IsBrowseSpecifiedState() argument 288 HILOGI("addr: %{public}s, stateName: %{public}s", GetEncryptAddr(addr).c_str(), stateName.c_str()); in IsBrowseSpecifiedState() 296 if (pair->second->GetState()->Name().compare(stateName) == 0) { in IsBrowseSpecifiedState()
|
H A D | avrcp_ct_state_machine.h | 813 bool IsControlSpecifiedState(const std::string &addr, std::string stateName); 819 * @param[in] stateName The name of the specified state. 824 bool IsBrowseSpecifiedState(const std::string &addr, std::string stateName);
|
/foundation/communication/bluetooth_service/services/bluetooth/service/src/avrcp_tg/ |
H A D | avrcp_tg_state_machine.cpp | 256 bool AvrcTgStateMachineManager::IsControlSpecifiedState(const std::string &addr, std::string stateName) in IsControlSpecifiedState() argument 258 HILOGI("addr:%{public}s, stateName:%{public}s", GetEncryptAddr(addr).c_str(), stateName.c_str()); in IsControlSpecifiedState() 266 if (pair->first->GetState()->Name().compare(stateName) == 0) { in IsControlSpecifiedState()
|
H A D | avrcp_tg_state_machine.h | 714 bool IsControlSpecifiedState(const std::string &addr, std::string stateName);
|