Home | History | Annotate | Download | only in native

Lines Matching full:args

31 static void Dalvik_java_lang_VMThread_create(const u4* args, JValue* pResult)
33 Object* threadObj = (Object*) args[0];
34 s8 stackSize = GET_ARG_LONG(args, 1);
44 static void Dalvik_java_lang_VMThread_currentThread(const u4* args,
47 UNUSED_PARAMETER(args);
58 static void Dalvik_java_lang_VMThread_getStatus(const u4* args, JValue* pResult)
60 Object* thisPtr = (Object*) args[0];
81 static void Dalvik_java_lang_VMThread_holdsLock(const u4* args, JValue* pResult)
83 Object* thisPtr = (Object*) args[0];
84 Object* object = (Object*) args[1];
105 static void Dalvik_java_lang_VMThread_interrupt(const u4* args, JValue* pResult)
107 Object* thisPtr = (Object*) args[0];
123 static void Dalvik_java_lang_VMThread_interrupted(const u4* args,
129 UNUSED_PARAMETER(args);
142 static void Dalvik_java_lang_VMThread_isInterrupted(const u4* args,
145 Object* thisPtr = (Object*) args[0];
165 static void Dalvik_java_lang_VMThread_nameChanged(const u4* args,
168 Object* thisPtr = (Object*) args[0];
169 StringObject* nameStr = (StringObject*) args[1];
195 static void Dalvik_java_lang_VMThread_setPriority(const u4* args,
198 Object* thisPtr = (Object*) args[0];
199 int newPriority = args[1];
215 static void Dalvik_java_lang_VMThread_sleep(const u4* args, JValue* pResult)
217 dvmThreadSleep(GET_ARG_LONG(args,0), args[2]);
229 static void Dalvik_java_lang_VMThread_yield(const u4* args, JValue* pResult)
231 UNUSED_PARAMETER(args);