Home
last modified time | relevance | path

Searched refs:allocSize (Results 1 – 2 of 2) sorted by relevance

/art/runtime/native/
Ddalvik_system_VMDebug.cc276 size_t allocSize = 0; in VMDebug_getHeapSpaceStats() local
293 allocSize += malloc_space->GetFootprint(); in VMDebug_getHeapSpaceStats()
298 allocSize += bump_pointer_space->Size(); in VMDebug_getHeapSpaceStats()
309 size_t allocFree = allocSize - allocUsed; in VMDebug_getHeapSpaceStats()
314 arr[j++] = allocSize; in VMDebug_getHeapSpaceStats()
/art/runtime/jdwp/
Djdwp_event.cc363 int allocSize = offsetof(JdwpEvent, mods) + numMods * sizeof(newEvent->mods[0]); in EventAlloc() local
364 newEvent = reinterpret_cast<JdwpEvent*>(malloc(allocSize)); in EventAlloc()
365 memset(newEvent, 0, allocSize); in EventAlloc()