Home
last modified time | relevance | path

Searched refs:binbehave (Results 1 – 4 of 4) sorted by relevance

/freebsd/usr.bin/grep/
H A Dgrep.c111 int binbehave = BINFILE_BIN; /* -aIU: handling of binary files */ variable
427 binbehave = BINFILE_TEXT;
485 binbehave = BINFILE_SKIP;
540 binbehave = BINFILE_BIN;
566 binbehave = BINFILE_BIN;
568 binbehave = BINFILE_SKIP;
570 binbehave = BINFILE_TEXT;
H A Dgrep.h128 extern int binbehave, devbehave, dirbehave, filebehave, grepbehave, linkbehave;
H A Dutil.c352 if ((pc.binary && binbehave == BINFILE_BIN) || cflag || qflag || in procfile()
383 if (pc.binary && binbehave == BINFILE_SKIP) { in procfile()
421 binbehave == BINFILE_BIN && f->binary && !qflag) in procfile()
H A Dfile.c215 if (binbehave != BINFILE_TEXT && fileeol != '\0' && in grep_open()