Home
last modified time | relevance | path

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

/art/dexlayout/
Ddex_verify.cc699 if (orig->GetBoolean() != output->GetBoolean()) { in VerifyEncodedValue()
703 orig->GetBoolean(), in VerifyEncodedValue()
704 output->GetBoolean()); in VerifyEncodedValue()
Ddex_writer.cc177 WriteEncodedValueHeader(stream, type, encoded_value->GetBoolean() ? 1 : 0); in WriteEncodedValue()
Ddex_ir.h789 bool GetBoolean() const { return u_.bool_val_; } in GetBoolean() function
Ddexlayout.cc573 fputs(StrBool(data->GetBoolean()), out_file_); in DumpEncodedValue()
/art/runtime/
Dcommon_dex_operations.h125 result->SetZ(field->GetBoolean(obj)); in DoFieldGetCommon()
Dtransaction_test.cc187 ASSERT_EQ(booleanField->GetBoolean(h_klass.Get()), false); in TEST_F()
252 EXPECT_EQ(booleanField->GetBoolean(h_klass.Get()), false); in TEST_F()
287 ASSERT_EQ(booleanField->GetBoolean(h_instance.Get()), false); in TEST_F()
352 EXPECT_EQ(booleanField->GetBoolean(h_instance.Get()), false); in TEST_F()
Dart_field.h112 uint8_t GetBoolean(ObjPtr<mirror::Object> object) REQUIRES_SHARED(Locks::mutator_lock_);
Dart_field-inl.h151 inline uint8_t ArtField::GetBoolean(ObjPtr<mirror::Object> object) { in GetBoolean() function
Dreflection.cc296 DO_FIRST_ARG("Ljava/lang/Boolean;", GetBoolean, Append) in BuildArgArrayFromObjectArray()
936 boxed_value.SetZ(primitive_field->GetBoolean(o)); in UnboxPrimitive()
Dclass_linker_test.cc1184 EXPECT_EQ(true, s0->GetBoolean(statics.Get())); in TEST_F()
1231 EXPECT_FALSE(s0->GetBoolean(statics.Get())); in TEST_F()
Dthread.cc641 should_unpark = unparkedField->GetBoolean(self->tlsPtr_.opeer) == JNI_TRUE; in CreateCallback()
1832 ->GetBoolean(thread->tlsPtr_.opeer); in DumpState()
4324 WellKnownClasses::java_lang_Thread_systemDaemon)->GetBoolean(GetPeer()); in IsSystemDaemon()
/art/openjdkjvmti/
Dti_threadgroup.cc152 info_ptr->is_daemon = daemon_field->GetBoolean(obj.Get()) == 0 ? JNI_FALSE : JNI_TRUE; in GetThreadGroupInfo()
Dti_thread.cc354 info_ptr->is_daemon = f->GetBoolean(peer) == 0 ? JNI_FALSE : JNI_TRUE; in GetThreadInfo()
622 bool started = started_field->GetBoolean(peer.Get()) != 0; in GetThreadState()
Dti_stack.cc664 bool started = started_field->GetBoolean(peer) != 0; in GetThreadListStackTraces()
Dti_heap.cc580 value.z = field.GetBoolean(src) == 0 ? JNI_FALSE : JNI_TRUE; in ReportPrimitiveFieldCallback()
/art/runtime/hprof/
Dhprof.cc1348 __ AddU1(field.GetBoolean(klass)); in DumpHeapClass()
1498 __ AddU1(f->GetBoolean(obj)); in DumpHeapInstanceObject()
/art/oatdump/
Doatdump.cc2093 os << StringPrintf("%s (0x%x)\n", field->GetBoolean(obj) ? "true" : "false", in PrintField()
2094 field->GetBoolean(obj)); in PrintField()
/art/runtime/arch/
Dstub_test.cc1122 uint8_t res = f->GetBoolean(obj->Get()); in GetSetBooleanInstance()