Home
last modified time | relevance | path

Searched refs:pack (Results 1 – 8 of 8) sorted by relevance

/art/tools/ahat/src/main/com/android/ahat/heapdump/
DValue.java32 public static Value pack(AhatInstance value) { in pack() method in Value
42 public static Value pack(boolean value) { in pack() method in Value
52 public static Value pack(char value) { in pack() method in Value
62 public static Value pack(float value) { in pack() method in Value
72 public static Value pack(double value) { in pack() method in Value
82 public static Value pack(byte value) { in pack() method in Value
92 public static Value pack(short value) { in pack() method in Value
102 public static Value pack(int value) { in pack() method in Value
112 public static Value pack(long value) { in pack() method in Value
401 return InstanceValue.pack(mInstance.getBaseline()); in getBaseline()
DAhatArrayInstance.java59 return Value.pack(bools[index]); in initialize()
75 return Value.pack(chars[index]); in initialize()
90 return Value.pack(floats[index]); in initialize()
105 return Value.pack(doubles[index]); in initialize()
121 return Value.pack(bytes[index]); in initialize()
136 return Value.pack(shorts[index]); in initialize()
151 return Value.pack(ints[index]); in initialize()
166 return Value.pack(longs[index]); in initialize()
181 return Value.pack(insts[index]); in initialize()
DParser.java651 field.name, field.type, Value.pack(mInstances.get(deferred.getId()))); in parseInternal()
1037 case OBJECT: return Value.pack(instances.get(getId()));
1038 case BOOLEAN: return Value.pack(getBool());
1039 case CHAR: return Value.pack(getChar());
1040 case FLOAT: return Value.pack(getFloat());
1041 case DOUBLE: return Value.pack(getDouble());
1042 case BYTE: return Value.pack(getByte());
1043 case SHORT: return Value.pack(getShort());
1044 case INT: return Value.pack(getInt());
1045 case LONG: return Value.pack(getLong());
[all …]
/art/tools/ahat/src/test/com/android/ahat/
DDiffFieldsTest.java45 FieldValue normal1 = new FieldValue("name", t0, Value.pack(1)); in normalMatchedDiffedFieldValues()
46 FieldValue normal2 = new FieldValue("name", t0, Value.pack(2)); in normalMatchedDiffedFieldValues()
51 assertEquals(Value.pack(1), x.current); in normalMatchedDiffedFieldValues()
52 assertEquals(Value.pack(2), x.baseline); in normalMatchedDiffedFieldValues()
58 FieldValue normal = new FieldValue("name", t0, Value.pack(1)); in nulledMatchedDiffedFieldValues()
64 assertEquals(Value.pack(1), x.current); in nulledMatchedDiffedFieldValues()
72 assertEquals(Value.pack(1), y.baseline); in nulledMatchedDiffedFieldValues()
78 FieldValue normal = new FieldValue("name", t0, Value.pack(1)); in normalAddedDiffedFieldValues()
83 assertEquals(Value.pack(1), x.current); in normalAddedDiffedFieldValues()
100 FieldValue normal = new FieldValue("name", t0, Value.pack(1)); in normalDeletedDiffedFieldValues()
[all …]
DDiffTest.java57 Value va = Value.pack(a); in diffUnchanged()
/art/runtime/jit/
Ddebugger_interface.h52 PackElfFileForJITFunction pack,
Ddebugger_interface.cc288 static void MaybePackJitMiniDebugInfo(PackElfFileForJITFunction pack, in MaybePackJitMiniDebugInfo() argument
330 std::vector<uint8_t> packed = pack(isa, features, added_elf_files, removed_symbols, &symbols); in MaybePackJitMiniDebugInfo()
364 PackElfFileForJITFunction pack, in AddNativeDebugInfoForJit() argument
370 MaybePackJitMiniDebugInfo(pack, isa, features); in AddNativeDebugInfoForJit()
/art/tools/ahat/etc/
Dahat_api.txt306 … method public static com.android.ahat.heapdump.Value pack(com.android.ahat.heapdump.AhatInstance);
307 method public static com.android.ahat.heapdump.Value pack(boolean);
308 method public static com.android.ahat.heapdump.Value pack(char);
309 method public static com.android.ahat.heapdump.Value pack(float);
310 method public static com.android.ahat.heapdump.Value pack(double);
311 method public static com.android.ahat.heapdump.Value pack(byte);
312 method public static com.android.ahat.heapdump.Value pack(short);
313 method public static com.android.ahat.heapdump.Value pack(int);
314 method public static com.android.ahat.heapdump.Value pack(long);