Searched refs:mem (Results 1 - 8 of 8) sorted by relevance

/dalvik/vm/
H A DLinearAlloc.h67 * caller should probably mark the "mem" argument read-only before calling.
69 void* dvmLinearRealloc(Object* classLoader, void* mem, size_t newSize);
72 void dvmLinearSetReadOnly(Object* classLoader, void* mem);
73 void dvmLinearSetReadWrite(Object* classLoader, void* mem);
80 INLINE void dvmLinearReadOnly(Object* classLoader, void* mem) argument
82 if (ENFORCE_READ_ONLY && mem != NULL)
83 dvmLinearSetReadOnly(classLoader, mem);
89 INLINE void dvmLinearReadWrite(Object* classLoader, void* mem) argument
91 if (ENFORCE_READ_ONLY && mem != NULL)
92 dvmLinearSetReadWrite(classLoader, mem);
[all...]
H A DLinearAlloc.cpp100 static inline u4* getBlockHeader(void* mem) argument
102 return ((u4*) mem) -1;
401 void* mem = dvmLinearAlloc(classLoader, len+1); local
402 memcpy(mem, str, len+1);
404 dvmLinearSetReadOnly(classLoader, mem);
405 return (char*) mem;
417 void* dvmLinearRealloc(Object* classLoader, void* mem, size_t newSize) argument
420 return realloc(mem, newSize);
422 /* make sure we have the right region (and mem != NULL) */
423 assert(mem !
452 updatePages(Object* classLoader, void* mem, int direction) argument
536 dvmLinearSetReadOnly(Object* classLoader, void* mem) argument
552 dvmLinearSetReadWrite(Object* classLoader, void* mem) argument
563 dvmLinearFree(Object* classLoader, void* mem) argument
[all...]
/dalvik/vm/compiler/template/armv5te/
H A DTEMPLATE_MEM_OP_DECODE.S14 blx r2 @ decode and handle the mem op
/dalvik/vm/compiler/template/armv5te-vfp/
H A DTEMPLATE_MEM_OP_DECODE.S15 blx r2 @ decode and handle the mem op
/dalvik/vm/compiler/template/out/
H A DCompilerTemplateAsm-armv5te.S833 blx r2 @ decode and handle the mem op
H A DCompilerTemplateAsm-armv5te-vfp.S1101 blx r2 @ decode and handle the mem op
H A DCompilerTemplateAsm-armv7-a-neon.S1101 blx r2 @ decode and handle the mem op
H A DCompilerTemplateAsm-armv7-a.S1101 blx r2 @ decode and handle the mem op

Completed in 105 milliseconds