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

12

/external/chromium_org/tools/gyp/test/target/
H A Dgyptest-target.py29 log_file = "obj\\hello1\\hello1.log" variable
30 test.built_file_must_exist(log_file)
31 test.built_file_must_not_contain(log_file, "MSB8012")
33 log_file = "obj\\hello2\\hello2.log" variable
34 test.built_file_must_exist(log_file)
35 test.built_file_must_not_contain(log_file, "MSB8012")
/external/chromium_org/base/test/
H A Dperf_log.cc14 bool InitPerfLog(const FilePath& log_file) { argument
21 perf_log_file = OpenFile(log_file, "w");
/external/chromium_org/chrome/tools/crash_service/
H A Dmain.cc49 base::FilePath log_file = operating_dir.Append(kStandardLogFile); local
55 settings.log_file = log_file.value().c_str();
/external/chromium_org/sandbox/win/tools/finder/
H A Dmain.cc31 ATL::CString log_file; local
100 log_file = argv[i];
130 if (log_file.GetLength()) {
131 errno_t err = _wfopen_s(&file_output, log_file, L"w");
133 wprintf(L"\nAbord, Cannot open file \"%ls\"", log_file.GetBuffer());
/external/chromium_org/chrome/installer/util/
H A Dlogging_installer.cc33 TruncateResult TruncateLogFileIfNeeded(const base::FilePath& log_file) { argument
37 if (base::GetFileSize(log_file, &log_size) &&
44 base::File old_log_file(log_file, file_flags);
48 base::FilePath tmp_log(log_file.value() + FILE_PATH_LITERAL(".tmp"));
50 if (base::Move(log_file, tmp_log)) {
57 (bytes_read == base::WriteFile(log_file, &old_log_data[0],
59 base::PathExists(log_file))) {
63 } else if (base::DeleteFile(log_file, false)) {
91 settings.log_file = log_file_path.value().c_str();
/external/chromium_org/sandbox/win/sandbox_poc/
H A Dsandbox.cc20 base::string16 * log_file) {
23 DCHECK(log_file);
24 if (!dll_name || !entry_point || !log_file)
42 *log_file = arg_list[3];
129 base::string16 log_file; local
133 &log_file)) {
139 HANDLE pipe = ::CreateFile(log_file.c_str(),
17 ParseCommandLine(wchar_t * command_line, std::string * dll_name, std::string * entry_point, base::string16 * log_file) argument
H A Dmain_ui_window.cc324 wchar_t log_file[MAX_PATH]; local
330 ::GetWindowText(edit_log_file, log_file, MAX_PATH);
357 log_file_ = base::string16(L"\"") + log_file + base::string16(L"\"");
/external/lldb/tools/lldb-platform/
H A Dlldb-platform.cpp145 FILE *log_file = fopen(optarg, "w"); local
146 if (log_file)
148 setlinebuf(log_file);
149 log_stream_sp.reset (new StreamFile (log_file, true));
/external/chromium_org/chrome/test/logging/win/
H A Dfile_logger.cc149 bool FileLogger::StartLogging(const base::FilePath& log_file) { argument
152 log_file.value().c_str(), false);
166 LOG(ERROR) << "Failed to start trace session to file " << log_file.value()
H A Dlog_file_reader.cc68 static void ReadFile(const base::FilePath& log_file,
98 void Read(const base::FilePath& log_file);
227 void LogFileReader::Read(const base::FilePath& log_file) { argument
231 hr = consumer.OpenFileSession(log_file.value().c_str());
233 LOG(ERROR) << "Failed to open session for log file " << log_file.value()
242 void LogFileReader::ReadFile(const base::FilePath& log_file, argument
246 LogFileReader(delegate).Read(log_file);
257 void ReadLogFile(const base::FilePath& log_file, LogFileDelegate* delegate) { argument
259 LogFileReader::ReadFile(log_file, delegate);
H A Dlog_file_printer.cc242 void logging_win::PrintLogFile(const base::FilePath& log_file, argument
245 logging_win::ReadLogFile(log_file, &printer);
/external/chromium_org/chromecast/shell/app/
H A Dcast_main_delegate.cc34 base::FilePath log_file; local
35 PathService::Get(FILE_CAST_ANDROID_LOG, &log_file);
37 settings.log_file = log_file.value().c_str();
/external/chromium_org/third_party/webrtc/system_wrappers/source/
H A Ddata_log_unittest.cc46 // Verifies that the log table stored in the file "log_file" corresponds to
48 static int VerifyTable(FILE* log_file, const ExpectedValuesMap& columns) { argument
51 char* ret = fgets(line_buffer, kMaxLineLength, log_file);
58 while (fgets(line_buffer, kMaxLineLength, log_file) != NULL) {
/external/lldb/examples/python/
H A Ddisasm-stress-test.py56 def ResetLogFile(log_file):
57 if log_file != sys.stdout:
58 log_file.seek(0)
60 def PrintByteArray(log_file, byte_array):
62 print >>log_file, hex(byte) + " ",
63 print >>log_file
66 def __init__(self, byte_width, log_file, start=0, skip=1):
68 self.m_log_file = log_file
97 def __init__(self, byte_width, log_file):
99 self.m_log_file = log_file
118 log_file = None variable
[all...]
/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_org/chrome/common/
H A Dlogging_chrome.cc244 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/chromium_org/components/test/data/password_manager/
H A Dtests.py430 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,
/external/chromium_org/media/cast/test/
H A Dsender.cc167 base::ScopedFILE log_file) {
186 int ret = fwrite(event_log.get(), 1, event_log_bytes, log_file.get());
164 DumpLoggingData(const media::cast::proto::LogMetadata& log_metadata, const media::cast::FrameEventList& frame_events, const media::cast::PacketEventList& packet_events, base::ScopedFILE log_file) argument
/external/chromium_org/third_party/libvpx/source/libvpx/build/make/
H A Dconfigure.sh42 log_file(){ function
292 log_file ${TMP_C}
299 log_file ${TMP_CC}
306 log_file ${TMP_C}
373 log_file ${TMP_ASM}
376 log_file ${TMP_X}
/external/chromium_org/tools/android/forwarder2/
H A Ddaemon.cc42 void InitLoggingForDaemon(const std::string& log_file) { argument
45 log_file.empty() ?
47 settings.log_file = log_file.c_str();
/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);
/external/libvpx/libvpx/build/make/
H A Dconfigure.sh42 log_file(){ function
292 log_file ${TMP_C}
299 log_file ${TMP_CC}
306 log_file ${TMP_C}
373 log_file ${TMP_ASM}
376 log_file ${TMP_X}
/external/lldb/source/Commands/
H A DCommandObjectLog.cpp122 log_file (),
141 case 'f': log_file.SetFile(option_arg, true); break;
161 log_file.Clear();
177 FileSpec log_file; member in class:CommandObjectLogEnable::CommandOptions
194 char log_file[PATH_MAX]; local
195 if (m_options.log_file)
196 m_options.log_file.GetPath(log_file, sizeof(log_file));
198 log_file[
[all...]
/external/wpa_supplicant_8/hostapd/
H A Dmain.c546 const char *log_file = NULL; local
588 log_file = optarg;
642 if (log_file)
643 wpa_debug_open_file(log_file);
756 if (log_file)
/external/chromium_org/google_apis/gcm/tools/
H A Dmcs_probe.cc358 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_));

Completed in 1073 milliseconds

12