Lines Matching refs:topKey
410 FileFn* topKey; in show_CacheProfFile() local
421 while (nextIterFM( cpf->outerMap, (Word*)(&topKey), (Word*)(&topVal) )) { in show_CacheProfFile()
423 topKey->fi_name, topKey->fn_name ); in show_CacheProfFile()
559 FileFn* topKey; in handle_counts() local
571 topKey = malloc(sizeof(FileFn)); in handle_counts()
572 if (topKey) { in handle_counts()
573 topKey->fi_name = strdup(fi); in handle_counts()
574 topKey->fn_name = strdup(fn); in handle_counts()
576 if (! (topKey && topKey->fi_name && topKey->fn_name)) in handle_counts()
580 if (lookupFM( cpf->outerMap, (Word*)(&countsMap), (Word)topKey )) { in handle_counts()
583 ddel_FileFn(topKey); in handle_counts()
589 addToFM( cpf->outerMap, (Word)topKey, (Word)countsMap ); in handle_counts()