Home
last modified time | relevance | path

Searched refs:GetBoolean (Results 1 – 20 of 20) sorted by relevance

/art/runtime/
Dtransaction_test.cc180 ASSERT_EQ(booleanField->GetBoolean(h_klass.Get()), false); in TEST_F()
245 EXPECT_EQ(booleanField->GetBoolean(h_klass.Get()), false); in TEST_F()
280 ASSERT_EQ(booleanField->GetBoolean(h_instance.Get()), false); in TEST_F()
345 EXPECT_EQ(booleanField->GetBoolean(h_instance.Get()), false); in TEST_F()
Dcommon_dex_operations.h118 result->SetZ(field->GetBoolean(obj)); in DoFieldGetCommon()
Dart_field.h105 uint8_t GetBoolean(ObjPtr<mirror::Object> object) REQUIRES_SHARED(Locks::mutator_lock_);
Dreflection.cc294 DO_FIRST_ARG("Ljava/lang/Boolean;", GetBoolean, Append) in BuildArgArrayFromObjectArray()
825 boxed_value.SetZ(primitive_field->GetBoolean(o)); in UnboxPrimitive()
Dart_field-inl.h134 inline uint8_t ArtField::GetBoolean(ObjPtr<mirror::Object> object) { in GetBoolean() function
Dclass_linker_test.cc1161 EXPECT_EQ(true, s0->GetBoolean(statics.Get())); in TEST_F()
1208 EXPECT_FALSE(s0->GetBoolean(statics.Get())); in TEST_F()
Dthread.cc1642 ->GetBoolean(thread->tlsPtr_.opeer); in DumpState()
Ddebugger.cc1824 field_value.SetZ(f->GetBoolean(o)); in GetArtFieldValue()
/art/dexlayout/
Ddex_verify.cc686 if (orig->GetBoolean() != output->GetBoolean()) { in VerifyEncodedValue()
690 orig->GetBoolean(), in VerifyEncodedValue()
691 output->GetBoolean()); in VerifyEncodedValue()
Ddex_writer.cc177 WriteEncodedValueHeader(stream, type, encoded_value->GetBoolean() ? 1 : 0); in WriteEncodedValue()
Ddex_ir.h807 bool GetBoolean() const { return u_.bool_val_; } in GetBoolean() function
Ddexlayout.cc586 fputs(StrBool(data->GetBoolean()), out_file_); in DumpEncodedValue()
/art/openjdkjvmti/
Dti_threadgroup.cc149 info_ptr->is_daemon = daemon_field->GetBoolean(obj) == 0 ? JNI_FALSE : JNI_TRUE; in GetThreadGroupInfo()
Dti_thread.cc292 info_ptr->is_daemon = f->GetBoolean(peer) == 0 ? JNI_FALSE : JNI_TRUE; in GetThreadInfo()
568 bool started = started_field->GetBoolean(peer.Get()) != 0; in GetThreadState()
Dti_stack.cc621 bool started = started_field->GetBoolean(peer) != 0; in GetThreadListStackTraces()
Dti_heap.cc550 value.z = field.GetBoolean(src) == 0 ? JNI_FALSE : JNI_TRUE; in ReportPrimitiveFieldCallback()
/art/runtime/hprof/
Dhprof.cc1347 __ AddU1(field.GetBoolean(klass)); in DumpHeapClass()
1498 __ AddU1(f->GetBoolean(obj)); in DumpHeapInstanceObject()
/art/runtime/interpreter/mterp/
Dmterp.cc789 &ArtField::GetBoolean); in MterpGetBooleanStatic()
/art/oatdump/
Doatdump.cc2289 os << StringPrintf("%s (0x%x)\n", field->GetBoolean(obj) ? "true" : "false", in PrintField()
2290 field->GetBoolean(obj)); in PrintField()
/art/runtime/arch/
Dstub_test.cc1252 uint8_t res = f->GetBoolean(obj->Get()); in GetSetBooleanInstance()