Searched refs:GetBoolean (Results 1 – 18 of 18) sorted by relevance
/art/dexlayout/ |
D | dex_verify.cc | 699 if (orig->GetBoolean() != output->GetBoolean()) { in VerifyEncodedValue() 703 orig->GetBoolean(), in VerifyEncodedValue() 704 output->GetBoolean()); in VerifyEncodedValue()
|
D | dex_writer.cc | 177 WriteEncodedValueHeader(stream, type, encoded_value->GetBoolean() ? 1 : 0); in WriteEncodedValue()
|
D | dex_ir.h | 789 bool GetBoolean() const { return u_.bool_val_; } in GetBoolean() function
|
D | dexlayout.cc | 573 fputs(StrBool(data->GetBoolean()), out_file_); in DumpEncodedValue()
|
/art/runtime/ |
D | transaction_test.cc | 187 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()
|
D | common_dex_operations.h | 125 result->SetZ(field->GetBoolean(obj)); in DoFieldGetCommon()
|
D | art_field.h | 112 uint8_t GetBoolean(ObjPtr<mirror::Object> object) REQUIRES_SHARED(Locks::mutator_lock_);
|
D | art_field-inl.h | 151 inline uint8_t ArtField::GetBoolean(ObjPtr<mirror::Object> object) { in GetBoolean() function
|
D | reflection.cc | 296 DO_FIRST_ARG("Ljava/lang/Boolean;", GetBoolean, Append) in BuildArgArrayFromObjectArray() 958 boxed_value.SetZ(primitive_field->GetBoolean(o)); in UnboxPrimitive()
|
D | class_linker_test.cc | 1187 EXPECT_EQ(true, s0->GetBoolean(statics.Get())); in TEST_F() 1234 EXPECT_FALSE(s0->GetBoolean(statics.Get())); in TEST_F()
|
D | thread.cc | 645 should_unpark = unparkedField->GetBoolean(self->tlsPtr_.opeer) == JNI_TRUE; in CreateCallback() 1842 ->GetBoolean(thread->tlsPtr_.opeer); in DumpState() 4468 WellKnownClasses::java_lang_Thread_systemDaemon)->GetBoolean(GetPeer()); in IsSystemDaemon()
|
/art/openjdkjvmti/ |
D | ti_threadgroup.cc | 152 info_ptr->is_daemon = daemon_field->GetBoolean(obj.Get()) == 0 ? JNI_FALSE : JNI_TRUE; in GetThreadGroupInfo()
|
D | ti_thread.cc | 354 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()
|
D | ti_stack.cc | 664 bool started = started_field->GetBoolean(peer) != 0; in GetThreadListStackTraces()
|
D | ti_heap.cc | 580 value.z = field.GetBoolean(src) == 0 ? JNI_FALSE : JNI_TRUE; in ReportPrimitiveFieldCallback()
|
/art/runtime/hprof/ |
D | hprof.cc | 1348 __ AddU1(field.GetBoolean(klass)); in DumpHeapClass() 1498 __ AddU1(f->GetBoolean(obj)); in DumpHeapInstanceObject()
|
/art/oatdump/ |
D | oatdump.cc | 1935 os << StringPrintf("%s (0x%x)\n", field->GetBoolean(obj) ? "true" : "false", in PrintField() 1936 field->GetBoolean(obj)); in PrintField()
|
/art/runtime/arch/ |
D | stub_test.cc | 1122 uint8_t res = f->GetBoolean(obj->Get()); in GetSetBooleanInstance()
|