Lines Matching refs:methodB

325   const MethodEntry* methodB = *(const MethodEntry**) b;  in compareElapsedExclusive()  local
327 uint64_t elapsed2 = methodB->elapsedExclusive; in compareElapsedExclusive()
334 int32_t result = strcmp(methodA->className, methodB->className); in compareElapsedExclusive()
336 if (methodA->methodName == nullptr || methodB->methodName == nullptr) { in compareElapsedExclusive()
338 int64_t idB = methodB->methodId; in compareElapsedExclusive()
343 result = strcmp(methodA->methodName, methodB->methodName); in compareElapsedExclusive()
344 if (result == 0) result = strcmp(methodA->signature, methodB->signature); in compareElapsedExclusive()
355 const MethodEntry* methodB = *(MethodEntry const**) b; in compareElapsedInclusive() local
357 uint64_t elapsed2 = methodB->elapsedInclusive; in compareElapsedInclusive()
364 int32_t result = strcmp(methodA->className, methodB->className); in compareElapsedInclusive()
366 if (methodA->methodName == nullptr || methodB->methodName == nullptr) { in compareElapsedInclusive()
368 int64_t idB = methodB->methodId; in compareElapsedInclusive()
373 result = strcmp(methodA->methodName, methodB->methodName); in compareElapsedInclusive()
374 if (result == 0) result = strcmp(methodA->signature, methodB->signature); in compareElapsedInclusive()
395 MethodEntry* methodB = timedB->method; in compareTimedMethod() local
396 int32_t result = strcmp(methodA->className, methodB->className); in compareTimedMethod()
398 if (methodA->methodName == nullptr || methodB->methodName == nullptr) { in compareTimedMethod()
400 int64_t idB = methodB->methodId; in compareTimedMethod()
405 result = strcmp(methodA->methodName, methodB->methodName); in compareTimedMethod()
406 if (result == 0) result = strcmp(methodA->signature, methodB->signature); in compareTimedMethod()
417 const MethodEntry* methodB = *(const MethodEntry**) b; in compareClassNames() local
418 int32_t result = strcmp(methodA->className, methodB->className); in compareClassNames()
421 int64_t idB = methodB->methodId; in compareClassNames()
465 const MethodEntry* methodB = *(const MethodEntry**) b; in compareMethodNames() local
466 if (methodA->methodName == nullptr || methodB->methodName == nullptr) { in compareMethodNames()
469 int32_t result = strcmp(methodA->methodName, methodB->methodName); in compareMethodNames()
471 result = strcmp(methodA->className, methodB->className); in compareMethodNames()
474 int64_t idB = methodB->methodId; in compareMethodNames()
2253 const MethodEntry* methodB = *(const MethodEntry**) b; in compareMethodNamesForDiff() local
2254 if (methodA->methodName == nullptr || methodB->methodName == nullptr) { in compareMethodNamesForDiff()
2257 int32_t result = strcmp(methodA->methodName, methodB->methodName); in compareMethodNamesForDiff()
2259 result = strcmp(methodA->signature, methodB->signature); in compareMethodNamesForDiff()
2261 return strcmp(methodA->className, methodB->className); in compareMethodNamesForDiff()