Lines Matching refs:TimedMethod

138 typedef struct TimedMethod {  struct
139 struct TimedMethod* next; argument
143 } TimedMethod; typedef
174 struct TimedMethod* parents[2]; /* 0=normal, 1=recursive */
175 struct TimedMethod* children[2]; /* 0=normal, 1=recursive */
384 const TimedMethod* timedA = (TimedMethod const*) a; in compareTimedMethod()
385 const TimedMethod* timedB = (TimedMethod const*) b; in compareTimedMethod()
1162 TimedMethod* pTimed; in addInclusiveTime()
1163 TimedMethod* children = parent->children[parentIsRecursive]; in addInclusiveTime()
1173 pTimed = new TimedMethod(); in addInclusiveTime()
1184 TimedMethod* parents = child->parents[childIsRecursive]; in addInclusiveTime()
1194 pTimed = new TimedMethod(); in addInclusiveTime()
1217 TimedMethod* sortTimedMethodList(TimedMethod* list, int32_t* num) { in sortTimedMethodList()
1219 TimedMethod* pTimed; in sortTimedMethodList()
1227 TimedMethod* sorted = new TimedMethod[num_entries]; in sortTimedMethodList()
1229 memcpy(&sorted[ii], pTimed, sizeof(TimedMethod)); in sortTimedMethodList()
1230 qsort(sorted, num_entries, sizeof(TimedMethod), compareTimedMethod); in sortTimedMethodList()
1245 void printInclusiveMethod(MethodEntry* method, TimedMethod* list, int32_t numCalls, int32_t flags) { in printInclusiveMethod()
1257 TimedMethod* sorted = sortTimedMethodList(list, &num); in printInclusiveMethod()
1259 for (TimedMethod* pTimed = sorted; pTimed; pTimed = pTimed->next) { in printInclusiveMethod()
1430 for (TimedMethod* child = method->children[0]; child; child = child->next) { in createLabels()
1443 for (TimedMethod* child = method->children[0]; child; child = child->next) { in createLinks()