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

1 2

  /external/autotest/client/bin/
sysinfo.py 9 logfile = base_sysinfo.logfile variable
site_sysinfo.py 18 logfile = base_sysinfo.logfile variable
283 logfile(os.path.join(constants.USER_DATA_DIR,
base_sysinfo.py 52 class logfile(loggable): class in inherits:loggable
57 super(logfile, self).__init__(logf, log_in_keyval)
62 r = "sysinfo.logfile(%r, %r, %r)"
68 if isinstance(other, logfile):
162 self.test_loggables.add(logfile(filename))
169 self.boot_loggables.add(logfile(filename))
178 logfile(fname, logf=os.path.basename(fname) + '.before'))
187 logfile(fname, logf=os.path.basename(fname) + '.after'))
198 self.boot_loggables.add(logfile("/proc/cmdline",
202 self.boot_loggables.add(logfile('/proc/mounts', logf='proc_mounts')
    [all...]
  /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...]
  /toolchain/binutils/binutils-2.25/intl/
log.c 64 FILE *logfile; local
66 /* Can we reuse the last opened logfile? */
69 /* Close the last used logfile. */
80 /* Open the logfile. */
89 logfile = last_logfile;
91 fprintf (logfile, "domain ");
92 print_escaped (logfile, domainname);
93 fprintf (logfile, "\nmsgid ");
94 print_escaped (logfile, msgid1);
97 fprintf (logfile, "\nmsgid_plural ")
    [all...]
  /external/libchrome/base/win/
event_trace_consumer.h 91 EVENT_TRACE_LOGFILE logfile = {}; local
92 logfile.LoggerName = const_cast<wchar_t*>(session_name);
93 logfile.LogFileMode = EVENT_TRACE_REAL_TIME_MODE;
94 logfile.BufferCallback = &ProcessBufferCallback;
95 logfile.EventCallback = &ProcessEventCallback;
96 logfile.Context = this;
97 TRACEHANDLE trace_handle = ::OpenTrace(&logfile);
108 EVENT_TRACE_LOGFILE logfile = {}; local
109 logfile.LogFileName = const_cast<wchar_t*>(file_name);
110 logfile.BufferCallback = &ProcessBufferCallback
    [all...]
  /external/curl/lib/
memdebug.h 33 #define logfile curl_debuglogfile macro
35 extern FILE *logfile;
memdebug.c 107 #define logfile curl_debuglogfile macro
115 if(!logfile) {
117 logfile = fopen(logname, FOPEN_WRITETEXT);
119 logfile = stderr;
122 setbuf(logfile, (char *)NULL);
151 fflush(logfile); /* because it might crash now */
468 if(!logfile)
483 fwrite(buf, 1, nchars, logfile);
  /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/compiler-rt/lib/asan/scripts/
asan_symbolize.py 25 logfile = sys.stdin variable
426 for line in logfile:
472 parser.add_argument('-l','--logfile', default=sys.stdin,
485 if args.logfile:
486 logfile = args.logfile
488 logfile = sys.stdin
  /external/libxml2/
runxmlconf.c 31 #define LOGFILE "runxmlconf.log"
32 static FILE *logfile = NULL; variable
113 if (logfile != NULL) {
114 fprintf(logfile, "\n------------\n");
116 vfprintf(logfile, msg, args);
118 fprintf(logfile, "%s", testErrors);
414 xmlMemDisplayLast(logfile, final - mem);
555 logfile = fopen(LOGFILE, "w");
556 if (logfile == NULL)
    [all...]
runsuite.c 34 #define LOGFILE "runsuite.log"
35 static FILE *logfile = NULL; variable
168 if (logfile != NULL) {
169 fprintf(logfile, "\n------------\n");
171 vfprintf(logfile, msg, args);
173 fprintf(logfile, "%s", testErrors);
1053 logfile = fopen(LOGFILE, "w");
1054 if (logfile == NULL) {
1163 if (logfile != NULL
    [all...]
  /external/dhcpcd-6.8.2/
dhcpcd.h 90 char *logfile; member in struct:dhcpcd_ctx
  /external/libvncserver/client_examples/
SDLvncviewer.c 329 FILE* logfile; local
344 logfile=fopen(logfile_str,"a");
350 fprintf(logfile,buf);
352 vfprintf(logfile, format, args);
353 fflush(logfile);
356 fclose(logfile);
  /external/toybox/toys/pending/
syslogd.c 14 usage: syslogd [-a socket] [-O logfile] [-f config file] [-m interval]
48 struct logfile { struct
49 struct logfile *next;
61 char *logfile;
69 struct logfile *lfiles; // list of write logfiles
96 * recurses the logfile list and resolves config
99 static int resolve_config(struct logfile *file, char *config)
155 struct logfile *file;
166 file = xzalloc(sizeof(struct logfile));
178 file = xzalloc(sizeof(struct logfile));
    [all...]
  /prebuilts/gdb/darwin-x86/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/gdb/linux-x86/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/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/65xx/libsensors_iio/
MPLSensor.cpp 195 static FILE *logfile = NULL; variable
491 logfile = fopen("/data/playback.bin", "w+");
492 if (logfile)
493 inv_turn_on_data_logging(logfile);
    [all...]
  /hardware/invensense/6515/libsensors_iio/
MPLSensor.cpp 81 static FILE *logfile = NULL; variable
412 logfile = fopen("/data/playback.bin", "w+");
413 if (logfile)
414 inv_turn_on_data_logging(logfile);
    [all...]
  /external/toybox/generated/
globals.h 420 char *logfile; member in struct:crond_data
745 char *logfile; member in struct:syslogd_data
753 struct logfile *lfiles; // list of write logfiles
  /prebuilts/tools/common/m2/repository/org/apache/velocity/velocity/1.5/
velocity-1.5.jar 
  /prebuilts/tools/common/m2/repository/org/apache/velocity/velocity/1.7/
velocity-1.7.jar 
  /prebuilts/tools/linux-x86_64/kythe/extractors/
javac_extractor.jar 

Completed in 942 milliseconds

1 2