Searched defs:memory (Results 1 - 5 of 5) sorted by relevance

/frameworks/compile/mclinker/lib/Support/
H A DToolOutputFile.cpp104 /// memory - Return the contained MemoryArea.
105 MemoryArea& ToolOutputFile::memory() function in class:ToolOutputFile
H A DSpace.cpp81 void* memory = NULL; local
111 memory = (void*)malloc(size);
112 if (!pHandler.read(memory, start, size))
139 if (!pHandler.mmap(memory, start, size))
148 result = new Space(type, memory, size);
166 free(pSpace->memory());
169 if (!pHandler.munmap(pSpace->memory(), pSpace->size()))
172 default: // external and unallocated memory buffers
184 if (!pHandler.write(pSpace->memory(),
195 // system will eventually write bakc the memory afte
[all...]
/frameworks/compile/mclinker/include/mcld/Support/
H A DSpace.h23 * \brief Space contains a chunk of memory space that does not overlap with
52 Address memory() function in class:mcld::Space
55 ConstAddress memory() const function in class:mcld::Space
76 /// Create - Create a Space from external memory
/frameworks/compile/mclinker/lib/MC/
H A DInputBuilder.cpp133 MemoryArea *memory = m_pMemFactory->produce(pInput.path(), pMode, pPerm); local
135 if (!memory->handler()->isGood())
138 pInput.setMemArea(memory);
144 MemoryArea *memory = m_pMemFactory->produce(pMemBuffer, pSize); local
145 pInput.setMemArea(memory);
/frameworks/native/libs/binder/
H A DMemoryDealer.cpp220 // might kick out the memory region that's allocated and/or written
241 sp<IMemory> memory; local
244 memory = new Allocation(this, heap(), offset, size);
246 return memory;
269 // align all the memory blocks on a cache-line boundary

Completed in 107 milliseconds