Searched refs:serial (Results 1 – 6 of 6) sorted by relevance
/art/tools/ahat/etc/ |
D | hprofdump.py | 87 def showloaded(serial): argument 88 if serial in loaded: 89 return showstr(loaded[serial]) 90 return "SERIAL[@%x]" % serial 156 serial = readu4(hprof) variable 160 loaded[serial] = classname 162 print "LOAD CLASS #%d %s @%x stack=@%x" % (serial, showstr(classname), classobj, stack) 168 serial = readu4(hprof) variable 170 …%s' '%s' line=%d classserial=%d" % (id, showstr(method), showstr(sig), showstr(file), line, serial) 172 serial = readu4(hprof) variable [all …]
|
/art/runtime/ |
D | indirect_reference_table.h | 358 static constexpr uintptr_t EncodeSerial(uint32_t serial) { in EncodeSerial() argument 359 DCHECK_LE(MinimumBitsToStore(serial), kSerialBits); in EncodeSerial() 360 return serial << kKindBits; in EncodeSerial() 366 constexpr uintptr_t EncodeIndirectRef(uint32_t table_index, uint32_t serial) const { in EncodeIndirectRef() argument 368 return EncodeIndex(table_index) | EncodeSerial(serial) | EncodeIndirectRefKind(kind_); in EncodeIndirectRef() 380 uint32_t serial = table_[table_index].GetSerial(); in ToIndirectRef() local 381 return reinterpret_cast<IndirectRef>(EncodeIndirectRef(table_index, serial)); in ToIndirectRef()
|
/art/tools/bisection_search/ |
D | README.md | 40 [--64] [--device] [--device-serial DEVICE_SERIAL] 63 --device-serial DEVICE_SERIAL device serial number, implies --device
|
/art/tools/jvmti-agents/field-null-percent/ |
D | check-null-fields.py | 70 device = adb.device.get_device(out.serial) 93 new_env["ANDROID_SERIAL"] = device.serial
|
/art/tools/jfuzz/ |
D | README.md | 61 --device : target device serial number (passed to adb -s) 101 --device : target device serial number (passed to adb -s)
|
/art/test/913-heaps/ |
D | heaps.cc | 59 jlong serial; // Computed serial that should be printed instead of the size. member 76 data.serial = kClassDataSerialBase + sClassDataSerial++; in Java_art_Test913_registerClass() 244 adapted_size = class_data.serial; in Java_art_Test913_followReferences()
|