Home
last modified time | relevance | path

Searched refs:PrettyTypeOf (Results 1 – 25 of 29) sorted by relevance

12

/art/runtime/interpreter/
Dlock_count_data.cc66 const_cast<mirror::Object*>(obj)->PrettyTypeOf().c_str()); in RemoveMonitorOrThrow()
100 mirror::Object::PrettyTypeOf(first).c_str()); in CheckAllMonitorsReleasedOrThrow()
Dunstarted_runtime.cc167 std::string type(mirror::Object::PrettyTypeOf(self->GetException())); in CheckExceptionGenerateClassNotFound()
231 mirror::Object::PrettyTypeOf(class_loader).c_str()); in UnstartedClassForNameCommon()
329 mirror::Object::PrettyTypeOf(self->GetException()).c_str()); in UnstartedClassNewInstance()
763 std::string type(mirror::Object::PrettyTypeOf(self->GetException())); in UnstartedVmClassLoaderFindLoadedClass()
Dinterpreter_common.h602 oss << "/" << ref_value->PrettyTypeOf(); in TraceExecution()
Dinterpreter_common.cc113 + obj->PrettyTypeOf() + " since it does not belong to clinit's class."); in DoFieldGet()
326 self, "Can't set fields of " + obj->PrettyTypeOf()); in DoFieldPut()
/art/runtime/jni/
Djni_env_ext-inl.h43 << mirror::Object::PrettyTypeOf(obj) << ")\n"); in AddLocalReference()
Djni_env_ext.cc203 o->PrettyTypeOf().c_str()); in ComputeMonitorDescription()
207 const std::string pretty_type(o->PrettyTypeOf()); in ComputeMonitorDescription()
Djni_internal.cc545 std::string type(array->PrettyTypeOf()); in ThrowAIOOBE()
792 << mirror::Object::PrettyTypeOf(old_exception.Get()); in ExceptionDescribe()
796 LOG(WARNING) << "JNI WARNING: " << mirror::Object::PrettyTypeOf(soa.Self()->GetException()) in ExceptionDescribe()
2155 soa.Vm()->JniAbortF("GetArrayLength", "not an array: %s", obj->PrettyTypeOf().c_str()); in GetArrayLength()
/art/runtime/native/
Djava_lang_System.cc44 std::string actualType(mirror::Object::PrettyTypeOf(array)); in ThrowArrayStoreException_NotAnArray()
138 LOG(FATAL) << "Unknown array type: " << srcArray->PrettyTypeOf(); in System_arraycopy()
145 std::string srcType(srcArray->PrettyTypeOf()); in System_arraycopy()
146 std::string dstType(dstArray->PrettyTypeOf()); in System_arraycopy()
/art/runtime/mirror/
Dobject.cc283 std::string Object::PrettyTypeOf(ObjPtr<mirror::Object> obj) { in PrettyTypeOf() function in art::mirror::Object
284 return (obj == nullptr) ? "null" : obj->PrettyTypeOf(); in PrettyTypeOf()
287 std::string Object::PrettyTypeOf() { in PrettyTypeOf() function in art::mirror::Object
Dobject_array-inl.h304 std::string actualSrcType(mirror::Object::PrettyTypeOf(o)); in AssignableCheckingMemcpy()
305 std::string dstType(PrettyTypeOf()); in AssignableCheckingMemcpy()
Dthrowable.cc96 std::string result(PrettyTypeOf()); in Dump()
Dobject_test.cc810 TEST_F(ObjectTest, PrettyTypeOf) { in TEST_F() argument
812 EXPECT_EQ("null", mirror::Object::PrettyTypeOf(nullptr)); in TEST_F()
816 EXPECT_EQ("java.lang.String", mirror::Object::PrettyTypeOf(s.Get())); in TEST_F()
819 EXPECT_EQ("short[]", mirror::Object::PrettyTypeOf(a.Get())); in TEST_F()
824 EXPECT_EQ("java.lang.String[]", mirror::Object::PrettyTypeOf(o)); in TEST_F()
825 EXPECT_EQ("java.lang.Class<java.lang.String[]>", mirror::Object::PrettyTypeOf(o->GetClass())); in TEST_F()
Dobject.h658 static std::string PrettyTypeOf(ObjPtr<mirror::Object> obj)
660 std::string PrettyTypeOf()
Dclass-inl.h50 DCHECK((!IsVariableSize<kVerifyFlags>())) << "class=" << PrettyTypeOf(); in GetObjectSize()
57 DCHECK((!IsVariableSize<kVerifyFlags>())) << "class=" << PrettyTypeOf(); in GetObjectSizeAllocFastPath()
/art/runtime/
Daot_class_linker.cc52 + klass->PrettyTypeOf() + " because it's superclass is not initialized."); in InitializeClass()
Dreference_table.cc98 std::string className(obj->PrettyTypeOf()); in DumpSummaryLine()
188 std::string className(ref->PrettyTypeOf()); in Dump()
207 extras = StringPrintf(" (referent is a %s)", referent->PrettyTypeOf().c_str()); in Dump()
Dreflection.cc257 mirror::Object::PrettyTypeOf(arg.Get()).c_str()).c_str()); in BuildArgArrayFromObjectArray()
286 mirror::Object::PrettyTypeOf(arg.Get()).c_str()).c_str()); \ in BuildArgArrayFromObjectArray()
401 << argument->PrettyTypeOf() << " as argument " << (i + 1) in CheckMethodArguments()
857 o->PrettyTypeOf().c_str()).c_str()); in UnboxPrimitive()
861 o->PrettyTypeOf().c_str(), in UnboxPrimitive()
993 std::string actual_class_name(mirror::Object::PrettyTypeOf(o)); in InvalidReceiverError()
Dmonitor.cc663 mirror::Object::PrettyTypeOf(o).c_str(), in FailedUnlock()
670 mirror::Object::PrettyTypeOf(o).c_str(), in FailedUnlock()
679 mirror::Object::PrettyTypeOf(o).c_str(), in FailedUnlock()
688 mirror::Object::PrettyTypeOf(o).c_str(), in FailedUnlock()
694 mirror::Object::PrettyTypeOf(o).c_str(), in FailedUnlock()
Dquick_exception_handler.cc207 self_->DumpStack(LOG_STREAM(INFO) << "Delivering exception: " << exception_ref->PrettyTypeOf() in FindCatch()
/art/runtime/gc/
Dverification.cc206 oss << info.ToString() << " = " << obj << "(" << obj->PrettyTypeOf() << ")"; in VisitRoot()
235 oss << pair.second << " -> " << obj << "(" << obj->PrettyTypeOf() << ")." << pair2.second; in FirstPathFromRootSet()
Dheap.cc2984 LOG(ERROR) << "Root " << root << " is dead with type " << mirror::Object::PrettyTypeOf(root) in VisitRoot()
3013 LOG(ERROR) << "Obj type " << obj->PrettyTypeOf(); in VerifyReference()
3033 LOG(ERROR) << "Ref type " << ref->PrettyTypeOf(); in VerifyReference()
3238 LOG(ERROR) << "Object " << obj << " " << mirror::Object::PrettyTypeOf(obj) in operator ()()
3239 << " references " << ref << " " << mirror::Object::PrettyTypeOf(ref) in operator ()()
/art/runtime/gc/accounting/
Dmod_union_table.cc282 LOG(INFO) << "Object " << reinterpret_cast<const void*>(obj) << "(" << obj->PrettyTypeOf() in operator ()()
284 << reinterpret_cast<const void*>(ref) << "(" << mirror::Object::PrettyTypeOf(ref) in operator ()()
/art/runtime/entrypoints/
Dentrypoint_utils.cc54 o->PrettyTypeOf().c_str(), in CheckReferenceResult()
/art/runtime/arch/
Dstub_test.cc1060 EXPECT_FALSE(self->IsExceptionPending()) << mirror::Object::PrettyTypeOf(self->GetException()); in TEST_F()
1940 ASSERT_FALSE(self->IsExceptionPending()) << mirror::Object::PrettyTypeOf(self->GetException()); in TEST_F()
/art/runtime/hprof/
Dhprof.cc1078 << "Already visited " << obj << "(" << obj->PrettyTypeOf() << ")"; in DumpHeapObject()

12