Home
last modified time | relevance | path

Searched refs:cacheTimeDsp (Results 1 – 14 of 14) sorted by relevance

/ohos5.0/foundation/multimedia/audio_framework/services/audio_service/server/src/
H A Dipc_stream_stub.cpp352 uint64_t cacheTimeDsp = data.ReadUint64(); in HandleGetOffloadApproximatelyCacheTime() local
354 …reply.WriteInt32(GetOffloadApproximatelyCacheTime(timestamp, paWriteIndex, cacheTimeDsp, cacheTime… in HandleGetOffloadApproximatelyCacheTime()
357 reply.WriteUint64(cacheTimeDsp); in HandleGetOffloadApproximatelyCacheTime()
H A Dipc_stream_in_server.cpp392 uint64_t &cacheTimeDsp, uint64_t &cacheTimePa) in GetOffloadApproximatelyCacheTime() argument
399 …rerInServer_->GetOffloadApproximatelyCacheTime(timestamp, paWriteIndex, cacheTimeDsp, cacheTimePa); in GetOffloadApproximatelyCacheTime()
H A Dpa_renderer_stream_impl.cpp1010 uint64_t &cacheTimeDsp, uint64_t &cacheTimePa) in GetOffloadApproximatelyCacheTime() argument
1060 cacheTimeDsp = static_cast<uint64_t>(readIndexInt - (framesInt + offloadTsOffset_)); in GetOffloadApproximatelyCacheTime()
H A Drenderer_in_server.cpp1190 uint64_t &cacheTimeDsp, uint64_t &cacheTimePa) in GetOffloadApproximatelyCacheTime() argument
1192 …return stream_->GetOffloadApproximatelyCacheTime(timestamp, paWriteIndex, cacheTimeDsp, cacheTimeP… in GetOffloadApproximatelyCacheTime()
H A Dpro_renderer_stream_impl.cpp471 uint64_t &cacheTimeDsp, uint64_t &cacheTimePa) in GetOffloadApproximatelyCacheTime() argument
/ohos5.0/foundation/multimedia/audio_framework/services/audio_service/server/include/
H A Di_renderer_stream.h52 uint64_t &cacheTimeDsp, uint64_t &cacheTimePa) = 0;
H A Dipc_stream_in_server.h101 uint64_t &cacheTimeDsp, uint64_t &cacheTimePa) override; // renderer only
H A Dpro_renderer_stream_impl.h63 …tOffloadApproximatelyCacheTime(uint64_t &timestamp, uint64_t &paWriteIndex, uint64_t &cacheTimeDsp,
H A Dpa_renderer_stream_impl.h60 uint64_t &cacheTimeDsp, uint64_t &cacheTimePa) override;
H A Drenderer_in_server.h71 uint64_t &cacheTimeDsp, uint64_t &cacheTimePa);
/ohos5.0/foundation/multimedia/audio_framework/services/audio_service/client/include/
H A Dipc_stream_proxy.h79 uint64_t &cacheTimeDsp, uint64_t &cacheTimePa) override; // renderer only
/ohos5.0/foundation/multimedia/audio_framework/services/audio_service/common/include/
H A Dipc_stream.h86 uint64_t &cacheTimeDsp, uint64_t &cacheTimePa) = 0; // renderer only
/ohos5.0/foundation/multimedia/audio_framework/services/audio_service/client/src/
H A Dipc_stream_proxy.cpp416 uint64_t &cacheTimeDsp, uint64_t &cacheTimePa) in GetOffloadApproximatelyCacheTime() argument
426 data.WriteUint64(cacheTimeDsp); in GetOffloadApproximatelyCacheTime()
435 cacheTimeDsp = reply.ReadUint64(); in GetOffloadApproximatelyCacheTime()
H A Drenderer_in_client.cpp598 uint64_t cacheTimeDsp = 0; in GetAudioTime() local
600 …ipcStream_->GetOffloadApproximatelyCacheTime(timestampHdi, paWriteIndex, cacheTimeDsp, cacheTimePa… in GetAudioTime()
601 int64_t cacheTime = static_cast<int64_t>(cacheTimeDsp + cacheTimePa) * AUDIO_NS_PER_US; in GetAudioTime()