Home
last modified time | relevance | path

Searched refs:mMemory (Results 1 – 3 of 3) sorted by relevance

/cts/tests/app/src/android/app/cts/
DActivityManagerMemoryInfoTest.java25 protected ActivityManager.MemoryInfo mMemory; field in ActivityManagerMemoryInfoTest
30 mMemory = new ActivityManager.MemoryInfo(); in setUp()
34 assertEquals(0, mMemory.describeContents()); in testDescribeContents()
39 mMemory.availMem = AVAILMEM; in testWriteToParcel()
41 mMemory.threshold = THRESHOLD; in testWriteToParcel()
43 mMemory.lowMemory = LOWMEMORY; in testWriteToParcel()
45 mMemory.writeToParcel(parcel, 0); in testWriteToParcel()
55 mMemory.writeToParcel(null, 0); in testWriteToParcel()
64 mMemory.availMem = AVAILMEM; in testReadFromParcel()
66 mMemory.threshold = THRESHOLD; in testReadFromParcel()
[all …]
/cts/tests/tests/graphics/jni/
DVulkanTestHelpers.h74 VkDeviceMemory mMemory = VK_NULL_HANDLE; variable
DVulkanTestHelpers.cpp285 VK_CALL(vkAllocateMemory(mInit->device(), &allocateInfo, nullptr, &mMemory)); in init()
290 bindImageInfo.memory = mMemory; in init()
431 if (mMemory != VK_NULL_HANDLE) { in ~VkAHardwareBufferImage()
432 vkFreeMemory(mInit->device(), mMemory, nullptr); in ~VkAHardwareBufferImage()
433 mMemory = VK_NULL_HANDLE; in ~VkAHardwareBufferImage()