Searched refs:mSharedMemorySizeInBytes (Results 1 - 4 of 4) sorted by path

/frameworks/av/services/oboeservice/
H A DSharedMemoryProxy.cpp30 munmap(mOriginalSharedMemory, mSharedMemorySizeInBytes);
34 munmap(mProxySharedMemory, mSharedMemorySizeInBytes);
42 mSharedMemorySizeInBytes = capacityInBytes;
44 mProxyFileDescriptor = ashmem_create_region("AAudioProxyDataBuffer", mSharedMemorySizeInBytes);
58 mOriginalSharedMemory = (uint8_t *) mmap(0, mSharedMemorySizeInBytes,
69 mProxySharedMemory = (uint8_t *) mmap(mOriginalSharedMemory, mSharedMemorySizeInBytes,
75 munmap(mOriginalSharedMemory, mSharedMemorySizeInBytes);
H A DSharedMemoryProxy.h48 int32_t mSharedMemorySizeInBytes = 0; member in class:aaudio::SharedMemoryProxy
H A DSharedRingBuffer.cpp35 munmap(mSharedMemory, mSharedMemorySizeInBytes);
51 mSharedMemorySizeInBytes = mDataMemorySizeInBytes + (2 * (sizeof(fifo_counter_t)));
52 mFileDescriptor = ashmem_create_region("AAudioSharedRingBuffer", mSharedMemorySizeInBytes);
67 mSharedMemory = (uint8_t *) mmap(0, mSharedMemorySizeInBytes,
91 int fdIndex = endpointParcelable.addFileDescriptor(mFileDescriptor, mSharedMemorySizeInBytes);
H A DSharedRingBuffer.h57 int32_t mSharedMemorySizeInBytes = 0; member in class:aaudio::SharedRingBuffer

Completed in 157 milliseconds