Home | History | Annotate | Download | only in native

Lines Matching full:args

29 static void Dalvik_java_lang_Object_internalClone(const u4* args,
32 Object* thisPtr = (Object*) args[0];
41 static void Dalvik_java_lang_Object_hashCode(const u4* args, JValue* pResult)
43 Object* thisPtr = (Object*) args[0];
50 static void Dalvik_java_lang_Object_getClass(const u4* args, JValue* pResult)
52 Object* thisPtr = (Object*) args[0];
63 static void Dalvik_java_lang_Object_notify(const u4* args, JValue* pResult,
66 Object* thisPtr = (Object*) args[0];
75 static void Dalvik_java_lang_Object_notifyAll(const u4* args, JValue* pResult,
78 Object* thisPtr = (Object*) args[0];
87 static void Dalvik_java_lang_Object_wait(const u4* args, JValue* pResult,
90 Object* thisPtr = (Object*) args[0];
92 dvmObjectWait(self, thisPtr, GET_ARG_LONG(args,1), (s4)args[3], true);