Home | History | Annotate | Download | only in dmtracedump

Lines Matching defs:pMethods

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