Home
last modified time | relevance | path

Searched refs:GetByte (Results 1 – 14 of 14) sorted by relevance

/art/runtime/
Dreflection.cc300 DO_FIRST_ARG("Ljava/lang/Byte;", GetByte, Append) in BuildArgArrayFromObjectArray()
309 DO_ARG("Ljava/lang/Byte;", GetByte, Append) in BuildArgArrayFromObjectArray()
316 DO_ARG("Ljava/lang/Byte;", GetByte, Append) in BuildArgArrayFromObjectArray()
324 DO_ARG("Ljava/lang/Byte;", GetByte, AppendWide) in BuildArgArrayFromObjectArray()
333 DO_ARG("Ljava/lang/Byte;", GetByte, AppendFloat) in BuildArgArrayFromObjectArray()
343 DO_ARG("Ljava/lang/Byte;", GetByte, AppendDouble) in BuildArgArrayFromObjectArray()
939 boxed_value.SetB(primitive_field->GetByte(o)); in UnboxPrimitive()
Dcommon_dex_operations.h128 result->SetB(field->GetByte(obj)); in DoFieldGetCommon()
Dtransaction_test.cc192 ASSERT_EQ(byteField->GetByte(h_klass.Get()), 0); in TEST_F()
253 EXPECT_EQ(byteField->GetByte(h_klass.Get()), 0); in TEST_F()
292 ASSERT_EQ(byteField->GetByte(h_instance.Get()), 0); in TEST_F()
353 EXPECT_EQ(byteField->GetByte(h_instance.Get()), 0); in TEST_F()
Dart_field.h117 int8_t GetByte(ObjPtr<mirror::Object> object) REQUIRES_SHARED(Locks::mutator_lock_);
Dart_field-inl.h166 inline int8_t ArtField::GetByte(ObjPtr<mirror::Object> object) { in GetByte() function
Dclass_linker_test.cc1189 EXPECT_EQ(5, s1->GetByte(statics.Get())); in TEST_F()
1232 EXPECT_EQ(6, s1->GetByte(statics.Get())); in TEST_F()
/art/dexlayout/
Ddex_verify.cc576 if (orig->GetByte() != output->GetByte()) { in VerifyEncodedValue()
579 orig->GetByte(), in VerifyEncodedValue()
580 output->GetByte()); in VerifyEncodedValue()
Ddex_writer.cc124 length = EncodeIntValue(encoded_value->GetByte(), buffer); in WriteEncodedValue()
Ddex_ir.h790 int8_t GetByte() const { return u_.byte_val_; } in GetByte() function
Ddexlayout.cc508 fprintf(out_file_, "%" PRId8, data->GetByte()); in DumpEncodedValue()
/art/runtime/hprof/
Dhprof.cc1345 __ AddU1(field.GetByte(klass)); in DumpHeapClass()
1495 __ AddU1(f->GetByte(obj)); in DumpHeapInstanceObject()
/art/oatdump/
Doatdump.cc2097 os << StringPrintf("%d (0x%x)\n", field->GetByte(obj), field->GetByte(obj)); in PrintField()
/art/runtime/arch/
Dstub_test.cc1157 int8_t res = f->GetByte(obj->Get()); in GetSetByteInstance()
/art/openjdkjvmti/
Dti_heap.cc583 value.b = field.GetByte(src); in ReportPrimitiveFieldCallback()