Lines Matching defs:fname
33 static void extract_fname_ftype(char *line, char *fname, char *type);
34 static int report_add(char *fname, char *type);
35 static int report_delete(char *fname, char *type);
38 static void report_error(char *fname, char *type, char *ctrl_val,
41 char **line, char *fname);
42 static void parse_line(char *line, char *fname, char *type, char *size,
229 parse_line(char *line, char *fname, char *type, char *size, char *mode,
238 get_token(line, &pos, line_len, fname, PATH_MAX);
280 * Utility function: extract fname and type from this line
283 extract_fname_ftype(char *line, char *fname, char *type)
290 get_token(line, &pos, line_len, fname, PATH_MAX);
301 report_add(char *fname, char *type)
305 rule_ptr = check_rules(fname, type[0]);
319 report_delete(char *fname, char *type)
323 rule_ptr = check_rules(fname, type[0]);
365 * Now we know the fname and type, let's get the rule that matches this
491 report_error(char *fname, char *type, char *ctrl_val, char *test_val,
498 if (strcmp(fname, last_fname) != 0) {
499 (void) printf("%s:\n", fname);
500 (void) strlcpy(last_fname, fname, sizeof (last_fname));
511 if (strcmp(fname, last_fname) != 0) {
515 (void) strlcpy(last_fname, fname, sizeof (last_fname));
516 (void) printf("%s ", fname);
536 char **line, char *fname)
554 (void) fprintf(stderr, MISSING_VER, fname);