Lines Matching refs:function

72 static void putref(char *file, char *function);
87 char function[PATLEN + 1]; /* function name */ in findsymbol() local
110 *function = '\0'; in findsymbol()
153 *function = '\0'; in findsymbol()
157 s = function; in findsymbol()
231 } else if (s != function) { in findsymbol()
232 putref(file, function); in findsymbol()
253 char function[PATLEN + 1]; /* function name */ in finddef() local
281 *function = '\0'; in finddef()
298 *function = '\0'; in finddef()
302 s = function; in finddef()
349 } else if (s != function) { in finddef()
350 putref(file, function); in finddef()
365 char function[PATLEN + 1]; /* function name */ in findallfcns() local
382 getstring(function); in findallfcns()
385 putref(file, function); in findallfcns()
484 char function[PATLEN + 1]; /* function name */ in findcalling() local
513 *function = '\0'; in findcalling()
528 getstring(function); in findcalling()
538 putref(file, function); in findcalling()
551 char function[PATLEN + 1]; /* function name */ in findassignments() local
593 *function = '\0'; in findassignments()
608 getstring(function); in findassignments()
621 putref(file, function); in findassignments()
1037 static char function[PATLEN + 1]; /* function name */ in putpostingref() local
1040 *function = '\0'; in putpostingref()
1043 getstring(function); in putpostingref()
1048 putref(srcfiles[p->fileindex], function); in putpostingref()
1055 putref(char *file, char *function) in putref() argument
1060 if (*function == '\0') { in putref()
1061 function = "<global>"; in putref()
1066 if (fprintf(output, "%s %s ", filepath(file), function) == EOF) { in putref()