Searched refs:argCount (Results 1 – 5 of 5) sorted by relevance
/dalvik/dx/src/com/android/dx/cf/code/ |
D | BaseMachine.java | 43 private int argCount; field in BaseMachine 101 argCount = 0; in clearArgs() 128 argCount = count; in popArgs() 207 argCount = 1; in localArg() 259 protected final int argCount() { in argCount() method in BaseMachine 260 return argCount; in argCount() 272 for (int i = 0; i < argCount; i++) { in argWidth() 286 if (n >= argCount) { in arg()
|
D | RopperMachine.java | 632 int count = argCount(); in getSources()
|
/dalvik/vm/oo/ |
D | Object.c | 209 const char* returnType, size_t argCount, const char** argTypes) in compareMethodHelper() argument 224 if (dexProtoGetParameterCount(proto) != argCount) { in compareMethodHelper() 230 for (/*argCount*/; argCount != 0; argCount--, argTypes++) { in compareMethodHelper() 243 if (argCount == 0) { in compareMethodHelper() 332 size_t argCount, const char* descriptor) in copyTypes() argument 340 for (i = 0; i < argCount; i++) { in copyTypes() 369 size_t argCount = countArgsAndFindReturnType(descriptor, &returnType); in findMethodInListByDescriptor() local 381 char buffer[argCount + (returnType - descriptor) - 2]; in findMethodInListByDescriptor() 382 const char* argTypes[argCount]; in findMethodInListByDescriptor() 384 copyTypes(buffer, argTypes, argCount, descriptor); in findMethodInListByDescriptor() [all …]
|
/dalvik/vm/reflect/ |
D | Proxy.c | 850 int argCount; in boxMethodArgs() local 855 argCount = dexProtoGetParameterCount(&method->prototype); in boxMethodArgs() 858 argArray = dvmAllocArray(gDvm.classJavaLangObjectArray, argCount, in boxMethodArgs() 870 argCount = 0; in boxMethodArgs() 883 argObjects[argCount] = (Object*) dvmWrapPrimitive(value, in boxMethodArgs() 886 dvmReleaseTrackedAlloc(argObjects[argCount], NULL); in boxMethodArgs() 887 argCount++; in boxMethodArgs() 893 argObjects[argCount] = (Object*) dvmWrapPrimitive(value, in boxMethodArgs() 895 dvmReleaseTrackedAlloc(argObjects[argCount], NULL); in boxMethodArgs() 896 argCount++; in boxMethodArgs() [all …]
|
/dalvik/vm/analysis/ |
D | CodeVerify.c | 2913 u4 argCount = pDecInsn->vA; in verifyFilledNewArrayRegs() local 2932 for (ui = 0; ui < argCount; ui++) { in verifyFilledNewArrayRegs()
|