Home
last modified time | relevance | path

Searched refs:sharedMemoryIndex (Results 1 – 6 of 6) sorted by relevance

/frameworks/av/media/libaaudio/src/binding/
DRingBufferParcelable.cpp57 void RingBufferParcelable::setupMemory(int32_t sharedMemoryIndex, in setupMemory() argument
63 mReadCounterParcelable.setup({sharedMemoryIndex, readCounterOffset, counterSizeBytes}); in setupMemory()
64 mWriteCounterParcelable.setup({sharedMemoryIndex, writeCounterOffset, counterSizeBytes}); in setupMemory()
65 mDataParcelable.setup({sharedMemoryIndex, dataMemoryOffset, dataSizeInBytes}); in setupMemory()
68 void RingBufferParcelable::setupMemory(int32_t sharedMemoryIndex, in setupMemory() argument
71 mReadCounterParcelable.setup({sharedMemoryIndex, 0, 0}); in setupMemory()
72 mWriteCounterParcelable.setup({sharedMemoryIndex, 0, 0}); in setupMemory()
73 mDataParcelable.setup({sharedMemoryIndex, dataMemoryOffset, dataSizeInBytes}); in setupMemory()
DRingBufferParcelable.h39 void setupMemory(int32_t sharedMemoryIndex,
46 void setupMemory(int32_t sharedMemoryIndex,
DSharedRegionParcelable.cpp37 : mSharedMemoryIndex(parcelable.sharedMemoryIndex), in SharedRegionParcelable()
43 result.sharedMemoryIndex = mSharedMemoryIndex; in parcelable()
DAudioEndpointParcelable.cpp58 if (sharedRegion->sharedMemoryIndex == oldIndex) { in updateSharedMemoryIndex()
59 sharedRegion->sharedMemoryIndex = newIndex; in updateSharedMemoryIndex()
/frameworks/av/media/libaaudio/src/binding/aidl/aaudio/
DSharedRegion.aidl20 int sharedMemoryIndex;
/frameworks/av/media/libaaudio/tests/
Dtest_marshalling.cpp148 int32_t sharedMemoryIndex = 0; in TEST() local
153 ringBufferA.setupMemory(sharedMemoryIndex, dataOffset, dataSizeBytes, in TEST()