Home
last modified time | relevance | path

Searched refs:GetPlayingState (Results 1 – 25 of 31) sorted by relevance

12

/ohos5.0/foundation/communication/bluetooth/interfaces/inner_api/include/
H A Dbluetooth_a2dp_snk.h105 int GetPlayingState(const BluetoothRemoteDevice &device) const;
116 int GetPlayingState(const BluetoothRemoteDevice &device, int &state) const;
H A Dbluetooth_a2dp_src.h172 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 Dbluetooth_a2dp_snk.cpp185 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 Dbluetooth_a2dp_src.cpp218 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 Dbluetooth_a2dp_sink_server.cpp196 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 Dbluetooth_a2dp_source_server.cpp271 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 Da2dp_service_device.h115 bool GetPlayingState() const;
H A Da2dp_service_device.cpp76 bool A2dpDeviceInfo::GetPlayingState() const in GetPlayingState() function in OHOS::bluetooth::A2dpDeviceInfo
H A Da2dp_service.cpp156 …(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 Da2dp_service_state_machine.cpp140 if (deviceInfo->GetPlayingState()) { in UpdateDeviceInformation()
H A Da2dp_service.h260 int GetPlayingState(const RawAddress &device, int &state) const override;
/ohos5.0/foundation/communication/bluetooth/frameworks/inner/ipc/interface/
H A Di_bluetooth_a2dp_sink.h41 virtual int GetPlayingState(const RawAddress &device, int &state) = 0;
H A Di_bluetooth_a2dp_src.h41 virtual int GetPlayingState(const RawAddress &device, int &state) = 0;
/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/server/include/
H A Dbluetooth_a2dp_sink_server.h41 int GetPlayingState(const RawAddress &device, int &state) override;
H A Dbluetooth_a2dp_source_server.h41 int GetPlayingState(const RawAddress &device, int &state) override;
/ohos5.0/drivers/peripheral/bluetooth/audio/hal/hdi_passthrough/include/
H A Daudio_bluetooth_manager.h41 int GetPlayingState();
/ohos5.0/foundation/communication/bluetooth/frameworks/inner/ipc/include/
H A Dbluetooth_a2dp_sink_proxy.h39 int GetPlayingState(const RawAddress &device, int &state) override;
H A Dbluetooth_a2dp_src_proxy.h39 int GetPlayingState(const RawAddress &device, int &state) override;
/ohos5.0/foundation/communication/dsoftbus/core/common/dfx/statistics/instant/
H A Dbt_statistic.cpp111 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 Daudio_render.cpp56 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 Dinterface_profile_a2dp_src.h188 virtual int GetPlayingState(const RawAddress &device, int &state) const = 0;
/ohos5.0/foundation/communication/bluetooth/frameworks/js/napi/include/
H A Dnapi_bluetooth_a2dp_src.h74 static napi_value GetPlayingState(napi_env env, napi_callback_info info);
/ohos5.0/foundation/communication/bluetooth_service/test/unittest/a2dp/
H A Da2dp_snk_test.cpp109 int state = profile_->GetPlayingState(device);
/ohos5.0/foundation/communication/bluetooth/frameworks/inner/ipc/src/
H A Dbluetooth_a2dp_sink_proxy.cpp125 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 Dbluetooth_a2dp_sink_stub.cpp168 int result = GetPlayingState(RawAddress(addr), state); in GetPlayingStateInner()

12