HomeSort by relevance Sort by last modified time
    Searched defs:throw_location (Results 1 - 24 of 24) sorted by null

  /art/runtime/entrypoints/quick/
quick_fillarray_entrypoints.cc 52 ThrowLocation throw_location = self->GetCurrentLocationForThrow(); local
53 self->ThrowNewExceptionF(throw_location, "Ljava/lang/ArrayIndexOutOfBoundsException;",
quick_throw_entrypoints.cc 46 ThrowLocation throw_location = self->GetCurrentLocationForThrow(); local
48 self->ThrowNewException(throw_location, "Ljava/lang/NullPointerException;",
51 self->SetException(throw_location, exception);
62 ThrowLocation throw_location = self->GetCurrentLocationForThrow(); local
63 ThrowNullPointerExceptionFromDexPC(throw_location);
quick_field_entrypoints.cc 95 ThrowLocation throw_location = self->GetCurrentLocationForThrow(); local
96 ThrowNullPointerExceptionForFieldAccess(throw_location, field, true);
118 ThrowLocation throw_location = self->GetCurrentLocationForThrow(); local
119 ThrowNullPointerExceptionForFieldAccess(throw_location, field, true);
142 ThrowLocation throw_location = self->GetCurrentLocationForThrow(); local
143 ThrowNullPointerExceptionForFieldAccess(throw_location, field, true);
237 ThrowLocation throw_location = self->GetCurrentLocationForThrow(); local
238 ThrowNullPointerExceptionForFieldAccess(throw_location, field, false);
268 ThrowLocation throw_location = self->GetCurrentLocationForThrow(); local
269 ThrowNullPointerExceptionForFieldAccess(throw_location, field, false)
296 ThrowLocation throw_location = self->GetCurrentLocationForThrow(); local
    [all...]
  /art/runtime/entrypoints/portable/
portable_fillarray_entrypoints.cc 40 ThrowLocation throw_location = self->GetCurrentLocationForThrow(); local
41 self->ThrowNewExceptionF(throw_location, "Ljava/lang/ArrayIndexOutOfBoundsException;",
portable_throw_entrypoints.cc 43 ThrowLocation throw_location = self->GetCurrentLocationForThrow(); local
44 ThrowNullPointerExceptionFromDexPC(throw_location);
54 ThrowLocation throw_location = self->GetCurrentLocationForThrow(); local
58 self->SetException(throw_location, exception);
75 ThrowLocation throw_location; local
76 mirror::Throwable* exception = self->GetException(&throw_location);
117 self, throw_location, current_method, catch_dex_pc, exception);
  /art/runtime/native/
java_lang_reflect_Constructor.cc 43 ThrowLocation throw_location = soa.Self()->GetCurrentLocationForThrow(); local
44 soa.Self()->ThrowNewExceptionF(throw_location, "Ljava/lang/InstantiationException;",
java_lang_Class.cc 56 ThrowLocation throw_location = soa.Self()->GetCurrentLocationForThrow(); local
57 soa.Self()->ThrowNewExceptionF(throw_location, "Ljava/lang/ClassNotFoundException;",
java_lang_System.cc 40 ThrowLocation throw_location = self->GetCurrentLocationForThrow(); local
41 self->ThrowNewExceptionF(throw_location, "Ljava/lang/ArrayStoreException;",
79 ThrowLocation throw_location = soa.Self()->GetCurrentLocationForThrow(); local
80 soa.Self()->ThrowNewExceptionF(throw_location, "Ljava/lang/ArrayIndexOutOfBoundsException;",
133 ThrowLocation throw_location = soa.Self()->GetCurrentLocationForThrow(); local
134 soa.Self()->ThrowNewExceptionF(throw_location, "Ljava/lang/ArrayStoreException;",
dalvik_system_VMDebug.cc 94 ThrowLocation throw_location = soa.Self()->GetCurrentLocationForThrow(); local
95 soa.Self()->ThrowNewExceptionF(throw_location, "Ljava/lang/RuntimeException;",
149 ThrowLocation throw_location = soa.Self()->GetCurrentLocationForThrow(); local
150 soa.Self()->ThrowNewException(throw_location, "Ljava/lang/UnsupportedOperationException;", NULL);
  /art/runtime/mirror/
string-inl.h 63 ThrowLocation throw_location = self->GetCurrentLocationForThrow(); local
64 self->ThrowNewExceptionF(throw_location, "Ljava/lang/StringIndexOutOfBoundsException;",
object_array-inl.h 232 ThrowLocation throw_location = self->GetCurrentLocationForThrow(); local
234 self->ThrowNewExceptionF(throw_location, "Ljava/lang/ArrayStoreException;",
art_method.cc 218 ThrowLocation throw_location; local
220 Handle<mirror::Throwable> exception(hs.NewHandle(self->GetException(&throw_location)));
257 self->SetException(throw_location, exception.Get());
  /art/runtime/entrypoints/
entrypoint_utils.cc 59 ThrowLocation throw_location = self->GetCurrentLocationForThrow(); local
60 DCHECK(throw_location.GetMethod() == referrer);
62 throw_location, "Ljava/lang/InternalError;",
187 ThrowLocation throw_location = self->GetCurrentLocationForThrow(); local
188 self->SetException(throw_location,
300 ThrowLocation throw_location(rcvr, proxy_method, -1);
302 if (!UnboxPrimitiveForResult(throw_location, result_ref, result_type, &result_unboxed)) {
337 ThrowLocation throw_location(rcvr, proxy_method, -1);
338 soa.Self()->ThrowNewWrappedException(throw_location,
entrypoint_utils-inl.h 56 ThrowLocation throw_location = self->GetCurrentLocationForThrow(); local
57 self->ThrowNewException(throw_location, "Ljava/lang/InstantiationError;",
298 ThrowLocation throw_location = self->GetCurrentLocationForThrow(); local
299 DCHECK(throw_location.GetMethod() == referrer);
300 self->ThrowNewExceptionF(throw_location, "Ljava/lang/NoSuchFieldError;",
371 ThrowLocation throw_location = self->GetCurrentLocationForThrow(); local
372 DCHECK_EQ(*referrer, throw_location.GetMethod());
373 ThrowNullPointerExceptionForMethodAccess(throw_location, method_idx, type);
  /art/runtime/
common_throws.cc 46 static void ThrowException(const ThrowLocation* throw_location, const char* exception_descriptor,
59 if (throw_location == NULL) {
63 self->ThrowNewException(*throw_location, exception_descriptor, msg.str().c_str());
67 static void ThrowWrappedException(const ThrowLocation* throw_location,
81 if (throw_location == NULL) {
85 self->ThrowNewWrappedException(*throw_location, exception_descriptor, msg.str().c_str());
128 void ThrowClassCastException(const ThrowLocation* throw_location, const char* msg) {
129 ThrowException(throw_location, "Ljava/lang/ClassCastException;", NULL, msg);
200 void ThrowIllegalAccessException(const ThrowLocation* throw_location, const char* msg) {
201 ThrowException(throw_location, "Ljava/lang/IllegalAccessException;", NULL, msg)
318 ThrowLocation throw_location = self->GetCurrentLocationForThrow(); local
    [all...]
monitor.cc 302 ThrowLocation throw_location = self->GetCurrentLocationForThrow(); local
303 self->ThrowNewExceptionV(throw_location, "Ljava/lang/IllegalMonitorStateException;", fmt, args);
453 ThrowLocation throw_location = self->GetCurrentLocationForThrow(); local
454 self->ThrowNewExceptionF(throw_location, "Ljava/lang/IllegalArgumentException;",
565 ThrowLocation throw_location = self->GetCurrentLocationForThrow(); local
566 self->ThrowNewException(throw_location, "Ljava/lang/InterruptedException;", NULL);
    [all...]
runtime.cc 248 ThrowLocation throw_location; local
249 mirror::Throwable* exception = self->GetException(&throw_location);
251 << " thrown by '" << throw_location.Dump() << "'\n"
    [all...]
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...]
thread.h 44 #include "throw_location.h"
317 mirror::Throwable* GetException(ThrowLocation* throw_location) const
319 if (throw_location != nullptr) {
320 *throw_location = tlsPtr_.throw_location;
328 void SetException(const ThrowLocation& throw_location, mirror::Throwable* new_exception)
333 tlsPtr_.throw_location = throw_location;
338 tlsPtr_.throw_location.Clear();
373 void ThrowNewException(const ThrowLocation& throw_location,
1072 ThrowLocation throw_location; variable
    [all...]
thread.cc 1782 ThrowLocation throw_location = GetCurrentLocationForThrow(); local
1953 ThrowLocation throw_location; local
    [all...]
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...]
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 548 milliseconds