/foundation/multimedia/media_library/frameworks/innerkitsimpl/test/unittest/medialibrary_tool/src/command/ |
H A D | command.cpp | 29 if (env.optArgs.cmdType == OptCmdType::TYPE_LIST) { in Create() 32 if (env.optArgs.cmdType == OptCmdType::TYPE_RECV) { in Create() 35 if (env.optArgs.cmdType == OptCmdType::TYPE_SEND) { in Create() 38 if (env.optArgs.cmdType == OptCmdType::TYPE_DELETE) { in Create() 41 if (env.optArgs.cmdType == OptCmdType::TYPE_QUERY) { in Create()
|
/foundation/multimedia/media_library/frameworks/innerkitsimpl/test/unittest/medialibrary_tool/src/ |
H A D | exec_env.cpp | 50 if (optArgs.cmdType == OptCmdType::TYPE_LIST) { in ToStr() 54 if (optArgs.cmdType == OptCmdType::TYPE_RECV) { in ToStr() 60 if (optArgs.cmdType == OptCmdType::TYPE_SEND) { in ToStr() 66 if (optArgs.cmdType == OptCmdType::TYPE_DELETE) { in ToStr()
|
H A D | command_line.cpp | 267 if (env.optArgs.cmdType == OptCmdType::TYPE_SEND) { in Check() 270 if (env.optArgs.cmdType == OptCmdType::TYPE_RECV) { in Check() 273 if (env.optArgs.cmdType == OptCmdType::TYPE_LIST) { in Check() 276 if (env.optArgs.cmdType == OptCmdType::TYPE_DELETE) { in Check() 279 if (env.optArgs.cmdType == OptCmdType::TYPE_QUERY) { in Check() 308 env.optArgs.cmdType = OptCmdType::TYPE_SEND; in Parser() 314 env.optArgs.cmdType = OptCmdType::TYPE_RECV; in Parser() 318 env.optArgs.cmdType = OptCmdType::TYPE_LIST; in Parser() 322 env.optArgs.cmdType = OptCmdType::TYPE_DELETE; in Parser() 325 env.optArgs.cmdType in Parser() [all...] |
/foundation/multimedia/audio_framework/interfaces/inner_api/native/audiorenderer/include/ |
H A D | audio_renderer.h | 67 virtual void OnStateChange(const RendererState state, const StateChangeCmdType cmdType = CMD_FROM_CLIENT) = 0; 339 virtual bool Start(StateChangeCmdType cmdType = CMD_FROM_CLIENT) = 0; 441 virtual bool PauseTransitent(StateChangeCmdType cmdType = CMD_FROM_CLIENT) = 0; 449 virtual bool Pause(StateChangeCmdType cmdType = CMD_FROM_CLIENT) = 0; 958 virtual bool Mute(StateChangeCmdType cmdType = CMD_FROM_CLIENT) const {return false;}; in Mute() 966 virtual bool Unmute(StateChangeCmdType cmdType = CMD_FROM_CLIENT) const {return false;}; in Unmute()
|
/foundation/multimedia/audio_framework/frameworks/native/audiorenderer/include/ |
H A D | audio_renderer_private.h | 46 bool Start(StateChangeCmdType cmdType = CMD_FROM_CLIENT) override; 53 bool PauseTransitent(StateChangeCmdType cmdType = CMD_FROM_CLIENT) override; 54 bool Pause(StateChangeCmdType cmdType = CMD_FROM_CLIENT) override; 55 bool Mute(StateChangeCmdType cmdType = CMD_FROM_CLIENT) const override; 56 bool Unmute(StateChangeCmdType cmdType = CMD_FROM_CLIENT) const override; 254 void OnStateChange(const State state, const StateChangeCmdType cmdType = CMD_FROM_CLIENT) override;
|
/foundation/communication/bluetooth_service/services/bluetooth/service/src/hfp_ag/ |
H A D | hfp_ag_command_parser.cpp | 54 int cmdType = HFP_AG_CMD_UNKNOWN; in Parse() local 67 cmdType = Extract(partData, cmd, arg, cmdLen, len - pos); in Parse() 69 HfpAgCommandProcessor::GetInstance().Handle(dataConn, cmd, arg, cmdType); in Parse()
|
/foundation/multimedia/audio_framework/frameworks/native/audiorenderer/test/unittest/renderer_test/include/ |
H A D | capture_renderer_interrupt_unit_test.h | 30 void OnStateChange(const RendererState state, const StateChangeCmdType cmdType) override {}
|
H A D | audio_renderer_unit_test.h | 28 void OnStateChange(const RendererState state, const StateChangeCmdType cmdType) override {}
|
/foundation/multimedia/media_library/frameworks/innerkitsimpl/test/unittest/medialibrary_tool/include/ |
H A D | option_args.h | 35 OptCmdType cmdType {OptCmdType::TYPE_INIT};
|
/foundation/multimedia/audio_framework/frameworks/native/audiorenderer/test/example/ |
H A D | audio_interrupt_test.h | 37 void OnStateChange(const RendererState state, const StateChangeCmdType __attribute__((unused)) cmdType) override;
|
H A D | interrupt_multi_renderer_test.h | 30 void OnStateChange(const RendererState state, const StateChangeCmdType __attribute__((unused)) cmdType) override;
|
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/syncer/src/device/singlever/ |
H A D | single_ver_data_sync_extend.cpp | 49 uint32_t cmdType = packet->GetcontrolCmdType(); in ControlCmdAckRecv() local 52 STR_MASK(GetDeviceId()), cmdType); in ControlCmdAckRecv() 57 if (cmdType == ControlCmdType::SUBSCRIBE_QUERY_CMD) { in ControlCmdAckRecv() 59 } else if (cmdType == ControlCmdType::UNSUBSCRIBE_QUERY_CMD) { in ControlCmdAckRecv() 63 LOGE("[DataSync] ack handle failed,label =%s,dev=%s,type=%u", label_.c_str(), STR_MASK(GetDeviceId()), cmdType); in ControlCmdAckRecv()
|
/foundation/multimedia/audio_framework/services/audio_service/client/src/ |
H A D | capturer_in_client.cpp | 139 bool StartAudioStream(StateChangeCmdType cmdType = CMD_FROM_CLIENT, 141 bool PauseAudioStream(StateChangeCmdType cmdType = CMD_FROM_CLIENT) override; 231 int32_t StateCmdTypeToParams(int64_t ¶ms, State state, StateChangeCmdType cmdType); 232 int32_t ParamsToStateCmdType(int64_t params, State &state, StateChangeCmdType &cmdType); 584 StateChangeCmdType cmdType = CMD_FROM_CLIENT; in HandleStateChangeEvent() local 585 ParamsToStateCmdType(data, state, cmdType); in HandleStateChangeEvent() 590 streamCb->OnStateChange(state, cmdType); in HandleStateChangeEvent() 624 int32_t CapturerInClientInner::ParamsToStateCmdType(int64_t params, State &state, StateChangeCmdType &cmdType) in ParamsToStateCmdType() argument 626 cmdType = CMD_FROM_CLIENT; in ParamsToStateCmdType() 651 cmdType in ParamsToStateCmdType() 664 StateCmdTypeToParams(int64_t ¶ms, State state, StateChangeCmdType cmdType) StateCmdTypeToParams() argument 1307 StartAudioStream(StateChangeCmdType cmdType, AudioStreamDeviceChangeReasonExt reason) StartAudioStream() argument 1358 PauseAudioStream(StateChangeCmdType cmdType) PauseAudioStream() argument [all...] |
H A D | renderer_in_client.cpp | 392 StateChangeCmdType cmdType = CMD_FROM_CLIENT; in HandleStateChangeEvent() local 393 ParamsToStateCmdType(data, state, cmdType); in HandleStateChangeEvent() 398 streamCb->OnStateChange(state, cmdType); in HandleStateChangeEvent() 1236 bool RendererInClientInner::StartAudioStream(StateChangeCmdType cmdType, in StartAudioStream() argument 1290 StateCmdTypeToParams(param, state_, cmdType); in StartAudioStream() 1295 bool RendererInClientInner::PauseAudioStream(StateChangeCmdType cmdType) in PauseAudioStream() argument 1326 StateCmdTypeToParams(param, state_, cmdType); in PauseAudioStream() 1893 int32_t RendererInClientInner::ParamsToStateCmdType(int64_t params, State &state, StateChangeCmdType &cmdType) in ParamsToStateCmdType() argument 1895 cmdType = CMD_FROM_CLIENT; in ParamsToStateCmdType() 1920 cmdType in ParamsToStateCmdType() 1933 StateCmdTypeToParams(int64_t ¶ms, State state, StateChangeCmdType cmdType) StateCmdTypeToParams() argument [all...] |
/foundation/multimedia/audio_framework/frameworks/native/audiostream/include/ |
H A D | i_audio_stream.h | 38 virtual void OnStateChange(const State state, const StateChangeCmdType cmdType = CMD_FROM_CLIENT) = 0; 188 virtual bool StartAudioStream(StateChangeCmdType cmdType = CMD_FROM_CLIENT, 190 virtual bool PauseAudioStream(StateChangeCmdType cmdType = CMD_FROM_CLIENT) = 0;
|
H A D | fast_audio_stream.h | 128 bool StartAudioStream(StateChangeCmdType cmdType = CMD_FROM_CLIENT, 130 bool PauseAudioStream(StateChangeCmdType cmdType = CMD_FROM_CLIENT) override;
|
/foundation/multimedia/audio_framework/services/audio_service/client/include/ |
H A D | renderer_in_client_private.h | 118 bool StartAudioStream(StateChangeCmdType cmdType = CMD_FROM_CLIENT,
120 bool PauseAudioStream(StateChangeCmdType cmdType = CMD_FROM_CLIENT) override;
169 int32_t StateCmdTypeToParams(int64_t ¶ms, State state, StateChangeCmdType cmdType);
170 int32_t ParamsToStateCmdType(int64_t params, State &state, StateChangeCmdType &cmdType);
|
/foundation/distributedhardware/distributed_input/services/sink/transport/src/ |
H A D | distributed_input_sink_transport.cpp | 336 DHLOGI("OnBytesReceived cmdType is TRANS_SOURCE_MSG_PREPARE."); in NotifyPrepareRemoteInput() 342 DHLOGI("OnBytesReceived cmdType is TRANS_SOURCE_MSG_PREPARE deviceId:%{public}s.", in NotifyPrepareRemoteInput() 358 DHLOGI("OnBytesReceived cmdType TRANS_SOURCE_MSG_UNPREPARE deviceId:%{public}s.", in NotifyUnprepareRemoteInput() 376 DHLOGI("OnBytesRecei,ved cmdType is TRANS_SOURCE_MSG_START_TYPE deviceId:%{public}s inputTypes:%{public}d .", in NotifyStartRemoteInput() 394 DHLOGI("OnBytesReceived cmdType is TRANS_SOURCE_MSG_STOP_TYPE deviceId:%{public}s.", in NotifyStopRemoteInput() 426 DHLOGI("OnBytesReceived cmdType is TRANS_SOURCE_MSG_START_DHID deviceId:%{public}s .", in NotifyStartRemoteInputDhid() 444 DHLOGE("OnBytesReceived cmdType is TRANS_SOURCE_MSG_STOP_DHID deviceId:%{public}s.", in NotifyStopRemoteInputDhid() 462 DHLOGI("OnBytesReceived cmdType is TRANS_SOURCE_MSG_PREPARE_FOR_REL deviceId:%{public}s.", in NotifyRelayPrepareRemoteInput() 480 DHLOGI("OnBytesReceived cmdType is TRANS_SOURCE_MSG_UNPREPARE_FOR_REL deviceId:%{public}s.", in NotifyRelayUnprepareRemoteInput() 500 DHLOGI("OnBytesReceived cmdType i in NotifyRelayStartDhidRemoteInput() 582 uint32_t cmdType = recMsg[DINPUT_SOFTBUS_KEY_CMD_TYPE]; HandleEventInner() local 623 uint32_t cmdType = recMsg[DINPUT_SOFTBUS_KEY_CMD_TYPE]; HandleData() local [all...] |
/foundation/multimedia/audio_framework/frameworks/js/napi/audiorenderer/callback/ |
H A D | napi_audio_renderer_callback.h | 42 void OnStateChange(const RendererState state, const StateChangeCmdType __attribute__((unused)) cmdType) override;
|
/foundation/multimedia/audio_framework/frameworks/native/toneplayer/include/ |
H A D | tone_player_impl.h | 37 void OnStateChange(const RendererState state, const StateChangeCmdType __attribute__((unused)) cmdType) override;
|
/foundation/distributedhardware/distributed_input/services/transportbase/src/ |
H A D | distributed_input_transport_base.cpp | 507 uint32_t cmdType = recMsg[DINPUT_SOFTBUS_KEY_CMD_TYPE]; in HandleSession() local 508 if (cmdType < TRANS_MSG_SRC_SINK_SPLIT) { in HandleSession() 516 if (cmdType > TRANS_MSG_SRC_SINK_SPLIT) { in HandleSession()
|
/foundation/communication/wifi/wifi/services/wifi_standard/wifi_framework/wifi_manage/wifi_native/client/hdi_client/hdi_interface/ |
H A D | wifi_hdi_wpa_p2p_impl.h | 119 WifiErrorNo HdiDeliverP2pData(int32_t cmdType, int32_t dataType, const char *carryData);
|
/foundation/distributedhardware/distributed_audio/services/audioclient/spkclient/include/ |
H A D | dspeaker_client.h | 62 const AudioStandard::StateChangeCmdType __attribute__((unused)) cmdType) override;
|
/foundation/communication/wifi/wifi/test/wifi_standard/wifi_framework/wifi_manage/wifi_native/client/hdi_client/hdi_interface/ |
H A D | wifi_hdi_wpa_p2p_impl_test.cpp | 343 int32_t cmdType = 2; in HWTEST_F() local 346 HdiDeliverP2pData(cmdType, dataType, carryData); in HWTEST_F()
|
/foundation/multimedia/audio_framework/frameworks/native/audiorenderer/src/ |
H A D | audio_renderer.cpp | 630 bool AudioRendererPrivate::Start(StateChangeCmdType cmdType) in Start() argument 673 bool result = audioStream_->StartAudioStream(cmdType); in Start() 741 bool AudioRendererPrivate::PauseTransitent(StateChangeCmdType cmdType) in PauseTransitent() argument 763 bool result = audioStream_->PauseAudioStream(cmdType); in PauseTransitent() 771 bool AudioRendererPrivate::Mute(StateChangeCmdType cmdType) const in Mute() 781 bool AudioRendererPrivate::Unmute(StateChangeCmdType cmdType) const in Unmute() 791 bool AudioRendererPrivate::Pause(StateChangeCmdType cmdType) in Pause() argument 813 bool result = audioStream_->PauseAudioStream(cmdType); in Pause() 1135 void AudioStreamCallbackRenderer::OnStateChange(const State state, const StateChangeCmdType cmdType) in OnStateChange() argument 1140 cb->OnStateChange(static_cast<RendererState>(state), cmdType); in OnStateChange() local [all...] |