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()
DSharedRegionParcelable.cpp40 : mSharedMemoryIndex(parcelable.sharedMemoryIndex), in SharedRegionParcelable()
46 result.sharedMemoryIndex = mSharedMemoryIndex; in parcelable()
52 void SharedRegionParcelable::setup(int32_t sharedMemoryIndex, in setup() argument
55 mSharedMemoryIndex = sharedMemoryIndex; in setup()
DRingBufferParcelable.h38 void setupMemory(int32_t sharedMemoryIndex,
45 void setupMemory(int32_t sharedMemoryIndex,
DSharedRegionParcelable.h40 void setup(int32_t sharedMemoryIndex, int32_t offsetInBytes, int32_t sizeInBytes);
/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()