Home
last modified time | relevance | path

Searched refs:memory (Results 1 – 7 of 7) sorted by relevance

/cts/hostsidetests/securitybulletin/securityPatch/CVE-2016-3746/
Dpoc.cpp43 sp<IMemory> memory; in fuzzIOMXQcomVpx() local
82 memory = dealerIn->allocate(inSize); in fuzzIOMXQcomVpx()
83 if (memory.get() == nullptr || memory->pointer() == nullptr) { in fuzzIOMXQcomVpx()
95 OMXBuffer omxInBuf(memory); in fuzzIOMXQcomVpx()
96 memset(memory->pointer(), 0xCF, inSize); in fuzzIOMXQcomVpx()
102 codecDataIn = new SharedMemoryBuffer(inputFormat, memory); in fuzzIOMXQcomVpx()
108 memory = dealerOut->allocate(outSize); in fuzzIOMXQcomVpx()
109 if (memory.get() == nullptr || memory->pointer() == nullptr) { in fuzzIOMXQcomVpx()
115 OMXBuffer omxOutBuf(memory); in fuzzIOMXQcomVpx()
121 codecDataOut = new SharedMemoryBuffer(outputFormat, memory); in fuzzIOMXQcomVpx()
/cts/tests/tests/os/src/android/os/cts/
DSharedMemoryService.java39 public void setup(SharedMemory memory, int prot) throws RemoteException { in setup() argument
40 mSharedMemory = memory; in setup()
DISharedMemoryService.aidl22 void setup(in SharedMemory memory, int prot); in setup() argument
DSharedMemoryTest.java196 private static native boolean nWriteByte(SharedMemory memory, int index, byte value); in nWriteByte() argument
/cts/tools/cts-device-info/src/com/android/cts/deviceinfo/
DVulkanDeviceInfo.java588 JSONObject memory = device.getJSONObject(KEY_MEMORY); in emitDevices() local
591 emitLong(store, memory, KEY_MEMORY_TYPE_COUNT); in emitDevices()
592 JSONArray memoryTypes = memory.getJSONArray(KEY_MEMORY_TYPES); in emitDevices()
606 emitLong(store, memory, KEY_MEMORY_HEAP_COUNT); in emitDevices()
607 JSONArray memoryHeaps = memory.getJSONArray(KEY_MEMORY_HEAPS); in emitDevices()
/cts/tools/cts-api-coverage/proto/
Dcts_report.proto68 // Information about the device's memory configuration
/cts/tests/tests/graphics/jni/
DVulkanTestHelpers.cpp290 bindImageInfo.memory = mMemory; in init()