• Home
  • Raw
  • Download

Lines Matching refs:meth

325     Method* meth;  in dvmJniStartup()  local
355 meth = dvmFindVirtualMethodByDescriptor( in dvmJniStartup()
359 if (meth == NULL) { in dvmJniStartup()
363 gDvm.methOrgApacheHarmonyNioInternalDirectBuffer_getEffectiveAddress = meth; in dvmJniStartup()
365 meth = dvmFindVirtualMethodByDescriptor(platformAddressClass, in dvmJniStartup()
367 if (meth == NULL) { in dvmJniStartup()
372 meth->methodIndex; in dvmJniStartup()
374 meth = dvmFindDirectMethodByDescriptor(platformAddressFactoryClass, in dvmJniStartup()
377 if (meth == NULL) { in dvmJniStartup()
381 gDvm.methOrgApacheHarmonyLuniPlatformPlatformAddress_on = meth; in dvmJniStartup()
383 meth = dvmFindDirectMethodByDescriptor(readWriteBufferClass, in dvmJniStartup()
386 if (meth == NULL) { in dvmJniStartup()
390 gDvm.methJavaNioReadWriteDirectByteBuffer_init = meth; in dvmJniStartup()
1022 const Method* meth; in findInArgList() local
1036 meth = saveArea->method; in findInArgList()
1037 if (meth != SAVEAREA_FROM_FP(saveArea->prevFrame)->method) in findInArgList()
1043 meth->insSize, meth->name, meth->shorty); in findInArgList()
1044 const char* shorty = meth->shorty +1; /* skip return type char */ in findInArgList()
1045 for (i = 0; i < meth->insSize; i++) { in findInArgList()
1046 if (i == 0 && !dvmIsStaticMethod(meth)) { in findInArgList()
1063 meth->shorty, meth->insSize); in findInArgList()
1077 if (dvmIsStaticMethod(meth)) { in findInArgList()
1079 if ((void*)obj == (void*)meth->clazz) in findInArgList()
1275 const Method* meth = SAVEAREA_FROM_FP(fp)->method; in dvmGetCurrentJNIMethod() local
1277 assert(meth != NULL); in dvmGetCurrentJNIMethod()
1278 assert(dvmIsNativeMethod(meth)); in dvmGetCurrentJNIMethod()
1279 return meth; in dvmGetCurrentJNIMethod()
1393 const Method* meth = dvmGetCurrentJNIMethod(); in checkStackSum() local
1397 } else if (strcmp(meth->name, "nativeLoad") == 0 && in checkStackSum()
1398 (strcmp(meth->clazz->descriptor, "Ljava/lang/Runtime;") == 0)) in checkStackSum()
2225 Method* meth; in GetMethodID() local
2227 meth = dvmFindVirtualMethodHierByDescriptor(clazz, name, sig); in GetMethodID()
2228 if (meth == NULL) { in GetMethodID()
2230 meth = dvmFindDirectMethodByDescriptor(clazz, name, sig); in GetMethodID()
2232 if (meth != NULL && dvmIsStaticMethod(meth)) { in GetMethodID()
2234 char* desc = dexProtoCopyMethodDescriptor(&meth->prototype); in GetMethodID()
2236 clazz->descriptor, meth->name, desc); in GetMethodID()
2239 meth = NULL; in GetMethodID()
2241 if (meth == NULL) { in GetMethodID()
2252 if (meth != NULL) { in GetMethodID()
2253 assert(dvmIsClassInitialized(meth->clazz) || in GetMethodID()
2254 dvmIsClassInitializing(meth->clazz)); in GetMethodID()
2256 id = (jmethodID) meth; in GetMethodID()
2303 Method* meth; in GetStaticMethodID() local
2305 meth = dvmFindDirectMethodHierByDescriptor(clazz, name, sig); in GetStaticMethodID()
2308 if (meth != NULL && !dvmIsStaticMethod(meth)) { in GetStaticMethodID()
2310 char* desc = dexProtoCopyMethodDescriptor(&meth->prototype); in GetStaticMethodID()
2313 clazz->descriptor, meth->name, desc); in GetStaticMethodID()
2316 meth = NULL; in GetStaticMethodID()
2319 id = (jmethodID) meth; in GetStaticMethodID()
2483 const Method* meth; \
2486 meth = dvmGetVirtualizedMethod(obj->clazz, (Method*)methodID); \
2487 if (meth == NULL) { \
2492 dvmCallMethodV(_self, meth, obj, true, &result, args); \
2504 const Method* meth; \
2506 meth = dvmGetVirtualizedMethod(obj->clazz, (Method*)methodID); \
2507 if (meth == NULL) { \
2511 dvmCallMethodV(_self, meth, obj, true, &result, args); \
2522 const Method* meth; \
2524 meth = dvmGetVirtualizedMethod(obj->clazz, (Method*)methodID); \
2525 if (meth == NULL) { \
2529 dvmCallMethodA(_self, meth, obj, true, &result, args); \
2561 const Method* meth; \
2564 meth = dvmGetVirtualizedMethod(clazz, (Method*)methodID); \
2565 if (meth == NULL) { \
2570 dvmCallMethodV(_self, meth, obj, true, &result, args); \
2584 const Method* meth; \
2586 meth = dvmGetVirtualizedMethod(clazz, (Method*)methodID); \
2587 if (meth == NULL) { \
2591 dvmCallMethodV(_self, meth, obj, true, &result, args); \
2604 const Method* meth; \
2606 meth = dvmGetVirtualizedMethod(clazz, (Method*)methodID); \
2607 if (meth == NULL) { \
2611 dvmCallMethodA(_self, meth, obj, true, &result, args); \
3445 const Method* meth = dvmGetVirtualizedMethod(bufObj->clazz, in GetDirectBufferAddress() local
3447 dvmCallMethodA(self, meth, bufObj, false, &callResult, NULL); in GetDirectBufferAddress()