Home
last modified time | relevance | path

Searched refs:dest_type (Results 1 – 3 of 3) sorted by relevance

/art/runtime/entrypoints/quick/
Dquick_throw_entrypoints.cc113 extern "C" NO_RETURN void artThrowClassCastException(mirror::Class* dest_type, in artThrowClassCastException() argument
118 if (dest_type == nullptr) { in artThrowClassCastException()
129 dest_type = linker->LookupResolvedType(type_index, visitor.caller).Ptr(); in artThrowClassCastException()
130 CHECK(dest_type != nullptr) << "Target class should have been previously resolved: " in artThrowClassCastException()
132 CHECK(!dest_type->IsAssignableFrom(src_type)) in artThrowClassCastException()
133 << " " << std::hex << dest_type->PrettyDescriptor() << ";" << dest_type->Depth() in artThrowClassCastException()
134 << "/" << dest_type->GetField32(mirror::Class::StatusOffset()) in artThrowClassCastException()
138 DCHECK(!dest_type->IsAssignableFrom(src_type)); in artThrowClassCastException()
139 ThrowClassCastException(dest_type, src_type); in artThrowClassCastException()
144 mirror::Class* dest_type, in artThrowClassCastExceptionForObject() argument
[all …]
/art/runtime/
Dcommon_throws.cc153 void ThrowClassCastException(ObjPtr<mirror::Class> dest_type, ObjPtr<mirror::Class> src_type) { in ThrowClassCastException() argument
154 DumpB77342775DebugData(dest_type, src_type); in ThrowClassCastException()
158 mirror::Class::PrettyDescriptor(dest_type).c_str()).c_str()); in ThrowClassCastException()
Dcommon_throws.h78 void ThrowClassCastException(ObjPtr<mirror::Class> dest_type, ObjPtr<mirror::Class> src_type)