Home
last modified time | relevance | path

Searched refs:SendDelay (Results 1 – 13 of 13) sorted by relevance

/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/server/src/
H A Dbluetooth_a2dp_sink_server.cpp222 int BluetoothA2dpSinkServer::SendDelay(const RawAddress &device, int32_t delayValue) in SendDelay() function in OHOS::Bluetooth::BluetoothA2dpSinkServer
229 return pimpl->a2dpSnkService_->SendDelay(device, (uint16_t)delayValue); in SendDelay()
/ohos5.0/foundation/communication/bluetooth/frameworks/inner/ipc/interface/
H A Di_bluetooth_a2dp_sink.h44 virtual int SendDelay(const RawAddress &device, int32_t delayValue) = 0;
/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/server/include/
H A Dbluetooth_a2dp_sink_server.h44 int SendDelay(const RawAddress &device, int32_t delayValue) override;
/ohos5.0/foundation/communication/bluetooth/interfaces/inner_api/include/
H A Dbluetooth_a2dp_snk.h170 bool SendDelay(const BluetoothRemoteDevice &device, uint16_t delayValue);
/ohos5.0/foundation/communication/bluetooth/frameworks/inner/ipc/include/
H A Dbluetooth_a2dp_sink_proxy.h42 int SendDelay(const RawAddress &device, int32_t delayValue) override;
/ohos5.0/foundation/communication/bluetooth/frameworks/inner/src/
H A Dbluetooth_a2dp_snk.cpp317 bool A2dpSink::SendDelay(const BluetoothRemoteDevice &device, uint16_t delayValue) in SendDelay() function in OHOS::Bluetooth::A2dpSink
332 int ret = proxy->SendDelay(RawAddress(device.GetDeviceAddr()), (int32_t)delayValue); in SendDelay()
/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/service/include/
H A Dinterface_profile_a2dp_src.h239 virtual int SendDelay(const RawAddress &device, uint16_t delayValue) = 0;
/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/service/src/gavdp/
H A Da2dp_profile.h237 static int SendDelay(const uint16_t handle, const uint16_t delayValue);
H A Da2dp_service.h311 int SendDelay(const RawAddress &device, uint16_t delayValue) override;
H A Da2dp_service.cpp705 int A2dpService::SendDelay(const RawAddress &device, uint16_t delayValue) in SendDelay() function in OHOS::bluetooth::A2dpService
726 int ret = pflA2dp->SendDelay(handle, delayValue); in SendDelay()
H A Da2dp_profile.cpp842 int A2dpProfile::SendDelay(const uint16_t handle, const uint16_t delayValue) in SendDelay() function in OHOS::bluetooth::A2dpProfile
/ohos5.0/foundation/communication/bluetooth/frameworks/inner/ipc/src/
H A Dbluetooth_a2dp_sink_proxy.cpp178 int BluetoothA2dpSinkProxy::SendDelay(const RawAddress &device, int32_t delayValue) in SendDelay() function in OHOS::Bluetooth::BluetoothA2dpSinkProxy
/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/ipc/src/
H A Dbluetooth_a2dp_sink_stub.cpp210 int result = SendDelay(RawAddress(addr), delayValue); in SendDelayInner()