Home
last modified time | relevance | path

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

/frameworks/av/media/libaaudio/src/binding/
DRingBufferParcelable.cpp36 void RingBufferParcelable::setupMemory(int32_t sharedMemoryIndex, in setupMemory() argument
42 mReadCounterParcelable.setup(sharedMemoryIndex, readCounterOffset, counterSizeBytes); in setupMemory()
43 mWriteCounterParcelable.setup(sharedMemoryIndex, writeCounterOffset, counterSizeBytes); in setupMemory()
44 mDataParcelable.setup(sharedMemoryIndex, dataMemoryOffset, dataSizeInBytes); in setupMemory()
47 void RingBufferParcelable::setupMemory(int32_t sharedMemoryIndex, in setupMemory() argument
50 mReadCounterParcelable.setup(sharedMemoryIndex, 0, 0); in setupMemory()
51 mWriteCounterParcelable.setup(sharedMemoryIndex, 0, 0); in setupMemory()
52 mDataParcelable.setup(sharedMemoryIndex, dataMemoryOffset, dataSizeInBytes); in setupMemory()
DRingBufferParcelable.h35 void setupMemory(int32_t sharedMemoryIndex,
42 void setupMemory(int32_t sharedMemoryIndex,
DSharedRegionParcelable.cpp42 void SharedRegionParcelable::setup(int32_t sharedMemoryIndex, in setup() argument
45 mSharedMemoryIndex = sharedMemoryIndex; in setup()
DSharedRegionParcelable.h40 void setup(int32_t sharedMemoryIndex, int32_t offsetInBytes, int32_t sizeInBytes);
/frameworks/av/media/libaaudio/tests/
Dtest_marshalling.cpp128 int32_t sharedMemoryIndex = 0; in TEST() local
133 ringBufferA.setupMemory(sharedMemoryIndex, dataOffset, dataSizeBytes, in TEST()