HomeSort by relevance Sort by last modified time
    Searched refs:dvmMalloc (Results 1 - 6 of 6) sorted by null

  /dalvik/vm/alloc/
Alloc.h 24 /* flags for dvmMalloc */
54 void* dvmMalloc(size_t size, int flags);
68 * This is called automatically by dvmMalloc() unless ALLOC_DONT_TRACK
Alloc.cpp 192 newObj = (Object*)dvmMalloc(clazz->objectSize, flags);
225 Object* copy = (Object*)dvmMalloc(size, flags);
255 * usually be NULL since we're being called from dvmMalloc().
Heap.cpp 276 /* If the current (failing) dvmMalloc() happened as part of thread
339 void* dvmMalloc(size_t size, int flags)
  /dalvik/vm/oo/
Array.cpp 58 ArrayObject* newArray = (ArrayObject*)dvmMalloc(totalSize, allocFlags);
365 newClass = (ClassObject*) dvmMalloc(sizeof(*newClass), ALLOC_NON_MOVING);
Class.cpp 341 ClassObject* newClass = (ClassObject*) dvmMalloc(sizeof(*newClass), ALLOC_NON_MOVING);
375 dvmMalloc(classObjectSize(CLASS_SFIELD_SLOTS), ALLOC_NON_MOVING);
    [all...]
  /dalvik/vm/reflect/
Proxy.cpp 108 (ClassObject*) dvmMalloc(newClassSize, ALLOC_NON_MOVING);
    [all...]

Completed in 794 milliseconds