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

  /dalvik/vm/
AllocTracker.cpp 51 #define kMaxAllocRecordStackDepth 16 /* max 255 */
67 } stackElem[kMaxAllocRecordStackDepth];
137 gDvm.allocRecordMax, kMaxAllocRecordStackDepth,
175 while ((fp != NULL) && (stackDepth < kMaxAllocRecordStackDepth)) {
198 while (stackDepth < kMaxAllocRecordStackDepth) {
276 can be (kMaxAllocRecordStackDepth * gDvm.allocRecordMax) unique strings in
359 for (i = 0; i < kMaxAllocRecordStackDepth; i++) {
418 for (depth = 0; depth < kMaxAllocRecordStackDepth; depth++) {
645 for (int i = 0; i < kMaxAllocRecordStackDepth; i++) {
  /art/runtime/
debugger.cc 59 static const size_t kMaxAllocRecordStackDepth = 16; // Max 255.
75 AllocRecordStackTraceElement stack[kMaxAllocRecordStackDepth]; // Unused entries have NULL method.
79 while (depth < kMaxAllocRecordStackDepth && stack[depth].method != NULL) {
    [all...]

Completed in 562 milliseconds