HomeSort by relevance Sort by last modified time
    Searched refs:mSharedMemorySizeInBytes (Results 1 - 4 of 4) sorted by null

  /frameworks/av/services/oboeservice/
SharedMemoryProxy.cpp 32 munmap(mOriginalSharedMemory, mSharedMemorySizeInBytes);
36 munmap(mProxySharedMemory, mSharedMemorySizeInBytes);
44 mSharedMemorySizeInBytes = capacityInBytes;
46 mProxyFileDescriptor = ashmem_create_region("AAudioProxyDataBuffer", mSharedMemorySizeInBytes);
60 mOriginalSharedMemory = (uint8_t *) mmap(0, mSharedMemorySizeInBytes,
71 mProxySharedMemory = (uint8_t *) mmap(mOriginalSharedMemory, mSharedMemorySizeInBytes,
77 munmap(mOriginalSharedMemory, mSharedMemorySizeInBytes);
SharedRingBuffer.cpp 35 munmap(mSharedMemory, mSharedMemorySizeInBytes);
46 mSharedMemorySizeInBytes = mDataMemorySizeInBytes + (2 * (sizeof(fifo_counter_t)));
47 mFileDescriptor.reset(ashmem_create_region("AAudioSharedRingBuffer", mSharedMemorySizeInBytes));
62 mSharedMemory = (uint8_t *) mmap(0, mSharedMemorySizeInBytes,
86 int fdIndex = endpointParcelable.addFileDescriptor(mFileDescriptor, mSharedMemorySizeInBytes);
SharedMemoryProxy.h 48 int32_t mSharedMemorySizeInBytes = 0;
SharedRingBuffer.h 58 int32_t mSharedMemorySizeInBytes = 0;

Completed in 258 milliseconds