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

1 2

  /art/runtime/entrypoints/quick/
quick_lock_entrypoints.cc 29 ThrowLocation throw_location(self->GetCurrentLocationForThrow());
30 ThrowNullPointerException(&throw_location,
52 ThrowLocation throw_location(self->GetCurrentLocationForThrow());
53 ThrowNullPointerException(&throw_location,
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/
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...]
reflection-inl.h 30 inline bool ConvertPrimitiveValue(const ThrowLocation* throw_location, bool unbox_for_result,
91 ThrowIllegalArgumentException(throw_location,
96 ThrowClassCastException(throw_location,
common_throws.h 63 void ThrowClassCastException(const ThrowLocation* throw_location, const char* msg)
97 void ThrowIllegalAccessException(const ThrowLocation* throw_location, const char* msg)
102 void ThrowIllegalArgumentException(const ThrowLocation* throw_location, const char* msg)
164 void ThrowNullPointerExceptionForFieldAccess(const ThrowLocation& throw_location,
169 void ThrowNullPointerExceptionForMethodAccess(const ThrowLocation& throw_location,
174 void ThrowNullPointerExceptionForMethodAccess(const ThrowLocation& throw_location,
179 void ThrowNullPointerExceptionFromDexPC(const ThrowLocation& throw_location)
182 void ThrowNullPointerException(const ThrowLocation* throw_location, const char* msg)
reflection.h 41 bool UnboxPrimitiveForResult(const ThrowLocation& throw_location, mirror::Object* o,
45 ALWAYS_INLINE bool ConvertPrimitiveValue(const ThrowLocation* throw_location, bool unbox_for_result,
quick_exception_handler.h 45 void FindCatch(const ThrowLocation& throw_location, mirror::Throwable* exception,
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...]
reflection.cc 693 static bool UnboxPrimitive(const ThrowLocation* throw_location, mirror::Object* o,
701 ThrowIllegalArgumentException(throw_location,
707 ThrowClassCastException(throw_location,
718 ThrowIllegalArgumentException(throw_location,
725 ThrowIllegalArgumentException(throw_location,
730 ThrowNullPointerException(throw_location,
768 ThrowIllegalArgumentException(throw_location,
775 return ConvertPrimitiveValue(throw_location, unbox_for_result,
786 bool UnboxPrimitiveForResult(const ThrowLocation& throw_location, mirror::Object* o,
788 return UnboxPrimitive(&throw_location, o, dst_class, nullptr, unboxed_value)
    [all...]
thread.cc 1782 ThrowLocation throw_location = GetCurrentLocationForThrow(); local
1953 ThrowLocation throw_location; local
    [all...]
trace.h 98 void ExceptionCaught(Thread* thread, const ThrowLocation& throw_location,
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...]
  /art/runtime/entrypoints/portable/
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);
portable_fillarray_entrypoints.cc 40 ThrowLocation throw_location = self->GetCurrentLocationForThrow(); local
41 self->ThrowNewExceptionF(throw_location, "Ljava/lang/ArrayIndexOutOfBoundsException;",
  /art/runtime/mirror/
string-inl.h 63 ThrowLocation throw_location = self->GetCurrentLocationForThrow(); local
64 self->ThrowNewExceptionF(throw_location, "Ljava/lang/StringIndexOutOfBoundsException;",
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());
object_array-inl.h 232 ThrowLocation throw_location = self->GetCurrentLocationForThrow(); local
234 self->ThrowNewExceptionF(throw_location, "Ljava/lang/ArrayStoreException;",
  /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_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;",
java_lang_Class.cc 56 ThrowLocation throw_location = soa.Self()->GetCurrentLocationForThrow(); local
57 soa.Self()->ThrowNewExceptionF(throw_location, "Ljava/lang/ClassNotFoundException;",
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/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);

Completed in 786 milliseconds

1 2