Home | History | Annotate | Download | only in common

Lines Matching defs:memory

31 // TODO: short term, make share memory mapping and updating a utility function.
34 sp<IMemory> memory;
39 memory = mapMemory(hidlMemory);
40 if (memory == nullptr) {
41 LOG(ERROR) << "Can't map shared memory.";
45 memory->update();
46 buffer = reinterpret_cast<uint8_t*>(static_cast<void*>(memory->getPointer()));
48 LOG(ERROR) << "Can't access shared memory.";
72 mMemory = memory;
136 // No-op for other types of memory.