Home
last modified time | relevance | path

Searched refs:GetLong (Results 1 – 19 of 19) sorted by relevance

/art/test/551-implicit-null-checks/
Dexpected.txt1 NPE from GetLong
/art/test/1912-get-set-local-primitive/
Dexpected.txt4 Running public static void art.Test1912.IntMethod(java.lang.Runnable) with "GetLong" on remote thre…
5 "GetLong" on public static void art.Test1912.IntMethod(java.lang.Runnable) failed due to JVMTI_ERRO…
28 Running public static void art.Test1912.LongMethod(java.lang.Runnable) with "GetLong" on remote thr…
29 "GetLong" on public static void art.Test1912.LongMethod(java.lang.Runnable) got value: 9001
52 Running public static void art.Test1912.FloatMethod(java.lang.Runnable) with "GetLong" on remote th…
53 "GetLong" on public static void art.Test1912.FloatMethod(java.lang.Runnable) failed due to JVMTI_ER…
76 Running public static void art.Test1912.DoubleMethod(java.lang.Runnable) with "GetLong" on remote t…
77 "GetLong" on public static void art.Test1912.DoubleMethod(java.lang.Runnable) failed due to JVMTI_E…
/art/runtime/
Dmethod_handles-inl.h49 ALWAYS_INLINE int64_t GetLong() REQUIRES_SHARED(Locks::mutator_lock_) { in GetLong() function
186 setter->SetLong(getter->GetLong()); in PerformConversions()
195 value.SetJ(getter->GetLong()); in PerformConversions()
Dtransaction_test.cc206 ASSERT_EQ(longField->GetLong(h_klass.Get()), static_cast<int64_t>(0)); in TEST_F()
251 EXPECT_EQ(longField->GetLong(h_klass.Get()), static_cast<int64_t>(0)); in TEST_F()
306 ASSERT_EQ(longField->GetLong(h_instance.Get()), static_cast<int64_t>(0)); in TEST_F()
351 EXPECT_EQ(longField->GetLong(h_instance.Get()), static_cast<int64_t>(0)); in TEST_F()
Dreflection.cc320 DO_FIRST_ARG("Ljava/lang/Long;", GetLong, AppendWide) in BuildArgArrayFromObjectArray()
329 DO_ARG("Ljava/lang/Long;", GetLong, AppendFloat) in BuildArgArrayFromObjectArray()
339 DO_ARG("Ljava/lang/Long;", GetLong, AppendDouble) in BuildArgArrayFromObjectArray()
912 boxed_value.SetJ(primitive_field->GetLong(o)); in UnboxPrimitive()
Dcommon_dex_operations.h136 result->SetJ(field->GetLong(obj)); in DoFieldGetCommon()
Dart_field.h130 int64_t GetLong(ObjPtr<mirror::Object> object) REQUIRES_SHARED(Locks::mutator_lock_);
Dart_field-inl.h214 inline int64_t ArtField::GetLong(ObjPtr<mirror::Object> object) { in GetLong() function
Dclass_linker_test.cc1202 EXPECT_EQ(0x1234567890abcdefLL, s5->GetLong(statics.Get())); in TEST_F()
1229 EXPECT_EQ(INT64_C(0x34567890abcdef12), s5->GetLong(statics.Get())); in TEST_F()
Dthread.cc652 Thread* result = reinterpret_cast64<Thread*>(f->GetLong(thread_peer)); in FromManagedThread()
Ddebugger.cc1815 field_value.SetJ(f->GetLong(o)); in GetArtFieldValue()
/art/dexlayout/
Ddex_verify.cc612 if (orig->GetLong() != output->GetLong()) { in VerifyEncodedValue()
616 orig->GetLong(), in VerifyEncodedValue()
617 output->GetLong()); in VerifyEncodedValue()
634 if (orig->GetLong() != output->GetLong()) { in VerifyEncodedValue()
639 orig->GetLong(), in VerifyEncodedValue()
640 output->GetLong()); in VerifyEncodedValue()
Ddex_writer.cc136 length = EncodeLongValue(encoded_value->GetLong(), buffer); in WriteEncodedValue()
Ddex_ir.h794 int64_t GetLong() const { return u_.long_val_; } in GetLong() function
Ddexlayout.cc519 fprintf(out_file_, "%" PRId64, data->GetLong()); in DumpEncodedValue()
/art/runtime/mirror/
Demulated_stack_frame.cc124 ALWAYS_INLINE int64_t GetLong() REQUIRES_SHARED(Locks::mutator_lock_) { in GetLong() function in art::mirror::EmulatedStackFrameAccessor
Dvar_handle.cc842 return getter->GetLong(); in Get()
853 int64_t raw_value = getter->GetLong(); in Get()
/art/openjdkjvmti/
Dti_heap.cc565 value.j = field.GetLong(src); in ReportPrimitiveFieldCallback()
/art/runtime/arch/
Dstub_test.cc1667 int64_t res = f->GetLong(obj->Get()); in GetSet64Instance()