/third_party/vk-gl-cts/scripts/ |
D | check_swiftshader_runtime.py | 344 with open(result_file, "w") as log_file: 345 log_file.write("New passes:\n") 347 log_file.write(line + "\n") 348 log_file.write("\n") 350 log_file.write("New fails:\n") 352 log_file.write(line + "\n") 353 log_file.write("\n") 355 log_file.write("New crashes:\n") 357 log_file.write(line + "\n") 358 log_file.write("\n") [all …]
|
/third_party/node/deps/v8/tools/ |
D | windows-tick-processor.bat | 6 SET log_file=v8.log 12 IF NOT %arg1:~0,2% == 1 (IF NOT %arg1:~0,2% == 1- SET log_file=%1) 14 IF NOT %arg2:~0,2% == 2 (IF NOT %arg2:~0,2% == 2- SET log_file=%2) 16 IF NOT %arg3:~0,2% == 3 (IF NOT %arg3:~0,2% == 3- SET log_file=%3) 18 IF NOT %arg4:~0,2% == 4 (IF NOT %arg4:~0,2% == 4- SET log_file=%4) 20 IF NOT %arg5:~0,2% == 5 (IF NOT %arg5:~0,2% == 5- SET log_file=%5) 22 IF NOT %arg6:~0,2% == 6 (IF NOT %arg6:~0,2% == 6- SET log_file=%6) 24 IF NOT %arg7:~0,2% == 7 (IF NOT %arg7:~0,2% == 7- SET log_file=%7) 26 IF NOT %arg8:~0,2% == 8 (IF NOT %arg8:~0,2% == 8- SET log_file=%8) 28 IF NOT %arg9:~0,2% == 9 (IF NOT %arg9:~0,2% == 9- SET log_file=%9) [all …]
|
D | dump-cpp.py | 28 log_file = 'v8.log' variable 36 log_file = arg variable 41 with open(log_file, 'r') as f: 48 print('d8 binary path found in {} is not executable.'.format(log_file)) 51 print('No d8 binary path found in {}.'.format(log_file)) 56 with open(log_file) as f: 70 with open(log_file, 'w') as f:
|
D | ic-processor | 4 log_file="v8.log" 8 log_file=${arg} 26 d8_exec=`grep -m 1 -o '".*/d8"' $log_file | sed 's/"//g'` 36 cat $log_file | $d8_exec \
|
D | linux-tick-processor | 4 log_file="v8.log" 8 log_file=${arg} 26 d8_exec=`grep -m 1 -o '".*/d8"' $log_file | sed 's/"//g'` 36 cat $log_file | $d8_exec --enable-os-system \
|
D | parse-processor | 4 log_file="v8.log" 8 log_file=${arg} 26 d8_exec=`grep -m 1 -o '".*/d8"' $log_file | sed 's/"//g'` 36 cat $log_file | $d8_exec --allow-natives-syntax \
|
/third_party/curl/ |
D | test-driver | 56 log_file= # Where to save the output of the test script. 66 --log-file) log_file=$2; shift;; 80 test x"$log_file" = x && missing_opts="$missing_opts --log-file" 111 : >"$log_file" 112 "$@" >>"$log_file" 2>&1 134 echo "$res $test_name (exit status: $estatus)" >>"$log_file"
|
/third_party/libevdev/build-aux/ |
D | test-driver | 56 log_file= # Where to save the output of the test script. 66 --log-file) log_file=$2; shift;; 80 test x"$log_file" = x && missing_opts="$missing_opts --log-file" 111 : >"$log_file" 112 "$@" >>"$log_file" 2>&1 134 echo "$res $test_name (exit status: $estatus)" >>"$log_file"
|
/third_party/cef/libcef/common/alloy/ |
D | alloy_main_delegate.cc | 167 base::FilePath log_file; in BasicStartupComplete() local 169 if (settings_->log_file.length > 0) in BasicStartupComplete() 170 log_file = base::FilePath(CefString(&settings_->log_file)); in BasicStartupComplete() 171 if (log_file.empty() && command_line->HasSwitch(switches::kLogFile)) { in BasicStartupComplete() 172 log_file = command_line->GetSwitchValuePath(switches::kLogFile); in BasicStartupComplete() 173 if (!log_file.empty()) in BasicStartupComplete() 176 if (log_file.empty()) in BasicStartupComplete() 177 log_file = resource_util::GetDefaultLogFilePath(); in BasicStartupComplete() 178 DCHECK(!log_file.empty()); in BasicStartupComplete() 180 command_line->AppendSwitchPath(switches::kLogFile, log_file); in BasicStartupComplete() [all …]
|
/third_party/skia/third_party/externals/libpng/ |
D | test-driver | 54 log_file= # Where to save the output of the test script. 64 --log-file) log_file=$2; shift;; 78 test x"$log_file" = x && missing_opts="$missing_opts --log-file" 107 "$@" >$log_file 2>&1 129 echo "$res $test_name (exit status: $estatus)" >>$log_file
|
/third_party/libbpf/ci/managers/ |
D | travis_wait.bash | 34 local log_file="travis_wait_${$}.log" 36 "${cmd[@]}" &>"${log_file}" & 58 cat "${log_file}"
|
/third_party/skia/third_party/externals/microhttpd/ |
D | test-driver | 54 log_file= # Where to save the output of the test script. 64 --log-file) log_file=$2; shift;; 78 test x"$log_file" = x && missing_opts="$missing_opts --log-file" 107 "$@" >$log_file 2>&1
|
/third_party/mbedtls/tests/scripts/ |
D | psa_collect_statuses.py | 89 if not options.use_existing_log and os.path.exists(options.log_file): 90 os.remove(options.log_file) 91 if not os.path.exists(options.log_file): 106 data.collect_log(options.log_file)
|
D | check_files.py | 381 def __init__(self, log_file): argument 387 self.setup_logger(log_file) 401 def setup_logger(self, log_file, level=logging.INFO): argument 404 if log_file: 405 handler = logging.FileHandler(log_file) 443 integrity_check = IntegrityChecker(check_args.log_file)
|
/third_party/node/deps/v8/third_party/ittapi/src/ittnotify_refcol/ |
D | itt_refcol_impl.c | 48 char* log_file = log_file_name_generate(); in ref_col_init() local 53 sprintf(file_name_buffer,"%s\\%s", log_dir, log_file); in ref_col_init() 55 sprintf(file_name_buffer,"%s/%s", log_dir, log_file); in ref_col_init() 64 sprintf(file_name_buffer,"%s\\%s", temp_dir, log_file); in ref_col_init() 67 sprintf(file_name_buffer,"/tmp/%s", log_file); in ref_col_init()
|
/third_party/ltp/testcases/realtime/scripts/ |
D | parser.py | 35 log_file=filename 37 self.__log_file = open(log_file, "r")
|
/third_party/skia/infra/bots/recipes/ |
D | upload_dm_results.py | 72 log_file = results_dir.join(VERBOSE_LOG) 79 if log_file in files: 80 api.gsutil.cp('verbose.log', log_file,
|
/third_party/ltp/testcases/realtime/func/pi-tests/ |
D | parse-testpi1.py | 55 log_file = sys.argv[1] 56 log = TestPi1(log_file)
|
D | parse-testpi2.py | 63 log_file=sys.argv[1] 64 log = TestPi2(log_file)
|
/third_party/ltp/testcases/kernel/mce-test/stress/tools/page-poisoning/ |
D | page-poisoning.c | 86 static char log_file[PATH_MAX]; variable 770 log_fd = fopen(log_file, "w"); in setup_log() 772 log_fd = fopen(log_file, "a"); in setup_log() 774 err("cannot open log file: %s\n", log_file); in setup_log() 835 snprintf(log_file, sizeof(log_file), "page-poisoning.log"); in main() 855 snprintf(log_file, sizeof(log_file), "%s", optarg); in main()
|
/third_party/gstreamer/gstreamer/gst/ |
D | gstinfo.c | 363 FILE *log_file; in _priv_gst_debug_init() local 369 log_file = stdout; in _priv_gst_debug_init() 372 log_file = g_fopen (name, "w"); in _priv_gst_debug_init() 374 if (log_file == NULL) { in _priv_gst_debug_init() 377 log_file = stderr; in _priv_gst_debug_init() 381 log_file = stderr; in _priv_gst_debug_init() 384 gst_debug_add_log_function (gst_debug_log_default, log_file, NULL); in _priv_gst_debug_init() 1327 FILE *log_file = user_data ? user_data : stderr; in gst_debug_log_default() local 1367 FPRINTF_DEBUG (log_file, "%" GST_TIME_FORMAT PRINT_FMT, in gst_debug_log_default() 1372 FFLUSH_DEBUG (log_file); in gst_debug_log_default() [all …]
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/hostapd/ |
D | ap_main.c | 655 const char *log_file = NULL; in ap_main() local 723 log_file = optarg; in ap_main() 790 if (log_file) in ap_main() 791 wpa_debug_open_file(log_file); in ap_main() 792 if (!log_file && !wpa_debug_syslog) in ap_main() 943 if (log_file) in ap_main()
|
/third_party/selinux/secilc/docs/ |
D | cil_container_statements.md | 169 (type log_file) 170 (typeattributeset file_type (log_file)) 171 (typeattributeset data_file_type (log_file)) 172 (allow process log_file (dir (write search create setattr add_name))) 173 (allow process log_file (file (create open append getattr setattr))) 174 (roletype object_r log_file) 175 (context log_file_context (u object_r log_file low_low))
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/hostapd/ |
D | ap_main.c | 647 const char *log_file = NULL; in ap_main() local 709 log_file = optarg; in ap_main() 776 if (log_file) in ap_main() 777 wpa_debug_open_file(log_file); in ap_main() 925 if (log_file) in ap_main()
|
/third_party/cef/libcef/browser/devtools/ |
D | devtools_frontend.cc | 133 void LogProtocolMessage(const base::FilePath& log_file, in LogProtocolMessage() argument 141 if (storage::NativeFileUtil::EnsureFileExists(log_file, nullptr) != in LogProtocolMessage() 143 LOG(ERROR) << "Failed to create file " << log_file.value(); in LogProtocolMessage() 165 if (!base::AppendToFile(log_file, base::StringPiece(str))) { in LogProtocolMessage() 166 LOG(ERROR) << "Failed to write file " << log_file.value(); in LogProtocolMessage()
|