Lines Matching refs:pMethods

1530 void printExclusiveProfile(MethodEntry **pMethods, int numMethods,  in printExclusiveProfile()  argument
1555 qsort(pMethods, numMethods, sizeof(MethodEntry*), compareElapsedInclusive); in printExclusiveProfile()
1558 pMethods[ii]->index = ii; in printExclusiveProfile()
1562 qsort(pMethods, numMethods, sizeof(MethodEntry*), in printExclusiveProfile()
1581 method = pMethods[ii]; in printExclusiveProfile()
1691 void printInclusiveProfile(MethodEntry **pMethods, int numMethods, in printInclusiveProfile() argument
1714 qsort(pMethods, numMethods, sizeof(MethodEntry*), in printInclusiveProfile()
1732 method = pMethods[ii]; in printInclusiveProfile()
1790 void createClassList(TraceData* traceData, MethodEntry **pMethods, int numMethods) in createClassList() argument
1797 qsort(pMethods, numMethods, sizeof(MethodEntry*), compareClassNames); in createClassList()
1804 if (pMethods[ii]->methodName == NULL) { in createClassList()
1807 if (strcmp(pMethods[ii]->className, currentClassName) != 0) { in createClassList()
1810 firstClassName = pMethods[ii]->className; in createClassList()
1813 currentClassName = pMethods[ii]->className; in createClassList()
1831 if (pMethods[ii]->methodName == NULL) { in createClassList()
1834 if (strcmp(pMethods[ii]->className, currentClassName) != 0) { in createClassList()
1836 (++pClass)->className = currentClassName = pMethods[ii]->className; in createClassList()
1848 if (pMethods[ii]->methodName == NULL) { in createClassList()
1851 if (strcmp(pMethods[ii]->className, currentClassName) != 0) { in createClassList()
1852 currentClassName = pMethods[ii]->className; in createClassList()
1862 pClass->methods[nextMethod++] = pMethods[ii]; in createClassList()
2058 void createUniqueMethodList(TraceData* traceData, MethodEntry **pMethods, int numMethods) in createUniqueMethodList() argument
2065 qsort(pMethods, numMethods, sizeof(MethodEntry*), compareMethodNames); in createUniqueMethodList()
2073 if (pMethods[ii]->methodName == NULL) in createUniqueMethodList()
2075 if (strcmp(pMethods[ii]->methodName, currentMethodName) != 0) { in createUniqueMethodList()
2077 currentMethodName = pMethods[ii]->methodName; in createUniqueMethodList()
2093 if (pMethods[ii]->methodName == NULL) in createUniqueMethodList()
2096 currentMethodName = pMethods[ii]->methodName; in createUniqueMethodList()
2097 if (strcmp(pMethods[ii]->methodName, currentMethodName) != 0) { in createUniqueMethodList()
2098 currentMethodName = pMethods[ii]->methodName; in createUniqueMethodList()
2112 if (pMethods[ii]->methodName == NULL) in createUniqueMethodList()
2114 if (strcmp(pMethods[ii]->methodName, currentMethodName) != 0) { in createUniqueMethodList()
2115 currentMethodName = pMethods[ii]->methodName; in createUniqueMethodList()
2125 pUnique->methods[nextMethod++] = pMethods[ii]; in createUniqueMethodList()
2296 MethodEntry **pMethods = NULL; in parseDataKeys() local
2492 MethodEntry** pMethods = (MethodEntry**) malloc(sizeof(MethodEntry*) * dataKeys->numMethods); in parseMethodEntries() local
2495 pMethods[ii] = entry; in parseMethodEntries()
2498 return pMethods; in parseMethodEntries()
2504 void profileTrace(TraceData* traceData, MethodEntry **pMethods, int numMethods, uint64_t sumThreadT… in profileTrace() argument
2512 printExclusiveProfile(pMethods, numMethods, sumThreadTime); in profileTrace()
2513 printInclusiveProfile(pMethods, numMethods, sumThreadTime); in profileTrace()
2515 createClassList(traceData, pMethods, numMethods); in profileTrace()
2518 createUniqueMethodList(traceData, pMethods, numMethods); in profileTrace()