/ohos5.0/foundation/communication/bluetooth/interfaces/inner_api/include/ |
H A D | bluetooth_a2dp_snk.h | 105 int GetPlayingState(const BluetoothRemoteDevice &device) const; 116 int GetPlayingState(const BluetoothRemoteDevice &device, int &state) const;
|
H A D | bluetooth_a2dp_src.h | 172 int GetPlayingState(const BluetoothRemoteDevice &device) const; 182 int GetPlayingState(const BluetoothRemoteDevice &device, int &state) const;
|
/ohos5.0/foundation/communication/bluetooth/frameworks/inner/src/ |
H A D | bluetooth_a2dp_snk.cpp | 185 int A2dpSink::GetPlayingState(const BluetoothRemoteDevice &device) const in GetPlayingState() function in OHOS::Bluetooth::A2dpSink 202 proxy->GetPlayingState(RawAddress(device.GetDeviceAddr()), ret); in GetPlayingState() 206 int A2dpSink::GetPlayingState(const BluetoothRemoteDevice &device, int &state) const in GetPlayingState() function in OHOS::Bluetooth::A2dpSink 222 return proxy->GetPlayingState(RawAddress(device.GetDeviceAddr()), state); in GetPlayingState()
|
H A D | bluetooth_a2dp_src.cpp | 218 int32_t A2dpSource::GetPlayingState(const BluetoothRemoteDevice &device) const in GetPlayingState() function in OHOS::Bluetooth::A2dpSource 234 proxy->GetPlayingState(RawAddress(device.GetDeviceAddr()), ret); in GetPlayingState() 239 int32_t A2dpSource::GetPlayingState(const BluetoothRemoteDevice &device, int &state) const in GetPlayingState() function in OHOS::Bluetooth::A2dpSource 254 return proxy->GetPlayingState(RawAddress(device.GetDeviceAddr()), state); in GetPlayingState()
|
/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/server/src/ |
H A D | bluetooth_a2dp_sink_server.cpp | 196 int BluetoothA2dpSinkServer::GetPlayingState(const RawAddress &device, int &state) in GetPlayingState() function in OHOS::Bluetooth::BluetoothA2dpSinkServer 203 return pimpl->a2dpSnkService_->GetPlayingState(device, state); in GetPlayingState()
|
H A D | bluetooth_a2dp_source_server.cpp | 271 int32_t BluetoothA2dpSourceServer::GetPlayingState(const RawAddress &device, int &state) in GetPlayingState() function in OHOS::Bluetooth::BluetoothA2dpSourceServer 278 int ret = pimpl->a2dpSrcService_->GetPlayingState(device, state); in GetPlayingState()
|
/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/service/src/gavdp/ |
H A D | a2dp_service_device.h | 115 bool GetPlayingState() const;
|
H A D | a2dp_service_device.cpp | 76 bool A2dpDeviceInfo::GetPlayingState() const in GetPlayingState() function in OHOS::bluetooth::A2dpDeviceInfo
|
H A D | a2dp_service.cpp | 156 …(static_cast<int>(BTConnectState::DISCONNECTED) == connectState && deviceInfo->GetPlayingState()) { in ProcessConnectStateMessage() 559 int A2dpService::GetPlayingState(const RawAddress &device, int &state) const in GetPlayingState() function in OHOS::bluetooth::A2dpService 570 state = info->GetPlayingState() ? A2DP_IS_PLAYING : A2DP_NOT_PLAYING; in GetPlayingState() 859 if (iter->second->GetPlayingState()) { in StartPlaying() 887 if (!iter->second->GetPlayingState()) { in SuspendPlaying() 916 if (!iter->second->GetPlayingState()) { in StopPlaying()
|
H A D | a2dp_service_state_machine.cpp | 140 if (deviceInfo->GetPlayingState()) { in UpdateDeviceInformation()
|
H A D | a2dp_service.h | 260 int GetPlayingState(const RawAddress &device, int &state) const override;
|
/ohos5.0/foundation/communication/bluetooth/frameworks/inner/ipc/interface/ |
H A D | i_bluetooth_a2dp_sink.h | 41 virtual int GetPlayingState(const RawAddress &device, int &state) = 0;
|
H A D | i_bluetooth_a2dp_src.h | 41 virtual int GetPlayingState(const RawAddress &device, int &state) = 0;
|
/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/server/include/ |
H A D | bluetooth_a2dp_sink_server.h | 41 int GetPlayingState(const RawAddress &device, int &state) override;
|
H A D | bluetooth_a2dp_source_server.h | 41 int GetPlayingState(const RawAddress &device, int &state) override;
|
/ohos5.0/drivers/peripheral/bluetooth/audio/hal/hdi_passthrough/include/ |
H A D | audio_bluetooth_manager.h | 41 int GetPlayingState();
|
/ohos5.0/foundation/communication/bluetooth/frameworks/inner/ipc/include/ |
H A D | bluetooth_a2dp_sink_proxy.h | 39 int GetPlayingState(const RawAddress &device, int &state) override;
|
H A D | bluetooth_a2dp_src_proxy.h | 39 int GetPlayingState(const RawAddress &device, int &state) override;
|
/ohos5.0/foundation/communication/dsoftbus/core/common/dfx/statistics/instant/ |
H A D | bt_statistic.cpp | 111 std::to_string(A2dpSource::GetProfile()->GetPlayingState(devices[i])).c_str()); in AddDevicesToArray() 114 std::to_string(A2dpSink::GetProfile()->GetPlayingState(devices[i])).c_str()); in AddDevicesToArray()
|
/ohos5.0/drivers/peripheral/bluetooth/audio/hal/hdi_passthrough/src/ |
H A D | audio_render.cpp | 56 if (OHOS::Bluetooth::GetPlayingState() == false) { in AudioRenderStart() 86 if (OHOS::Bluetooth::GetPlayingState() == true) { in AudioRenderStop() 114 if (OHOS::Bluetooth::GetPlayingState() == true) { in AudioRenderPause() 139 if (OHOS::Bluetooth::GetPlayingState() == false) { in AudioRenderResume()
|
/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/service/include/ |
H A D | interface_profile_a2dp_src.h | 188 virtual int GetPlayingState(const RawAddress &device, int &state) const = 0;
|
/ohos5.0/foundation/communication/bluetooth/frameworks/js/napi/include/ |
H A D | napi_bluetooth_a2dp_src.h | 74 static napi_value GetPlayingState(napi_env env, napi_callback_info info);
|
/ohos5.0/foundation/communication/bluetooth_service/test/unittest/a2dp/ |
H A D | a2dp_snk_test.cpp | 109 int state = profile_->GetPlayingState(device);
|
/ohos5.0/foundation/communication/bluetooth/frameworks/inner/ipc/src/ |
H A D | bluetooth_a2dp_sink_proxy.cpp | 125 int BluetoothA2dpSinkProxy::GetPlayingState(const RawAddress &device, int &state) in GetPlayingState() function in OHOS::Bluetooth::BluetoothA2dpSinkProxy
|
/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/ipc/src/ |
H A D | bluetooth_a2dp_sink_stub.cpp | 168 int result = GetPlayingState(RawAddress(addr), state); in GetPlayingStateInner()
|