Searched refs:GetBoolean (Results 1 – 20 of 20) sorted by relevance
/art/runtime/ |
D | transaction_test.cc | 180 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()
|
D | common_dex_operations.h | 118 result->SetZ(field->GetBoolean(obj)); in DoFieldGetCommon()
|
D | art_field.h | 105 uint8_t GetBoolean(ObjPtr<mirror::Object> object) REQUIRES_SHARED(Locks::mutator_lock_);
|
D | reflection.cc | 294 DO_FIRST_ARG("Ljava/lang/Boolean;", GetBoolean, Append) in BuildArgArrayFromObjectArray() 825 boxed_value.SetZ(primitive_field->GetBoolean(o)); in UnboxPrimitive()
|
D | art_field-inl.h | 134 inline uint8_t ArtField::GetBoolean(ObjPtr<mirror::Object> object) { in GetBoolean() function
|
D | class_linker_test.cc | 1161 EXPECT_EQ(true, s0->GetBoolean(statics.Get())); in TEST_F() 1208 EXPECT_FALSE(s0->GetBoolean(statics.Get())); in TEST_F()
|
D | thread.cc | 1642 ->GetBoolean(thread->tlsPtr_.opeer); in DumpState()
|
D | debugger.cc | 1824 field_value.SetZ(f->GetBoolean(o)); in GetArtFieldValue()
|
/art/dexlayout/ |
D | dex_verify.cc | 686 if (orig->GetBoolean() != output->GetBoolean()) { in VerifyEncodedValue() 690 orig->GetBoolean(), in VerifyEncodedValue() 691 output->GetBoolean()); in VerifyEncodedValue()
|
D | dex_writer.cc | 177 WriteEncodedValueHeader(stream, type, encoded_value->GetBoolean() ? 1 : 0); in WriteEncodedValue()
|
D | dex_ir.h | 807 bool GetBoolean() const { return u_.bool_val_; } in GetBoolean() function
|
D | dexlayout.cc | 586 fputs(StrBool(data->GetBoolean()), out_file_); in DumpEncodedValue()
|
/art/openjdkjvmti/ |
D | ti_threadgroup.cc | 149 info_ptr->is_daemon = daemon_field->GetBoolean(obj) == 0 ? JNI_FALSE : JNI_TRUE; in GetThreadGroupInfo()
|
D | ti_thread.cc | 292 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()
|
D | ti_stack.cc | 621 bool started = started_field->GetBoolean(peer) != 0; in GetThreadListStackTraces()
|
D | ti_heap.cc | 550 value.z = field.GetBoolean(src) == 0 ? JNI_FALSE : JNI_TRUE; in ReportPrimitiveFieldCallback()
|
/art/runtime/hprof/ |
D | hprof.cc | 1347 __ AddU1(field.GetBoolean(klass)); in DumpHeapClass() 1498 __ AddU1(f->GetBoolean(obj)); in DumpHeapInstanceObject()
|
/art/runtime/interpreter/mterp/ |
D | mterp.cc | 789 &ArtField::GetBoolean); in MterpGetBooleanStatic()
|
/art/oatdump/ |
D | oatdump.cc | 2289 os << StringPrintf("%s (0x%x)\n", field->GetBoolean(obj) ? "true" : "false", in PrintField() 2290 field->GetBoolean(obj)); in PrintField()
|
/art/runtime/arch/ |
D | stub_test.cc | 1252 uint8_t res = f->GetBoolean(obj->Get()); in GetSetBooleanInstance()
|