Searched refs:mSharedMemorySizeInBytes (Results 1 – 4 of 4) sorted by relevance
/frameworks/av/services/oboeservice/ |
D | SharedMemoryProxy.cpp | 32 munmap(mOriginalSharedMemory, mSharedMemorySizeInBytes); in ~SharedMemoryProxy() 36 munmap(mProxySharedMemory, mSharedMemorySizeInBytes); in ~SharedMemoryProxy() 44 mSharedMemorySizeInBytes = capacityInBytes; in open() 46 mProxyFileDescriptor = ashmem_create_region("AAudioProxyDataBuffer", mSharedMemorySizeInBytes); in open() 60 mOriginalSharedMemory = (uint8_t *) mmap(0, mSharedMemorySizeInBytes, in open() 71 mProxySharedMemory = (uint8_t *) mmap(mOriginalSharedMemory, mSharedMemorySizeInBytes, in open() 77 munmap(mOriginalSharedMemory, mSharedMemorySizeInBytes); in open()
|
D | SharedRingBuffer.cpp | 35 munmap(mSharedMemory, mSharedMemorySizeInBytes); in ~SharedRingBuffer() 46 mSharedMemorySizeInBytes = mDataMemorySizeInBytes + (2 * (sizeof(fifo_counter_t))); in allocate() 47 mFileDescriptor.reset(ashmem_create_region("AAudioSharedRingBuffer", mSharedMemorySizeInBytes)); in allocate() 62 mSharedMemory = (uint8_t *) mmap(0, mSharedMemorySizeInBytes, in allocate() 86 int fdIndex = endpointParcelable.addFileDescriptor(mFileDescriptor, mSharedMemorySizeInBytes); in fillParcelable()
|
D | SharedMemoryProxy.h | 48 int32_t mSharedMemorySizeInBytes = 0; variable
|
D | SharedRingBuffer.h | 58 int32_t mSharedMemorySizeInBytes = 0; variable
|