Home
last modified time | relevance | path

Searched refs:delayValue (Results 1 - 25 of 42) sorted by relevance

12

/foundation/multimedia/audio_framework/services/audio_service/client/src/
H A Dpolicy_provider_stub.cpp133 uint32_t delayValue = 0; in HandleOffloadGetRenderPosition() local
136 int32_t ret = OffloadGetRenderPosition(delayValue, sendDataSize, timeStamp); in HandleOffloadGetRenderPosition()
138 reply.WriteUint32(delayValue); in HandleOffloadGetRenderPosition()
207 int32_t PolicyProviderWrapper::OffloadGetRenderPosition(uint32_t &delayValue, uint64_t &sendDataSize, in OffloadGetRenderPosition() argument
211 return policyWorker_->OffloadGetRenderPosition(delayValue, sendDataSize, timeStamp); in OffloadGetRenderPosition()
/foundation/communication/bluetooth_service/services/bluetooth/service/src/gavdp/
H A Da2dp_profile.h233 * @param[in] delayValue The value of delay of sync audio with video
237 static int SendDelay(const uint16_t handle, const uint16_t delayValue);
494 void GetRenderPosition(uint32_t &delayValue, uint64_t &sendDataSize, uint32_t &timeStamp);
532 * @param[in] delayValue: The delay value
534 void DelayReportNotify(const BtAddr &addr, const uint16_t delayValue);
H A Da2dp_service.h307 * @param delayValue The delay value.
311 int SendDelay(const RawAddress &device, uint16_t delayValue) override;
416 int GetRenderPosition(const RawAddress &device, uint32_t &delayValue, uint64_t &sendDataSize,
H A Da2dp_profile.cpp363 void A2dpProfile::GetRenderPosition(uint32_t &delayValue, uint64_t &sendDataSize, uint32_t &timeStamp) in GetRenderPosition() argument
368 delayValue = delayValue_; in GetRenderPosition()
844 int A2dpProfile::SendDelay(const uint16_t handle, const uint16_t delayValue) in SendDelay() argument
850 int ret = avdtp.DelayReq(handle, label, delayValue); in SendDelay()
921 void A2dpProfile::DelayReportNotify(const BtAddr &device, const uint16_t delayValue) in DelayReportNotify() argument
923 LOG_INFO("[A2dpProfile]%{public}s delayValue(%{public}u)\n", __func__, delayValue); in DelayReportNotify()
932 delayValue_ = delayValue; in DelayReportNotify()
H A Da2dp_def.h196 uint16_t delayValue; member
/foundation/communication/bluetooth_service/services/bluetooth/service/include/
H A Dinterface_profile_a2dp_src.h235 * @param delayValue The delay value.
239 virtual int SendDelay(const RawAddress &device, uint16_t delayValue) = 0;
337 * @param[out] delayValue: The delayed time
343 virtual int GetRenderPosition(const RawAddress &device, uint32_t &delayValue, uint64_t &sendDataSize,
/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() argument
224 HILOGI("addr: %{public}s, delayValue: %{public}d", GET_ENCRYPT_ADDR(device), delayValue); in SendDelay()
229 return pimpl->a2dpSnkService_->SendDelay(device, (uint16_t)delayValue); in SendDelay()
H A Dbluetooth_a2dp_source_server.cpp419 int BluetoothA2dpSourceServer::GetRenderPosition(const RawAddress &device, uint32_t &delayValue, uint64_t &sendDataSize, in GetRenderPosition() argument
423 int ret = pimpl->a2dpSrcService_->GetRenderPosition(device, delayValue, sendDataSize, timeStamp); in GetRenderPosition()
424 HILOGI("delayValue = %{public}u, sendDataSize = %{public}" PRIu64 ", timeStamp = %{public}u", delayValue, in GetRenderPosition()
/foundation/communication/bluetooth/frameworks/inner/ipc/interface/
H A Di_bluetooth_a2dp_sink.h44 virtual int SendDelay(const RawAddress &device, int32_t delayValue) = 0;
H A Di_bluetooth_a2dp_src.h55 virtual int GetRenderPosition(const RawAddress &device, uint32_t &delayValue, uint64_t &sendDataSize,
/foundation/communication/bluetooth/interfaces/inner_api/include/
H A Dbluetooth_a2dp_snk.h166 * @param delayValue The delay value.
170 bool SendDelay(const BluetoothRemoteDevice &device, uint16_t delayValue);
H A Dbluetooth_a2dp_src.h374 int GetRenderPosition(const BluetoothRemoteDevice &device, uint32_t &delayValue, uint64_t &sendDataSize,
/foundation/communication/bluetooth_service/services/bluetooth/server/include/
H A Dbluetooth_a2dp_sink_server.h44 int SendDelay(const RawAddress &device, int32_t delayValue) override;
H A Dbluetooth_a2dp_source_server.h55 int GetRenderPosition(const RawAddress &device, uint32_t &delayValue, uint64_t &sendDataSize,
/foundation/multimedia/audio_framework/services/audio_service/server/include/
H A Dpolicy_provider_proxy.h41 int32_t OffloadGetRenderPosition(uint32_t &delayValue, uint64_t &sendDataSize, uint32_t &timeStamp) override;
H A Dpolicy_handler.h60 int32_t OffloadGetRenderPosition(uint32_t &delayValue, uint64_t &sendDataSize, uint32_t &timeStamp);
/foundation/communication/bluetooth/frameworks/inner/ipc/include/
H A Dbluetooth_a2dp_sink_proxy.h42 int SendDelay(const RawAddress &device, int32_t delayValue) override;
/foundation/communication/bluetooth/frameworks/inner/src/
H A Dbluetooth_a2dp_snk.cpp313 bool A2dpSink::SendDelay(const BluetoothRemoteDevice &device, uint16_t delayValue) in SendDelay() argument
315 HILOGI("enter, device: %{public}s, delayValue: %{public}d", GET_ENCRYPT_ADDR(device), delayValue); in SendDelay()
328 int ret = proxy->SendDelay(RawAddress(device.GetDeviceAddr()), (int32_t)delayValue); in SendDelay()
/foundation/communication/bluetooth_service/test/unittest/a2dp/
H A Da2dp_src_test.cpp430 * @tc.desc: Get delayValue, sendDataSize and timeStamp from a2dp
436 uint16_t delayValue = 0; in HWTEST_F() local
440 profile_->GetRenderPosition(delayValue, sendDataSize, timeStamp); in HWTEST_F()
441 GTEST_LOG_(INFO) << "delayValue =" << delayValue << ",sendDataSize =" << sendDataSize << in HWTEST_F()
/foundation/communication/bluetooth/frameworks/inner/ipc/src/
H A Dbluetooth_a2dp_sink_proxy.cpp171 int BluetoothA2dpSinkProxy::SendDelay(const RawAddress &device, int32_t delayValue) in SendDelay() argument
177 CHECK_AND_RETURN_LOG_RET(data.WriteInt32(delayValue), BT_ERR_IPC_TRANS_FAILED, "write delayValue error"); in SendDelay()
/foundation/communication/bluetooth_service/services/bluetooth/ipc/src/
H A Dbluetooth_a2dp_sink_stub.cpp208 int delayValue = data.ReadInt32(); in SendDelayInner() local
210 int result = SendDelay(RawAddress(addr), delayValue); in SendDelayInner()
H A Dbluetooth_a2dp_src_stub.cpp415 uint32_t delayValue; in GetRenderPositionInner() local
418 int result = GetRenderPosition(RawAddress(data.ReadString()), delayValue, sendDataSize, timeStamp); in GetRenderPositionInner()
422 if (!reply.WriteUint32(delayValue)) { in GetRenderPositionInner()
/foundation/multimedia/audio_framework/services/audio_service/server/src/
H A Dpolicy_handler.cpp188 int32_t PolicyHandler::OffloadGetRenderPosition(uint32_t &delayValue, uint64_t &sendDataSize, uint32_t &timeStamp) in OffloadGetRenderPosition() argument
191 return iPolicyProvider_->OffloadGetRenderPosition(delayValue, sendDataSize, timeStamp); in OffloadGetRenderPosition()
H A Dpolicy_provider_proxy.cpp127 int32_t PolicyProviderProxy::OffloadGetRenderPosition(uint32_t &delayValue, uint64_t &sendDataSize, uint32_t &timeStamp) in OffloadGetRenderPosition() argument
138 delayValue = reply.ReadUint32(); in OffloadGetRenderPosition()
/foundation/multimedia/audio_framework/services/audio_service/client/include/
H A Dpolicy_provider_stub.h53 int32_t OffloadGetRenderPosition(uint32_t &delayValue, uint64_t &sendDataSize, uint32_t &timeStamp) override;

Completed in 14 milliseconds

12