Home
last modified time | relevance | path

Searched refs:java_this (Results 1 – 2 of 2) sorted by relevance

/aosp12/art/runtime/native/
H A Djava_lang_String.cc36 static jchar String_charAt(JNIEnv* env, jobject java_this, jint index) { in String_charAt() argument
38 return soa.Decode<mirror::String>(java_this)->CharAt(index); in String_charAt()
41 static jint String_compareTo(JNIEnv* env, jobject java_this, jstring java_rhs) { in String_compareTo() argument
51 static jstring String_concat(JNIEnv* env, jobject java_this, jstring java_string_arg) { in String_concat() argument
66 jobject string_original = (length_this == 0) ? java_string_arg : java_this; in String_concat()
88 soa.Decode<mirror::String>(java_this)->GetChars(start, end, char_array, index); in String_getCharsNoCheck()
91 static jstring String_intern(JNIEnv* env, jobject java_this) { in String_intern() argument
93 ObjPtr<mirror::String> result = soa.Decode<mirror::String>(java_this)->Intern(); in String_intern()
100 Handle<mirror::String> string = hs.NewHandle(soa.Decode<mirror::String>(java_this)); in String_doReplace()
105 static jcharArray String_toCharArray(JNIEnv* env, jobject java_this) { in String_toCharArray() argument
[all …]
H A Djava_lang_Object.cc29 static jobject Object_internalClone(JNIEnv* env, jobject java_this) { in Object_internalClone() argument
32 Handle<mirror::Object> o = hs.NewHandle(soa.Decode<mirror::Object>(java_this)); in Object_internalClone()
36 static void Object_notify(JNIEnv* env, jobject java_this) { in Object_notify() argument
38 soa.Decode<mirror::Object>(java_this)->Notify(soa.Self()); in Object_notify()
41 static void Object_notifyAll(JNIEnv* env, jobject java_this) { in Object_notifyAll() argument
43 soa.Decode<mirror::Object>(java_this)->NotifyAll(soa.Self()); in Object_notifyAll()
46 static void Object_waitJI(JNIEnv* env, jobject java_this, jlong ms, jint ns) { in Object_waitJI() argument
48 soa.Decode<mirror::Object>(java_this)->Wait(soa.Self(), ms, ns); in Object_waitJI()