Searched defs:method2 (Results 1 - 3 of 3) sorted by relevance

/dalvik/vm/oo/
H A DClass.h216 const Method* method2)
218 return dexProtoCompare(&method1->prototype, &method2->prototype);
227 const Method* method2)
229 return dexProtoCompareParameters(&method1->prototype, &method2->prototype);
238 const Method* method2);
247 const Method* method2);
215 dvmCompareMethodProtos(const Method* method1, const Method* method2) argument
226 dvmCompareMethodParameterProtos(const Method* method1, const Method* method2) argument
H A DClass.cpp4850 const Method* method2)
4852 int result = strcmp(method1->name, method2->name);
4858 return dvmCompareMethodProtos(method1, method2);
4868 const Method* method2)
4870 int result = strcmp(method1->name, method2->name);
4876 return dvmCompareMethodParameterProtos(method1, method2);
4849 dvmCompareMethodNamesAndProtos(const Method* method1, const Method* method2) argument
4867 dvmCompareMethodNamesAndParameterProtos(const Method* method1, const Method* method2) argument
/dalvik/tools/dmtracedump/
H A DTraceDump.c209 MethodEntry* method2; member in struct:DiffEntry
2655 ptr->method2 = methods2[match];
2658 uint64_t e2 = ptr->method2->elapsedExclusive;
2665 uint64_t i2 = ptr->method2->elapsedInclusive;
2681 ptr->method2 = NULL;
2704 while (ptr->method1 != NULL && ptr->method2 != NULL) {
2716 printf("%llu ", ptr->method2->elapsedExclusive);
2728 printf("%d\n", ptr->method2->numCalls[0]);
2747 while (ptr->method1 != NULL && ptr->method2 != NULL) {
2759 printf("%llu ", ptr->method2
[all...]

Completed in 349 milliseconds