HomeSort by relevance Sort by last modified time
    Searched defs:logfile (Results 1 - 13 of 13) sorted by null

  /external/e2fsprogs/intl/
log.c 58 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_plural ")
    [all...]
  /external/chromium/base/win/
event_trace_consumer.h 90 EVENT_TRACE_LOGFILE logfile = {}; local
91 logfile.LoggerName = const_cast<wchar_t*>(session_name);
92 logfile.LogFileMode = EVENT_TRACE_REAL_TIME_MODE;
93 logfile.BufferCallback = &ProcessBufferCallback;
94 logfile.EventCallback = &ProcessEventCallback;
95 logfile.Context = this;
96 TRACEHANDLE trace_handle = ::OpenTrace(&logfile);
107 EVENT_TRACE_LOGFILE logfile = {}; local
108 logfile.LogFileName = const_cast<wchar_t*>(file_name);
109 logfile.BufferCallback = &ProcessBufferCallback
    [all...]
  /external/chromium_org/base/win/
event_trace_consumer.h 89 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.BufferCallback = &ProcessBufferCallback
    [all...]
  /external/ipsec-tools/src/racoon/
plog.c 79 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/chrome/browser/
crash_handler_host_linux.cc 405 FILE* logfile = fopen(log_filename.c_str(), "w"); local
406 CHECK(logfile);
407 fprintf(logfile, "%s", asan_report_str_);
408 fclose(logfile);
  /external/chromium_org/third_party/libxml/src/
runsuite.c 37 #define LOGFILE "runsuite.log"
38 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
    [all...]
  /external/stressapptest/src/
sat.h 84 int logfile() const { return logfile_; } function in class:Sat
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
cgi.py 68 logfile = "" # Filename to log to, if not empty variable
87 If the global logfp is None, the global logfile may be a string
95 if logfile and not logfp:
97 logfp = open(logfile, "a")
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
cgi.py 68 logfile = "" # Filename to log to, if not empty variable
87 If the global logfp is None, the global logfile may be a string
95 if logfile and not logfp:
97 logfp = open(logfile, "a")
    [all...]
  /hardware/invensense/60xx/libsensors_iio/
MPLSensor.cpp 144 static FILE *logfile = NULL; variable
199 logfile = fopen("/data/playback.bin", "wb");
200 if (logfile)
201 inv_turn_on_data_logging(logfile);
691 fclose(logfile);
    [all...]
  /hardware/invensense/65xx/libsensors_iio/
MPLSensor.cpp 195 static FILE *logfile = NULL; variable
448 logfile = fopen("/data/playback.bin", "w+");
449 if (logfile)
450 inv_turn_on_data_logging(logfile);
    [all...]
  /external/chromium_org/chrome/app/
breakpad_linux.cc 652 base::FilePath logfile = dumps_path.Append( local
654 std::string logfile_str = logfile.value();
    [all...]
  /external/qemu/
exec.c 194 FILE *logfile; variable
    [all...]

Completed in 1254 milliseconds