HomeSort by relevance Sort by last modified time
    Searched refs:throw_location (Results 26 - 39 of 39) sorted by null

12

  /art/runtime/
entrypoints_order_test.cc 99 EXPECT_OFFSET_DIFFP(Thread, tlsPtr_, stack_size, throw_location, kPointerSize);
100 EXPECT_OFFSET_DIFFP(Thread, tlsPtr_, throw_location, stack_trace_sample, sizeof(ThrowLocation));
instrumentation.h 93 virtual void ExceptionCaught(Thread* thread, const ThrowLocation& throw_location,
313 void ExceptionCaughtEvent(Thread* thread, const ThrowLocation& throw_location,
quick_exception_handler.cc 116 void QuickExceptionHandler::FindCatch(const ThrowLocation& throw_location,
155 instrumentation->ExceptionCaughtEvent(self_, throw_location, handler_method_, handler_dex_pc_,
jni_internal.cc 109 ThrowLocation throw_location = soa.Self()->GetCurrentLocationForThrow(); local
111 soa.Self()->ThrowNewExceptionF(throw_location, "Ljava/lang/NoSuchMethodError;",
122 ThrowLocation throw_location = soa.Self()->GetCurrentLocationForThrow(); local
123 soa.Self()->ThrowNewExceptionF(throw_location, "Ljava/lang/NoSuchMethodError;",
216 ThrowLocation throw_location; local
218 Handle<mirror::Throwable> cause(hs.NewHandle(soa.Self()->GetException(&throw_location)));
221 soa.Self()->ThrowNewExceptionF(throw_location, "Ljava/lang/NoSuchFieldError;",
236 ThrowLocation throw_location = soa.Self()->GetCurrentLocationForThrow(); local
237 soa.Self()->ThrowNewExceptionF(throw_location, "Ljava/lang/NoSuchFieldError;",
249 ThrowLocation throw_location = soa.Self()->GetCurrentLocationForThrow() local
258 ThrowLocation throw_location = soa.Self()->GetCurrentLocationForThrow(); local
302 ThrowLocation throw_location = soa.Self()->GetCurrentLocationForThrow(); local
696 ThrowLocation throw_location = soa.Self()->GetCurrentLocationForThrow(); local
3394 ThrowLocation throw_location = self->GetCurrentLocationForThrow(); local
    [all...]
instrumentation.cc     [all...]
runtime.cc 248 ThrowLocation throw_location; local
249 mirror::Throwable* exception = self->GetException(&throw_location);
251 << " thrown by '" << throw_location.Dump() << "'\n"
    [all...]
Android.mk 149 throw_location.cc \
check_jni.cc 807 ThrowLocation throw_location; local
808 mirror::Throwable* exception = self->GetException(&throw_location);
811 function_name_, type.c_str(), throw_location.Dump().c_str());
    [all...]
debugger.cc 52 #include "throw_location.h"
283 void ExceptionCaught(Thread* thread, const ThrowLocation& throw_location,
287 Dbg::PostException(throw_location, catch_method, catch_dex_pc, exception_object);
    [all...]
debugger.h 510 static void PostException(const ThrowLocation& throw_location, mirror::ArtMethod* catch_method,
trace.cc 618 void Trace::ExceptionCaught(Thread* thread, const ThrowLocation& throw_location,
class_linker.cc 84 ThrowLocation throw_location = self->GetCurrentLocationForThrow(); local
85 self->ThrowNewExceptionV(throw_location, "Ljava/lang/NoClassDefFoundError;", fmt, args);
101 ThrowLocation throw_location = self->GetCurrentLocationForThrow(); local
105 self->ThrowNewException(throw_location, c->GetVerifyErrorClass()->GetDescriptor(&temp),
108 self->ThrowNewException(throw_location, "Ljava/lang/NoClassDefFoundError;",
126 ThrowLocation throw_location = self->GetCurrentLocationForThrow(); local
127 self->ThrowNewWrappedException(throw_location, "Ljava/lang/ExceptionInInitializerError;",
    [all...]
  /art/runtime/interpreter/
interpreter_common.cc 455 ThrowLocation throw_location; local
457 Handle<mirror::Throwable> exception(hs.NewHandle(self->GetException(&throw_location)));
461 instrumentation->ExceptionCaughtEvent(self, throw_location, clf.GetCatchMethod(),
    [all...]
  /art/compiler/driver/
compiler_driver.cc 1928 ThrowLocation throw_location; local
    [all...]

Completed in 1859 milliseconds

12