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_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/tools/valgrind/asan/third_party/
asan_symbolize.py 27 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/
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/6515/libsensors_iio/
MPLSensor.cpp 71 static FILE *logfile = NULL; variable
384 logfile = fopen("/data/playback.bin", "w+");
385 if (logfile)
386 inv_turn_on_data_logging(logfile);
    [all...]
  /external/chromium_org/components/crash/app/
breakpad_linux.cc 635 base::FilePath logfile = local
637 std::string logfile_str = logfile.value();
    [all...]
  /external/qemu/
exec.c 89 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...]
  /hardware/invensense/65xx/libsensors_iio/
MPLSensor.cpp 195 static FILE *logfile = NULL; variable
495 logfile = fopen("/data/playback.bin", "w+");
496 if (logfile)
497 inv_turn_on_data_logging(logfile);
    [all...]

Completed in 1450 milliseconds