Lines Matching refs:methodA
333 const MethodEntry *methodA = *(const MethodEntry**)a; in compareElapsedExclusive() local
335 elapsed1 = methodA->elapsedExclusive; in compareElapsedExclusive()
345 result = strcmp(methodA->className, methodB->className); in compareElapsedExclusive()
347 if (methodA->methodName == NULL || methodB->methodName == NULL) { in compareElapsedExclusive()
348 int64_t idA = methodA->methodId; in compareElapsedExclusive()
356 result = strcmp(methodA->methodName, methodB->methodName); in compareElapsedExclusive()
358 result = strcmp(methodA->signature, methodB->signature); in compareElapsedExclusive()
368 const MethodEntry *methodA, *methodB; in compareElapsedInclusive() local
372 methodA = *(MethodEntry const **)a; in compareElapsedInclusive()
374 elapsed1 = methodA->elapsedInclusive; in compareElapsedInclusive()
384 result = strcmp(methodA->className, methodB->className); in compareElapsedInclusive()
386 if (methodA->methodName == NULL || methodB->methodName == NULL) { in compareElapsedInclusive()
387 int64_t idA = methodA->methodId; in compareElapsedInclusive()
395 result = strcmp(methodA->methodName, methodB->methodName); in compareElapsedInclusive()
397 result = strcmp(methodA->signature, methodB->signature); in compareElapsedInclusive()
423 MethodEntry *methodA = timedA->method; in compareTimedMethod() local
425 result = strcmp(methodA->className, methodB->className); in compareTimedMethod()
427 if (methodA->methodName == NULL || methodB->methodName == NULL) { in compareTimedMethod()
428 int64_t idA = methodA->methodId; in compareTimedMethod()
436 result = strcmp(methodA->methodName, methodB->methodName); in compareTimedMethod()
438 result = strcmp(methodA->signature, methodB->signature); in compareTimedMethod()
450 const MethodEntry *methodA = *(const MethodEntry**)a; in compareClassNames() local
452 result = strcmp(methodA->className, methodB->className); in compareClassNames()
454 int64_t idA = methodA->methodId; in compareClassNames()
509 const MethodEntry *methodA = *(const MethodEntry**)a; in compareMethodNames() local
511 if (methodA->methodName == NULL || methodB->methodName == NULL) { in compareMethodNames()
514 result = strcmp(methodA->methodName, methodB->methodName); in compareMethodNames()
516 result = strcmp(methodA->className, methodB->className); in compareMethodNames()
518 int64_t idA = methodA->methodId; in compareMethodNames()
2530 const MethodEntry *methodA = *(const MethodEntry**)a; in compareMethodNamesForDiff() local
2532 if (methodA->methodName == NULL || methodB->methodName == NULL) { in compareMethodNamesForDiff()
2535 result = strcmp(methodA->methodName, methodB->methodName); in compareMethodNamesForDiff()
2537 result = strcmp(methodA->signature, methodB->signature); in compareMethodNamesForDiff()
2539 return strcmp(methodA->className, methodB->className); in compareMethodNamesForDiff()