Lines Matching refs:function

70 static void putref(char *file, char *function);
85 char function[PATLEN + 1]; /* function name */ in findsymbol() local
108 *function = '\0'; in findsymbol()
151 *function = '\0'; in findsymbol()
155 s = function; in findsymbol()
229 } else if (s != function) { in findsymbol()
230 putref(file, function); in findsymbol()
251 char function[PATLEN + 1]; /* function name */ in finddef() local
279 *function = '\0'; in finddef()
296 *function = '\0'; in finddef()
300 s = function; in finddef()
347 } else if (s != function) { in finddef()
348 putref(file, function); in finddef()
363 char function[PATLEN + 1]; /* function name */ in findallfcns() local
380 getstring(function); in findallfcns()
383 putref(file, function); in findallfcns()
482 char function[PATLEN + 1]; /* function name */ in findcalling() local
511 *function = '\0'; in findcalling()
526 getstring(function); in findcalling()
536 putref(file, function); in findcalling()
549 char function[PATLEN + 1]; /* function name */ in findassignments() local
591 *function = '\0'; in findassignments()
606 getstring(function); in findassignments()
619 putref(file, function); in findassignments()
1035 static char function[PATLEN + 1]; /* function name */ in putpostingref() local
1038 *function = '\0'; in putpostingref()
1041 getstring(function); in putpostingref()
1046 putref(srcfiles[p->fileindex], function); in putpostingref()
1053 putref(char *file, char *function) in putref() argument
1058 if (*function == '\0') { in putref()
1059 function = "<global>"; in putref()
1064 if (fprintf(output, "%s %s ", filepath(file), function) == EOF) { in putref()