Searched defs:log_file (Results 1 - 12 of 12) sorted by relevance

/external/chromium/base/
H A Dperftimer.cc17 bool InitPerfLog(const FilePath& log_file) { argument
24 perf_log_file = file_util::OpenFile(log_file, "w");
H A Dlogging.cc98 FileHandle log_file = NULL; member in namespace:logging
186 PathString log_file = module_name; local
188 log_file.rfind('\\', log_file.size());
190 log_file.erase(last_backslash + 1);
191 log_file += L"debug.log";
192 return log_file;
316 if (log_file)
328 log_file = CreateFile(log_file_name->c_str(), GENERIC_WRITE,
331 if (log_file
[all...]
H A Dlogging.h195 BASE_API bool BaseInitLoggingImpl(const PathChar* log_file,
211 inline bool InitLogging(const PathChar* log_file, argument
216 return BaseInitLoggingImpl(log_file, logging_dest, lock_log,
/external/webrtc/src/system_wrappers/source/
H A Ddata_log_unittest.cc45 // Verifies that the log table stored in the file "log_file" corresponds to
47 static int VerifyTable(FILE* log_file, const ExpectedValuesMap& columns) { argument
50 char* ret = fgets(line_buffer, kMaxLineLength, log_file);
57 while (fgets(line_buffer, kMaxLineLength, log_file) != NULL) {
/external/chromium/chrome/common/
H A Dlogging_chrome.cc424 std::ifstream log_file; local
425 log_file.open(GetLogFileName().value().c_str());
426 if (!log_file.is_open())
431 while (!log_file.eof()) {
432 getline(log_file, utf8_line);
440 log_file.close();
/external/chromium/googleurl/base/
H A Dlogging.cc56 HANDLE log_file = NULL; member in namespace:logging
82 if (log_file)
95 log_file = CreateFile(log_file_name, GENERIC_WRITE,
98 if (log_file == INVALID_HANDLE_VALUE || log_file == NULL) {
100 log_file = CreateFile(_T(".\\debug.log"), GENERIC_WRITE,
103 if (log_file == INVALID_HANDLE_VALUE || log_file == NULL) {
104 log_file = NULL;
108 SetFilePointer(log_file,
[all...]
/external/dnsmasq/src/
H A Dlog.c70 if (daemon->log_file)
78 if (!log_reopen(daemon->log_file))
104 int log_reopen(char *log_file) argument
111 if (log_file)
113 log_fd = open(log_file, O_WRONLY|O_CREAT|O_APPEND, S_IRUSR|S_IWUSR|S_IRGRP);
H A Ddnsmasq.h622 char *log_file; /* optional log file */ member in struct:daemon
757 int log_reopen(char *log_file);
/external/libvpx/build/make/
H A Dconfigure.sh42 log_file(){ function
276 log_file ${TMP_C}
283 log_file ${TMP_C}
333 log_file ${TMP_ASM}
336 log_file ${TMP_X}
/external/wpa_supplicant_8/hostapd/
H A Dmain.c541 const char *log_file = NULL; local
578 log_file = optarg;
609 if (log_file)
610 wpa_debug_open_file(log_file);
651 if (log_file)
/external/chromium/chrome/browser/chromeos/
H A Dboot_times_loader.cc111 FilePath log_file = log_dir.Append(log); local
114 if (file_util::ReadFileToString(log_file, &contents)) {
187 FilePath log_file = log_dir.Append(kFirmwareBootTime); local
188 if (!file_util::PathExists(log_file)) {
/external/valgrind/tsan/
H A Dthread_sanitizer.h65 string log_file; member in struct:FLAGS

Completed in 813 milliseconds