/dalvik/vm/arch/generic/ |
D | Call.c | 59 const u4* argv, const char* shorty, void* func, JValue* pReturn) in dvmPlatformInvoke() argument 87 retType = getFfiType(*shorty); in dvmPlatformInvoke() 88 while ((sigByte = *++shorty) != '\0') { in dvmPlatformInvoke()
|
/dalvik/vm/mterp/c/ |
D | gotoTargets.c | 541 curMethod->shorty); in GOTO_TARGET() 573 curMethod->name, curMethod->shorty); in GOTO_TARGET() 725 curMethod->name, curMethod->shorty); in GOTO_TARGET() 845 methodToCall->shorty); 907 curMethod->name, curMethod->shorty); 934 methodToCall->name, methodToCall->shorty); 977 curMethod->shorty);
|
/dalvik/libdex/ |
D | DexProto.c | 248 const char* shorty = dexProtoGetShorty(pProto); in dexProtoComputeArgsSize() local 252 shorty++; in dexProtoComputeArgsSize() 255 switch (*(shorty++)) { in dexProtoComputeArgsSize()
|
D | DexSwapVerify.c | 627 static bool shortyDescMatch(char shorty, const char* descriptor, bool in shortyDescMatch() argument 629 switch (shorty) { in shortyDescMatch() 645 if ((descriptor[0] != shorty) || (descriptor[1] != '\0')) { in shortyDescMatch() 647 shorty, descriptor); in shortyDescMatch() 655 shorty, descriptor); in shortyDescMatch() 661 LOGE("Bogus shorty: '%c'\n", shorty); in shortyDescMatch() 672 const char* shorty = in crossVerifyProtoIdItem() local 680 if (!shortyDescMatch(*shorty, in crossVerifyProtoIdItem() 691 shorty++; // Skip the return type. in crossVerifyProtoIdItem() 700 if (*shorty == '\0') { in crossVerifyProtoIdItem() [all …]
|
/dalvik/vm/reflect/ |
D | Proxy.c | 804 meth->shorty = in createConstructor() 805 gDvm.methJavaLangReflectProxy_constructorPrototype->shorty; in createConstructor() 826 dstMeth->shorty = srcMeth->shorty; in createHandlerMethod() 848 const char* desc = &method->shorty[1]; // [0] is the return type. in boxMethodArgs()
|
D | Annotation.c | 2080 return strlen(method->shorty + 1); in countMethodArguments()
|
/dalvik/vm/mterp/portable/ |
D | debug.c | 200 strcmp(method->shorty, sg) == 0) in checkDebugAndProf()
|
/dalvik/vm/ |
D | Native.c | 527 meth->clazz->descriptor, meth->name, meth->shorty); in unregisterJNINativeMethods() 837 const char* desc = &method->shorty[1]; in dvmLogNativeMethodEntry() 867 char returnType = method->shorty[0]; in dvmLogNativeMethodExit()
|
D | Jni.c | 1172 meth->insSize, meth->name, meth->shorty); in findInArgList() 1173 const char* shorty = meth->shorty +1; /* skip return type char */ in findInArgList() local 1181 switch (*shorty) { in findInArgList() 1192 meth->shorty, meth->insSize); in findInArgList() 1196 LOGI("NOTE: ref %p match on arg type %c\n", obj, *shorty); in findInArgList() 1199 shorty++; in findInArgList() 1370 const char* cp = method->shorty; in dvmSelectJNIBridge() 1644 if (method->shorty[0] == 'L' && !dvmCheckException(self) && in convertReferenceResult() 1691 const char* shorty = &method->shorty[1]; /* skip return type */ in dvmCallJNIMethod_general() local 1692 while (*shorty != '\0') { in dvmCallJNIMethod_general() [all …]
|
D | CheckJni.c | 126 return (method->shorty[0] == 'L' && !dvmCheckException(self) && in callNeedsCheck() 786 if (expectedSigByte != meth->shorty[0]) { in checkSig() 936 const char* desc = meth->shorty; in checkMethodArgsV() 974 const char* desc = meth->shorty; in checkMethodArgsA()
|
/dalvik/vm/mterp/out/ |
D | InterpC-x86-atom.c | 1863 curMethod->shorty); in GOTO_TARGET() 1895 curMethod->name, curMethod->shorty); in GOTO_TARGET() 2047 curMethod->name, curMethod->shorty); in GOTO_TARGET() 2167 methodToCall->shorty); 2229 curMethod->name, curMethod->shorty); 2256 methodToCall->name, methodToCall->shorty); 2299 curMethod->shorty);
|
D | InterpC-x86.c | 1800 curMethod->shorty); in GOTO_TARGET() 1832 curMethod->name, curMethod->shorty); in GOTO_TARGET() 1984 curMethod->name, curMethod->shorty); in GOTO_TARGET() 2104 methodToCall->shorty); 2166 curMethod->name, curMethod->shorty); 2193 methodToCall->name, methodToCall->shorty); 2236 curMethod->shorty);
|
D | InterpC-portdbg.c | 1389 strcmp(method->shorty, sg) == 0) in checkDebugAndProf() 3948 curMethod->shorty); in INTERP_FUNC_NAME() 3980 curMethod->name, curMethod->shorty); in INTERP_FUNC_NAME() 4132 curMethod->name, curMethod->shorty); in INTERP_FUNC_NAME() 4252 methodToCall->shorty); in INTERP_FUNC_NAME() 4314 curMethod->name, curMethod->shorty); in INTERP_FUNC_NAME() 4341 methodToCall->name, methodToCall->shorty); in INTERP_FUNC_NAME() 4384 curMethod->shorty); in INTERP_FUNC_NAME()
|
D | InterpC-portstd.c | 3698 curMethod->shorty); in INTERP_FUNC_NAME() 3730 curMethod->name, curMethod->shorty); in INTERP_FUNC_NAME() 3882 curMethod->name, curMethod->shorty); in INTERP_FUNC_NAME() 4002 methodToCall->shorty); in INTERP_FUNC_NAME() 4064 curMethod->name, curMethod->shorty); in INTERP_FUNC_NAME() 4091 methodToCall->name, methodToCall->shorty); in INTERP_FUNC_NAME() 4134 curMethod->shorty); in INTERP_FUNC_NAME()
|
D | InterpC-allstubs.c | 3669 curMethod->shorty); in GOTO_TARGET() 3701 curMethod->name, curMethod->shorty); in GOTO_TARGET() 3853 curMethod->name, curMethod->shorty); in GOTO_TARGET() 3973 methodToCall->shorty); 4035 curMethod->name, curMethod->shorty); 4062 methodToCall->name, methodToCall->shorty); 4105 curMethod->shorty);
|
/dalvik/vm/interp/ |
D | Stack.c | 450 const char* desc = &(method->shorty[1]); // [0] is the return type. in dvmCallMethodV() 554 const char* desc = &(method->shorty[1]); // [0] is the return type. in dvmCallMethodA() 1035 method->clazz->descriptor, method->name, method->shorty); in dvmHandleStackOverflow()
|
/dalvik/vm/arch/arm/ |
D | CallEABI.S | 358 cmp ip, #0 @ end of shorty?
|
/dalvik/vm/oo/ |
D | Object.h | 567 const char* shorty; member
|
D | Class.c | 2078 meth->shorty = dexProtoGetShorty(&meth->prototype); in loadMethodFromDex()
|
/dalvik/vm/alloc/ |
D | Copying.c | 1812 const char *shorty; in pinThreadStack() local 1855 shorty = method->shorty+1; // skip return value in pinThreadStack() 1857 switch (*shorty++) { in pinThreadStack()
|
/dalvik/vm/analysis/ |
D | RegisterMap.c | 2156 ccp = meth->shorty +1; /* skip first byte, which holds return type */ 2394 switch (meth->shorty[0]) {
|