Searched refs:java_this (Results 1 – 2 of 2) sorted by relevance
/art/runtime/native/ |
D | java_lang_Object.cc | 28 static jobject Object_internalClone(JNIEnv* env, jobject java_this) { in Object_internalClone() argument 30 mirror::Object* o = soa.Decode<mirror::Object*>(java_this); in Object_internalClone() 34 static void Object_notify(JNIEnv* env, jobject java_this) { in Object_notify() argument 36 mirror::Object* o = soa.Decode<mirror::Object*>(java_this); in Object_notify() 40 static void Object_notifyAll(JNIEnv* env, jobject java_this) { in Object_notifyAll() argument 42 mirror::Object* o = soa.Decode<mirror::Object*>(java_this); in Object_notifyAll() 46 static void Object_wait(JNIEnv* env, jobject java_this) { in Object_wait() argument 48 mirror::Object* o = soa.Decode<mirror::Object*>(java_this); in Object_wait() 52 static void Object_waitJI(JNIEnv* env, jobject java_this, jlong ms, jint ns) { in Object_waitJI() argument 54 mirror::Object* o = soa.Decode<mirror::Object*>(java_this); in Object_waitJI()
|
D | java_lang_String.cc | 37 static jint String_fastIndexOf(JNIEnv* env, jobject java_this, jint ch, jint start) { in String_fastIndexOf() argument 42 mirror::String* s = soa.Decode<mirror::String*>(java_this); in String_fastIndexOf()
|