/external/python/cpython2/Lib/ |
D | ntpath.py | 65 result_drive, result_path = splitdrive(path) 72 result_path = p_path 78 result_path = p_path 83 if result_path and result_path[-1] not in '\\/': 84 result_path = result_path + '\\' 85 result_path = result_path + p_path 87 if (result_path and result_path[0] not in '\\/' and 89 return result_drive + sep + result_path 90 return result_drive + 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() 174 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()
|
D | cast_cert_validator_internal.cc | 399 CertificatePathResult* result_path, in FindCertificatePath() argument 405 bssl::UniquePtr<X509>& target_cert = result_path->target_cert; in FindCertificatePath() 407 result_path->intermediate_certs; in FindCertificatePath() 554 result_path->path.reserve(path.size() - path_index); in FindCertificatePath() 556 result_path->path.push_back(path[i].cert); in FindCertificatePath()
|
D | cast_cert_validator_internal.h | 72 CertificatePathResult* result_path,
|
/external/autotest/site_utils/lxc/ |
D | container_bucket.py | 177 def setup_test(self, container_id, job_id, server_package_url, result_path, argument 212 if not os.path.exists(result_path): 214 result_path) 215 result_path = os.path.abspath(result_path) 226 safe_control = os.path.join(result_path, control_file_name) 256 (result_path,
|
/external/tensorflow/tensorflow/stream_executor/gpu/ |
D | asm_compiler.cc | 311 std::string result_path; in BundleGpuAsm() local 312 if (!env->LocalTempFilename(&result_path)) { in BundleGpuAsm() 316 auto result_file_cleaner = tensorflow::gtl::MakeCleanup([&result_path] { in BundleGpuAsm() 319 tensorflow::Env::Default()->DeleteFile(result_path).IgnoreError(); in BundleGpuAsm() 326 "--link", "--compress-all", absl::StrCat("--create=", result_path)}; in BundleGpuAsm() 355 result_path, &result_blob)); in BundleGpuAsm() 408 std::string result_path; in BundleGpuAsm() local 409 if (!env->LocalTempFilename(&result_path)) { in BundleGpuAsm() 413 auto result_file_cleaner = tensorflow::gtl::MakeCleanup([&result_path] { in BundleGpuAsm() 416 tensorflow::Env::Default()->DeleteFile(result_path).IgnoreError(); in BundleGpuAsm() [all …]
|
/external/python/cpython3/Lib/ |
D | ntpath.py | 90 result_drive, result_path = splitdrive(path) 97 result_path = p_path 103 result_path = p_path 108 if result_path and result_path[-1] not in seps: 109 result_path = result_path + sep 110 result_path = result_path + p_path 112 if (result_path and result_path[0] not in seps and 114 return result_drive + sep + result_path 115 return result_drive + result_path
|
/external/grpc-grpc/test/core/security/ |
D | linux_system_roots_test.cc | 50 char result_path[MAXPATHLEN]; in TEST() local 51 grpc_core::GetAbsoluteFilePath(directory, filename, result_path); in TEST() 52 EXPECT_STREQ(result_path, "nonexistent/test/directory/doesnotexist.txt"); in TEST()
|
/external/rust/crates/grpcio-sys/grpc/test/core/security/ |
D | linux_system_roots_test.cc | 50 char result_path[MAXPATHLEN]; in TEST() local 51 grpc_core::GetAbsoluteFilePath(directory, filename, result_path); in TEST() 52 EXPECT_STREQ(result_path, "nonexistent/test/directory/doesnotexist.txt"); in TEST()
|
/external/autotest/server/cros/tradefed/ |
D | tradefed_utils.py | 239 result_path = os.path.join(result_dir, 'test_result.xml') 244 if last_result_path and last_result_path > result_path: 250 if not os.path.exists(result_path): 252 last_result_path = result_path 261 def get_perf_metrics_from_test_result_xml(result_path, resultsdir): argument 268 root = ElementTree.parse(result_path)
|
/external/autotest/tko/ |
D | retrieve_logs.cgi | 138 for result_path in tpool.imap_unordered(_check_result, tpool_args): 139 if result_path: 140 return result_path
|
/external/toolchain-utils/cros_utils/ |
D | email_sender.py | 134 result_path = os.path.join(X20_PATH, now + '_' + entropy_str + '.json') 136 with AtomicallyWriteFile(result_path) as f:
|
/external/python/pyfakefs/pyfakefs/ |
D | fake_filesystem.py | 1552 result_drive, result_path = self.splitdrive(base_path) 1559 result_path = path_part 1566 result_path = path_part 1571 if result_path and result_path[-1:] not in seps: 1572 result_path = result_path + sep 1573 result_path = result_path + path_part 1576 if (result_path and result_path[:1] not in seps and 1578 return result_drive + sep + result_path 1579 return result_drive + result_path
|
/external/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ |
D | ClangExpressionParser.cpp | 1051 llvm::SmallString<128> result_path; in ParseInternal() local 1055 llvm::sys::fs::createUniqueFile(temp_source_path, temp_fd, result_path); in ParseInternal() 1057 llvm::sys::fs::createTemporaryFile("lldb", "expr", temp_fd, result_path); in ParseInternal() 1068 m_compiler->getFileManager().getFile(result_path)) { in ParseInternal()
|
/external/autotest/site_utils/ |
D | gs_offloader.py | 415 for result_path, result_pattern in [(cts_path, CTS_RESULT_PATTERN), 420 for path in glob.glob(result_path):
|
/external/llvm-project/lldb/source/Expression/ |
D | IRExecutionUnit.cpp | 300 llvm::SmallVector<char, 256> result_path; in GetRunnableInfo() local 303 (void)llvm::sys::fs::createUniqueFile(object_name_model, fd, result_path); in GetRunnableInfo()
|
/external/toolchain-utils/crosperf/ |
D | results_cache_unittest.py | 1947 result_path = self.results_cache.GetCacheDirForWrite() 1956 self.assertEqual(result_path, comp_path)
|
/external/skqp/tests/ |
D | PathOpsOpTest.cpp | 5726 SkPath result_path; in seanbug() local
|
/external/skia/tests/ |
D | PathOpsOpTest.cpp | 5726 SkPath result_path; in seanbug() local
|