Lines Matching defs:file
4 * The contents of this file are subject to the terms of the
6 * (the "License"). You may not use this file except in compliance
15 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
36 * file editing functions
50 char file[PATHLEN + 1]; /* file name */
53 /* verify that there is a references found file */
60 /* get the file name and line number */
61 if (fscanf(refsfound, "%s%*s%s", file, linenum) == 2) {
62 edit(file, linenum); /* edit it */
72 char file[PATHLEN + 1]; /* file name */
76 /* verify that there is a references found file */
83 /* get each file name and line number */
84 while (fscanf(refsfound, "%s%*s%s%*[^\n]", file, linenum) == 2) {
85 edit(file, linenum); /* edit it */
103 edit(char *file, char *linenum)
109 (void) sprintf(msg, "%s +%s %s", editor, linenum, file);
117 * get it to pause after displaying a file smaller
120 (void) execute(editor, editor, plusnum, file, "/dev/null",
123 (void) execute(editor, editor, plusnum, file, (char *)NULL);