/external/chromium-crossbench/crossbench/plt/ |
D | linux.py | 84 if result_path := self.which(app_or_bin_path): 85 if not self.exists(result_path): 87 return result_path 90 result_path = self.path(path) / app_or_bin_path 91 if self.exists(result_path): 92 return result_path 95 def screenshot(self, result_path: pth.AnyPath) -> None: 97 self.sh("gnome-screenshot", "--file", result_path)
|
D | macos.py | 102 if result_path := self.which(app_or_bin_path): 103 assert self.exists(result_path), f"{result_path} does not exist." 104 return result_path 110 result_path = self.path(search_path) / app_or_bin_path 112 is_app, result_path): 117 self, is_app: bool, result_path: pth.AnyPath) -> Optional[pth.AnyPath]: 119 if self.is_file(result_path): 120 return result_path 122 if not self.is_dir(result_path): 124 result_path = self._find_app_binary_path(result_path) [all …]
|
D | win.py | 57 if result_path := self.which(app_or_bin): 58 assert self.exists(result_path), f"{result_path} does not exist." 59 return result_path 62 result_path = self.path(path) / app_or_bin 63 if self.exists(result_path): 64 return result_path
|
/external/cronet/stable/third_party/boringssl/src/pki/ |
D | path_builder.cc | 884 const CertPathBuilderResultPath *result_path = GetBestPathPossiblyInvalid(); in GetBestValidPath() local 886 if (result_path && result_path->IsValid()) { in GetBestValidPath() 887 return result_path; in GetBestValidPath() 953 std::unique_ptr<CertPathBuilderResultPath> result_path = in Run() local 957 &result_path->certs, &result_path->last_cert_trust, in Run() 958 &result_path->errors, delegate_, &iteration_count, in Run() 961 if (result_path->errors.ContainsError( in Run() 965 if (result_path->errors.ContainsError(cert_errors::kDeadlineExceeded)) { in Run() 968 if (!result_path->certs.empty()) { in Run() 972 if (!result_path->errors.ContainsHighSeverityErrors()) { in Run() [all …]
|
/external/cronet/tot/third_party/boringssl/src/pki/ |
D | path_builder.cc | 884 const CertPathBuilderResultPath *result_path = GetBestPathPossiblyInvalid(); in GetBestValidPath() local 886 if (result_path && result_path->IsValid()) { in GetBestValidPath() 887 return result_path; in GetBestValidPath() 953 std::unique_ptr<CertPathBuilderResultPath> result_path = in Run() local 957 &result_path->certs, &result_path->last_cert_trust, in Run() 958 &result_path->errors, delegate_, &iteration_count, in Run() 961 if (result_path->errors.ContainsError( in Run() 965 if (result_path->errors.ContainsError(cert_errors::kDeadlineExceeded)) { in Run() 968 if (!result_path->certs.empty()) { in Run() 972 if (!result_path->errors.ContainsHighSeverityErrors()) { in Run() [all …]
|
/external/chromium-crossbench/crossbench/probes/ |
D | video.py | 188 result_path = result_dir / f"{story.name}_combined.mp4" 193 self.host_platform.copy(input_file, result_path) 194 return result_path 204 *self.VIDEO_QUALITY, result_path) 210 return result_path 255 f"{env_display}+{viewport.x},{viewport.y}", str(self.result_path)) 259 str(self.result_path)) 261 return ("screenrecord", str(self.result_path)) 283 if not self.browser_platform.is_file(self.result_path): 287 browser_result = self.browser_result(file=(self.result_path,)) [all …]
|
D | probe_context.py | 127 def result_path(self) -> AnyPath: member in BaseProbeContext 214 def result_path(self) -> AnyPath: member in ProbeContext 219 return self.host_platform.local_path(self.result_path) 299 def result_path(self) -> AnyPath: member in ProbeSessionContext
|
D | dump_html.py | 67 path = self.result_path / f"{label}.html" 75 if not self.browser_platform.is_dir(self.result_path):
|
/external/autotest/site_utils/lxc/ |
D | container_bucket.py | 210 result_path, argument 244 if not os.path.exists(result_path): 246 result_path) 247 result_path = os.path.abspath(result_path) 258 safe_control = os.path.join(result_path, control_file_name) 285 (result_path, 303 container.start(wait_for_network=True, log_dir=result_path)
|
/external/openscreen/cast/common/certificate/ |
D | cast_cert_validator.cc | 148 CertificatePathResult result_path = {}; in VerifyDeviceCert() local 149 Error error = FindCertificatePath(der_certs, time, &result_path, trust_store); in VerifyDeviceCert() 155 !crl->CheckRevocation(result_path.path, time)) { in VerifyDeviceCert() 159 *policy = GetAudioPolicy(result_path.path); in VerifyDeviceCert() 164 X509_get_subject_name(result_path.target_cert.get()); in VerifyDeviceCert() 181 bssl::UniquePtr<EVP_PKEY>{X509_get_pubkey(result_path.target_cert.get())}, in VerifyDeviceCert()
|
D | cast_crl.cc | 78 CertificatePathResult result_path = {}; in VerifyCRL() local 80 FindCertificatePath({crl.signer_cert()}, time, &result_path, trust_store); in VerifyCRL() 86 X509_get_pubkey(result_path.target_cert.get())}; in VerifyCRL() 112 X509_get0_notAfter(result_path.target_cert.get()), nullptr)}; in VerifyCRL()
|
/external/cronet/tot/net/tools/cert_verify_tool/ |
D | verify_using_path_builder.cc | 81 void PrintResultPath(const bssl::CertPathBuilderResultPath* result_path, in PrintResultPath() argument 85 << (result_path->IsValid() ? "valid" : "invalid") in PrintResultPath() 89 for (const auto& cert : result_path->certs) { in PrintResultPath() 95 if (!result_path->user_constrained_policy_set.empty()) { in PrintResultPath() 97 for (const auto& policy : result_path->user_constrained_policy_set) { in PrintResultPath() 111 result_path->errors.ToDebugString(result_path->certs); in PrintResultPath()
|
/external/cronet/stable/net/tools/cert_verify_tool/ |
D | verify_using_path_builder.cc | 81 void PrintResultPath(const bssl::CertPathBuilderResultPath* result_path, in PrintResultPath() argument 85 << (result_path->IsValid() ? "valid" : "invalid") in PrintResultPath() 89 for (const auto& cert : result_path->certs) { in PrintResultPath() 95 if (!result_path->user_constrained_policy_set.empty()) { in PrintResultPath() 97 for (const auto& policy : result_path->user_constrained_policy_set) { in PrintResultPath() 111 result_path->errors.ToDebugString(result_path->certs); in PrintResultPath()
|
/external/tensorflow/tensorflow/compiler/xla/stream_executor/gpu/ |
D | asm_compiler.cc | 365 std::string result_path; in BundleGpuAsm() local 366 if (!env->LocalTempFilename(&result_path)) { in BundleGpuAsm() 370 absl::Cleanup result_file_cleaner = [&result_path] { in BundleGpuAsm() 373 tensorflow::Env::Default()->DeleteFile(result_path).IgnoreError(); in BundleGpuAsm() 384 absl::StrCat("--create=", result_path)}; in BundleGpuAsm() 417 result_path, &result_blob)); in BundleGpuAsm() 470 std::string result_path; in BundleGpuAsm() local 471 if (!env->LocalTempFilename(&result_path)) { in BundleGpuAsm() 475 absl::Cleanup result_file_cleaner = [&result_path] { in BundleGpuAsm() 478 tensorflow::Env::Default()->DeleteFile(result_path).IgnoreError(); in BundleGpuAsm() [all …]
|
/external/pytorch/benchmarks/dynamo/pr_time_benchmarks/benchmarks/ |
D | add_loop.py | 45 result_path = sys.argv[1] 48 ).enable_compile_time_instruction_count().collect_all().append_results(result_path) 51 ).enable_compile_time_instruction_count().collect_all().append_results(result_path)
|
D | sum_floordiv.py | 34 result_path = sys.argv[1] 35 Benchmark().enable_instruction_count().collect_all().append_results(result_path)
|
D | update_hint_benchmark.py | 44 result_path = sys.argv[1] 46 result_path
|
/external/grpc-grpc/test/core/security/ |
D | system_roots_test.cc | 61 char result_path[MAXPATHLEN]; in TEST() local 62 grpc_core::GetAbsoluteFilePath(directory, filename, result_path); in TEST() 63 EXPECT_STREQ(result_path, "nonexistent/test/directory/doesnotexist.txt"); in TEST()
|
/external/autotest/server/cros/tradefed/ |
D | tradefed_utils.py | 245 result_path = os.path.join(result_dir, 'test_result.xml') 250 if last_result_path and last_result_path > result_path: 256 if not os.path.exists(result_path): 258 last_result_path = result_path 267 def get_perf_metrics_from_test_result_xml(result_path, resultsdir): argument 274 root = ElementTree.parse(result_path)
|
/external/python/cpython3/Lib/ |
D | ntpath.py | 110 result_drive, result_root, result_path = splitroot(path) 118 result_path = p_path 125 result_path = p_path 130 if result_path and result_path[-1] not in seps: 131 result_path = result_path + sep 132 result_path = result_path + p_path 134 if (result_path and not result_root and 136 return result_drive + sep + result_path 137 return result_drive + result_root + result_path
|
/external/python/mobly/mobly/controllers/ |
D | iperf_server.py | 45 def __init__(self, result_path): argument 47 with io.open(result_path, 'r', encoding='utf-8') as f: 50 with io.open(result_path, 'r', encoding='utf-8') as f:
|
/external/chromium-crossbench/crossbench/probes/perfetto/ |
D | tracing.py | 287 self.session.extra_flags["--trace-startup-file"] = str(self.result_path) 298 return self.browser_result(json=(self.result_path,)) 300 result = self.browser_result(proto=(self.result_path,)) 316 self.result_path) 318 cmd: ListCmdArgs = [traceconv, "json", self.result_path, json_trace_file]
|
/external/chromium-crossbench/crossbench/probes/profiling/ |
D | browser_profiling.py | 186 return self.browser_result(json=[self.result_path]) 200 env[FirefoxProfilerEnvVars.SHUTDOWN] = str(self.result_path) 207 return self.browser_result(json=[self.result_path]) 248 return self.browser_result(json=[self.result_path])
|
/external/angle/build/ |
D | nocompile.gni | 84 result_path = 87 result_path = 90 rebased_obj_path = rebase_path(result_path, root_build_dir) 92 depfile = "${result_path}.d" 94 outputs = [ result_path ]
|
/external/rust/android-crates-io/crates/protobuf-parse/src/pure/convert/ |
D | type_resolver.rs | 118 let mut result_path = current_path.clone(); in find_message_or_enum() localVariable 119 result_path.push_simple(first); in find_message_or_enum() 121 full_name: result_path, in find_message_or_enum()
|