HomeSort by: relevance | last modified time | path
    Searched defs:logfile (Results 1 - 6 of 6) sorted by relevancy

  /src/games/larn/
config.c 27 char logfile[] = _PATH_LOG; variable in typeref:typename:char[]
  /src/games/dm/
dm.c 80 static void logfile(void);
99 logfile();
297 * logfile --
301 logfile(void) function in typeref:typename:void
  /src/sys/external/bsd/compiler_rt/dist/lib/asan/scripts/
asan_symbolize.py 25 logfile = sys.stdin variable
443 for line in logfile:
499 parser.add_argument('-l','--logfile', default=sys.stdin,
514 if args.logfile:
515 logfile = args.logfile variable
517 logfile = sys.stdin
  /src/usr.sbin/lastlogin/
lastlogin.c 134 const char *logfile = local in function:main
151 logfile = optarg;
187 len = strlen(logfile);
192 if (len > 0 && logfile[len - 1] == 'x')
193 dolastlogx(logfile, argc, argv);
197 dolastlog(logfile, argc, argv);
217 dolastlog(const char *logfile, int argc, char **argv)
220 FILE *fp = fopen(logfile, "r");
225 err(1, "%s", logfile);
301 dolastlogx(const char *logfile, int argc, char **argv
    [all...]
  /src/games/snake/snake/
snake.c 113 static FILE *logfile; variable in typeref:typename:FILE *
152 logfile = fopen(SNAKE_PATH_LOGFILE, "a");
153 if (logfile == NULL) {
995 if (logfile != NULL) {
997 fprintf(logfile, "%s $%d %dx%d %s %s",
999 fflush(logfile);
  /src/usr.bin/newsyslog/
newsyslog.c 91 #define CE_BINARY 0x02 /* Logfile is a binary file/non-syslog */
110 char logfile[MAXPATHLEN]; /* Path to log file */ member in struct:conf_entry
221 if (strcmp(log.logfile, argv[i]) == 0)
277 (void)strlcpy(log->logfile, *ap++, sizeof(log->logfile));
278 if (log->logfile[0] != '/')
280 "config line %d: logfile must have a full path", lineno);
438 PRHDRINFO(("\n%s <%d%s>: ", log->logfile, log->numhist,
442 * stat() the logfile. If it doesn't exist and the `c' flag has
446 if (stat(log->logfile, &sb) < 0)
    [all...]

Completed in 13 milliseconds