Home
last modified time | relevance | path

Searched refs:totalSizeInByte_ (Results 1 – 2 of 2) sorted by relevance

/ohos5.0/foundation/multimedia/audio_framework/services/audio_service/common/src/
H A Doh_audio_buffer.cpp233 totalSizeInByte_ = totalSizeInFrame_ * byteSizePerFrame_; in SizeCheck()
235 …CHECK_AND_RETURN_RET_LOG((totalSizeInByte_ < MAX_MMAP_BUFFER_SIZE), ERR_INVALID_PARAM, "too large … in SizeCheck()
236 "%{public}zu", totalSizeInByte_); in SizeCheck()
263 dataMem_ = AudioSharedMemory::CreateFormLocal(totalSizeInByte_, "server_client_buffer"); in Init()
266 dataMem_ = AudioSharedMemory::CreateFromRemote(dataFd, totalSizeInByte_, memoryDesc); in Init()
619 …CHECK_AND_RETURN_RET_LOG(offset < totalSizeInByte_, ERR_INVALID_PARAM, "invalid deltaToBase:%{publ… in GetBufferByFrame()
712 return totalSizeInByte_; in GetDataSize()
/ohos5.0/foundation/multimedia/audio_framework/services/audio_service/common/include/
H A Doh_audio_buffer.h192 size_t totalSizeInByte_ = 0; variable