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

  /src/sys/compat/sys/
syslog.h 35 int log_file; member in struct:syslog_data60
  /src/external/bsd/tmux/dist/
log.c 29 static FILE *log_file; variable
64 log_file = fopen(path, "a");
66 if (log_file == NULL)
69 setvbuf(log_file, NULL, _IOLBF, 0);
92 if (log_file != NULL)
93 fclose(log_file);
94 log_file = NULL;
106 if (log_file == NULL)
118 if (fprintf(log_file, "%lld.%06d %s%s\n", (long long)tv.tv_sec,
120 fflush(log_file);
    [all...]
  /src/crypto/external/bsd/heimdal/dist/lib/hdb/
dbinfo.c 44 char *log_file; member in struct:hdb_dbinfo
81 p = krb5_config_get_string(context, db_binding, "log_file", NULL);
83 di->log_file = strdup(p);
218 return dbp->log_file;
239 free (di->log_file);
  /src/external/bsd/nsd/dist/
util.h 81 log_function_type log_file; variable
85 * using log_file.
95 * Set the logging function to use (log_file or log_syslog).
util.c 66 static log_function_type *current_log_function = log_file;
147 log_file(int priority, const char *message) function
218 log_file(priority, message);
228 log_file(priority, message);
  /src/external/gpl3/gdb/dist/gdb/python/lib/gdb/dap/
startup.py 158 log_file = None variable in class:LoggingParam
169 if self.log_file is not None:
170 self.log_file.close()
171 self.log_file = None
173 self.log_file = open(self.value, "w")
183 if dap_log.log_file is not None and level <= _log_level.value:
184 print(something, file=dap_log.log_file)
185 dap_log.log_file.flush()
201 if dap_log.log_file is not None and level <= _log_level.value:
202 traceback.print_exc(file=dap_log.log_file)
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/python/lib/gdb/dap/
startup.py 158 log_file = None variable in class:LoggingParam
169 if self.log_file is not None:
170 self.log_file.close()
171 self.log_file = None
173 self.log_file = open(self.value, "w")
183 if dap_log.log_file is not None and level <= _log_level.value:
184 print(something, file=dap_log.log_file)
185 dap_log.log_file.flush()
201 if dap_log.log_file is not None and level <= _log_level.value:
202 traceback.print_exc(file=dap_log.log_file)
    [all...]
  /src/crypto/external/bsd/heimdal/dist/lib/krb5/
log.c 211 log_file(const char *timestr, function
264 return krb5_addlog_func(context, fac, min, max, log_file, close_file, fd);
  /src/external/bsd/dhcpcd/dist/src/
logerr.c 61 FILE *log_file; member in struct:logctx
240 if (ctx->log_file != NULL &&
242 len = vlogprintf_r(ctx, ctx->log_file, fmt, args);
382 if (fd != -1 && ctx->log_file != NULL) {
383 fclose(ctx->log_file);
384 ctx->log_file = NULL;
460 if (ctx->log_file != NULL) {
461 fclose(ctx->log_file);
462 ctx->log_file = NULL;
474 if ((ctx->log_file = fopen(path, "ae")) == NULL
    [all...]
  /src/external/bsd/libbind/dist/include/isc/
logging.h 35 typedef enum { log_syslog, log_file, log_null } log_channel_type; enumerator in enum:__anon7157
  /src/external/bsd/unbound/dist/util/
log.c 163 void log_file(FILE *f) function
  /src/sys/sys/
syslog.h 180 int log_file; member in struct:syslog_data
192 .log_file = -1, \
  /src/external/bsd/wpa/dist/hostapd/
main.c 769 const char *log_file = NULL; local
831 log_file = optarg;
900 if (log_file)
901 wpa_debug_open_file(log_file);
902 if (!log_file && !wpa_debug_syslog)
1054 if (log_file)
  /src/crypto/external/bsd/heimdal/dist/lib/kadm5/
private.h 88 char *log_file; member in struct:kadm5_log_context
  /src/external/gpl2/lvm2/dist/lib/commands/
toolcontext.c 128 const char *log_file; local
173 log_file = find_config_tree_str(cmd, "log/file", 0);
175 if (log_file) {
178 init_log_file(log_file, append);
181 log_file = find_config_tree_str(cmd, "log/activate_file", 0);
182 if (log_file)
183 init_log_direct(log_file, append);
  /src/external/gpl2/mkhybrid/dist/
mkisofs.c 343 '\0', "LOG_FILE", "Re-direct messages to LOG_FILE", ONE_DASH },
831 char *log_file = 0; local
983 log_file = optarg;
1317 if (log_file) {
1322 if ((lfp = fopen(log_file, "w")) == NULL) {
1323 fprintf(stderr,"can't open logfile: %s\n", log_file);
1328 /* redirect all stderr message to log_file */
1329 fprintf(stderr, "re-directing all messages to %s\n", log_file);
1333 if (freopen(log_file, "w", stderr) == NULL)
    [all...]

Completed in 32 milliseconds