Home | History | Annotate | Download | only in dmtracedump

Lines Matching defs:methodId

50 /* Size of methodId->method cache */
173 unsigned int methodId;
201 int* methodCache; /* methodId->methodIndex mapping */
202 // TODO change to map methodId->method itself
344 void initMethodEntry(MethodEntry *method, unsigned int methodId,
349 method->methodId = methodId;
392 unsigned int idA = methodA->methodId;
393 unsigned int idB = methodB->methodId;
431 unsigned int idA = methodA->methodId;
432 unsigned int idB = methodB->methodId;
503 unsigned int idA = methodA->methodId;
504 unsigned int idB = methodB->methodId;
529 unsigned int idA = methodA->methodId;
530 unsigned int idB = methodB->methodId;
565 unsigned int idA = classA->methods[0]->methodId;
566 unsigned int idB = classB->methods[0]->methodId;
593 unsigned int idA = methodA->methodId;
594 unsigned int idB = methodB->methodId;
628 unsigned int idA = uniqueA->methods[0]->methodId;
629 unsigned int idB = uniqueB->methods[0]->methodId;
998 id1 = ((const MethodEntry*) meth1)->methodId;
999 id2 = ((const MethodEntry*) meth2)->methodId;
1088 pKeys->methods[i].methodId >> 2, pKeys->methods[i].className,
1166 MethodEntry* lookupMethod(DataKeys* pKeys, unsigned int methodId)
1178 hashedId = (methodId >> 2) & METHOD_CACHE_SIZE_MASK;
1180 if (pKeys->methods[pKeys->methodCache[hashedId]].methodId == methodId)
1189 id = pKeys->methods[mid].methodId;
1190 if (id == methodId) { /* match, put in cache */
1191 hashedId = (methodId >> 2) & METHOD_CACHE_SIZE_MASK;
1194 methodId) /* too low */
1280 unsigned int methodId, lastEnter = 0;
1291 methodId = METHOD_ID(methodVal);
1298 lastEnter = methodId;
1301 if (lastEnter != 0 && lastEnter != methodId)
1315 method = lookupMethod(pKeys, methodId);
1318 sprintf(bogusBuf, "methodId: 0x%x", methodId);
2960 unsigned int methodId;
2970 methodId = METHOD_ID(methodVal);
2986 method = lookupMethod(dataKeys, methodId);