Searched defs:logfile (Results 1 - 8 of 8) sorted by relevance

/external/e2fsprogs/intl/
H A Dlog.c58 FILE *logfile; local
60 /* Can we reuse the last opened logfile? */
63 /* Close the last used logfile. */
74 /* Open the logfile. */
83 logfile = last_logfile;
85 fprintf (logfile, "domain ");
86 print_escaped (logfile, domainname);
87 fprintf (logfile, "\nmsgid ");
88 print_escaped (logfile, msgid1);
91 fprintf (logfile, "\nmsgid_plura
[all...]
/external/chromium_org/base/win/
H A Devent_trace_consumer.h89 EVENT_TRACE_LOGFILE logfile = {}; local
90 logfile.LoggerName = const_cast<wchar_t*>(session_name);
91 logfile.LogFileMode = EVENT_TRACE_REAL_TIME_MODE;
92 logfile.BufferCallback = &ProcessBufferCallback;
93 logfile.EventCallback = &ProcessEventCallback;
94 logfile.Context = this;
95 TRACEHANDLE trace_handle = ::OpenTrace(&logfile);
106 EVENT_TRACE_LOGFILE logfile = {}; local
107 logfile.LogFileName = const_cast<wchar_t*>(file_name);
108 logfile
[all...]
/external/ipsec-tools/src/racoon/
H A Dplog.c79 static char *logfile = NULL; variable
108 if (logfile || f_foreground) {
167 if (logfile)
222 if (logfile) {
223 logp = log_open(250, logfile);
225 errx(1, "ERROR: failed to open log file %s.", logfile);
236 if (logfile != NULL)
237 racoon_free(logfile);
238 logfile = racoon_strdup(file);
239 STRDUP_FATAL(logfile);
[all...]
/external/chromium_org/tools/valgrind/asan/third_party/
H A Dasan_symbolize.py27 logfile = sys.stdin variable
381 line = logfile.readline()
424 parser.add_argument('-l','--logfile', default=sys.stdin, type=argparse.FileType('r'),
436 if args.logfile:
437 logfile = args.logfile
439 logfile = sys.stdin
/external/chromium_org/third_party/libxml/src/
H A Drunsuite.c38 static FILE *logfile = NULL; variable
180 if (logfile != NULL) {
181 fprintf(logfile, "\n------------\n");
183 vfprintf(logfile, msg, args);
185 fprintf(logfile, "%s", testErrors);
1065 logfile = fopen(LOGFILE, "w");
1066 if (logfile == NULL) {
1175 if (logfile != NULL)
1176 fclose(logfile);
/external/stressapptest/src/
H A Dsat.h84 int logfile() const { return logfile_; } function in class:Sat
/external/chromium_org/components/crash/app/
H A Dbreakpad_linux.cc635 base::FilePath logfile = local
637 std::string logfile_str = logfile.value();
/external/qemu/
H A Dexec.c89 FILE *logfile; variable
403 if (loglevel && !logfile) {
404 logfile = fopen(logfilename, log_append ? "a" : "w");
405 if (!logfile) {
413 setvbuf(logfile, logfile_buf, _IOLBF, sizeof(logfile_buf));
417 setvbuf(logfile, NULL, _IOLBF, 0);
421 if (!loglevel && logfile) {
422 fclose(logfile);
423 logfile = NULL;
430 if (logfile) {
[all...]

Completed in 356 milliseconds