Searched defs:opIndex (Results 1 - 2 of 2) sorted by relevance

/dalvik/vm/
H A DInlineNative.h105 * Perform the operation specified by "opIndex".
115 JValue* pResult, int opIndex)
117 return (*gDvmInlineOpsTable[opIndex].func)(arg0, arg1, arg2, arg3, pResult);
124 JValue* pResult, int opIndex);
129 extern "C" Method* dvmResolveInlineNative(int opIndex);
114 dvmPerformInlineOp4Std(u4 arg0, u4 arg1, u4 arg2, u4 arg3, JValue* pResult, int opIndex) argument
H A DInlineNative.cpp867 Method* dvmResolveInlineNative(int opIndex) argument
869 assert(opIndex >= 0 && opIndex < NELEM(gDvmInlineOpsTable));
870 Method* method = gDvm.inlinedMethods[opIndex];
876 gDvmInlineOpsTable[opIndex].classDescriptor,
877 gDvmInlineOpsTable[opIndex].methodName,
878 gDvmInlineOpsTable[opIndex].methodSignature);
885 gDvm.inlinedMethods[opIndex] = method;
901 JValue* pResult, int opIndex)
903 Method* method = dvmResolveInlineNative(opIndex);
900 dvmPerformInlineOp4Dbg(u4 arg0, u4 arg1, u4 arg2, u4 arg3, JValue* pResult, int opIndex) argument
[all...]

Completed in 42 milliseconds