HomeSort by relevance Sort by last modified time
    Searched refs:log_file (Results 26 - 50 of 78) sorted by null

12 3 4

  /external/chromium_org/chrome/test/logging/win/
log_file_reader.h 70 // Reads |log_file|, invoking appropriate methods on |delegate| as events are
74 void ReadLogFile(const base::FilePath& log_file, LogFileDelegate* delegate);
file_logger.cc 149 bool FileLogger::StartLogging(const base::FilePath& log_file) {
152 log_file.value().c_str(), false);
166 LOG(ERROR) << "Failed to start trace session to file " << log_file.value()
log_file_printer.cc 242 void logging_win::PrintLogFile(const base::FilePath& log_file,
245 logging_win::ReadLogFile(log_file, &printer);
  /external/chromium_org/chrome/common/
logging_chrome.cc 244 settings.log_file = log_path.value().c_str();
296 settings.log_file = log_path.value().c_str();
402 std::ifstream log_file; local
403 log_file.open(GetLogFileName().value().c_str());
404 if (!log_file.is_open())
409 while (!log_file.eof()) {
410 getline(log_file, utf8_line);
418 log_file.close();
  /external/dnsmasq/src/
log.c 70 if (daemon->log_file)
78 if (!log_reopen(daemon->log_file))
104 int log_reopen(char *log_file)
111 if (log_file)
113 log_fd = open(log_file, O_WRONLY|O_CREAT|O_APPEND, S_IRUSR|S_IWUSR|S_IRGRP);
  /external/llvm/utils/crosstool/ARM/
build-install-linux.sh 84 local log_file="$2"
86 echo "=> $message; log in $log_file"
89 # e.g.: xterm -e /bin/bash -c "$* >| tee $log_file"
90 $* &> $log_file
  /external/chromium_org/tools/
ipc_messages_log.py 161 for log_file in log_files:
162 _ProcessLog(open(log_file), msg_map)
  /development/ndk/platforms/android-3/include/
syslog.h 90 int log_file; member in struct:syslog_data
  /external/chromium_org/net/tools/tld_cleanup/
tld_cleanup.cc 63 settings.log_file = log_filename.value().c_str();
  /external/chromium_org/tools/android/forwarder2/
daemon.cc 42 void InitLoggingForDaemon(const std::string& log_file) {
45 log_file.empty() ?
47 settings.log_file = log_file.c_str();
  /external/chromium_org/components/test/data/password_manager/
tests.py 430 parser.add_argument("--log-file", action="store", dest="log_file",
455 log_file = None variable
456 if args.log_file:
457 log_file = args.log_file[0] variable
472 log_file,
485 log_file,
environment.py 50 numeric_level=None, log_to_console=False, log_file=""):
62 log_file: The file where to store the log. If it's empty, the log will
71 if log_file:
74 filename=log_file,
  /external/chromium_org/tools/site_compare/commands/
compare2.py 105 log_file = open(command["--logfile"], "w")
167 log_file.write("%s %s %s %s\n" % (url,
  /external/chromium_org/extensions/shell/app/
shell_main_delegate.cc 40 settings.log_file = log_filename.value().c_str();
  /external/chromium_org/sync/tools/testserver/
run_sync_testserver.cc 81 settings.log_file = FILE_PATH_LITERAL("sync_testserver.log");
  /external/fio/
iolog.h 110 extern void log_file(struct thread_data *, struct fio_file *, enum file_log_act);
iolog.c 38 void log_file(struct thread_data *td, struct fio_file *f, function
512 log_file(td, ff, FIO_LOG_ADD_FILE);
639 const char *log_file, const char *name, int try)
646 if (log_file)
647 ret = finish_log_named(td, log, log_file, name, try);
  /external/lldb/test/functionalities/register/
TestRegisters.py 80 if os.path.exists(self.log_file):
81 os.remove(self.log_file)
92 self.log_file = os.path.join(os.getcwd(), 'TestRegisters.log')
93 self.runCmd("log enable " + self.platform + " " + str(category) + " registers -v -f " + self.log_file, RUN_SUCCEEDED)
  /external/chromium_org/google_apis/gcm/tools/
mcs_probe.cc 358 FILE* log_file = NULL; local
362 log_file = _wfopen(log_path.value().c_str(), L"w");
364 log_file = fopen(log_path.value().c_str(), "w");
368 if (log_file != NULL) {
369 logger_.reset(new net::NetLogLogger(log_file, *net_constants_));
  /external/chromium_org/third_party/webrtc/system_wrappers/source/
data_log_unittest.cc 46 // Verifies that the log table stored in the file "log_file" corresponds to
48 static int VerifyTable(FILE* log_file, const ExpectedValuesMap& columns) {
51 char* ret = fgets(line_buffer, kMaxLineLength, log_file);
58 while (fgets(line_buffer, kMaxLineLength, log_file) != NULL) {
  /external/chromium_org/net/tools/testserver/
run_testserver.cc 33 settings.log_file = FILE_PATH_LITERAL("testserver.log");
  /external/fio/os/windows/
posix.c 326 static HANDLE log_file = INVALID_HANDLE_VALUE; variable
330 if (log_file == INVALID_HANDLE_VALUE)
331 log_file = CreateFileA("syslog.txt", GENERIC_WRITE, FILE_SHARE_READ | FILE_SHARE_WRITE, NULL, OPEN_ALWAYS, 0, NULL);
336 CloseHandle(log_file);
337 log_file = INVALID_HANDLE_VALUE;
347 if (log_file == INVALID_HANDLE_VALUE) {
348 log_file = CreateFileA("syslog.txt", GENERIC_WRITE, FILE_SHARE_READ | FILE_SHARE_WRITE, NULL, OPEN_ALWAYS, 0, NULL);
351 if (log_file == INVALID_HANDLE_VALUE) {
360 WriteFile(log_file, output, len, &bytes_written, NULL);
  /external/lldb/tools/debugserver/source/
debugserver.cpp 830 FILE* log_file = NULL; local
    [all...]
  /external/chromium_org/tools/cygprofile/
symbolize.py 190 parser = optparse.OptionParser('usage: %prog [options] log_file lib_file')
199 parser.error('expected 2 args: log_file lib_file')
201 (log_file, lib_file) = args
205 log_file_lines = map(string.rstrip, open(log_file).readlines())
  /external/chromium_org/tools/telemetry/telemetry/core/platform/power_monitor/
ippet_power_monitor.py 169 log_file = os.path.join(self._output_dir, 'ippet_log_processes.xls')
171 with open(log_file, 'r') as f:

Completed in 2015 milliseconds

12 3 4