Home
last modified time | relevance | path

Searched refs:file_exists (Results 1 – 20 of 20) sorted by relevance

/external/wpa_supplicant_8/hs20/server/www/
Dest.php78 if (!file_exists($fname)) {
127 if (file_exists($req_pem))
130 if (!file_exists($req_pem)) {
137 if (file_exists($cert_pem))
140 if (!file_exists($cert_pem)) {
161 if (file_exists($cert_der))
164 if (!file_exists($cert_der)) {
172 if (file_exists($pkcs7))
175 if (!file_exists($pkcs7)) {
/external/autotest/server/site_tests/platform_Vpd/
Dplatform_Vpd.py48 if not self.file_exists(host, path):
57 def file_exists(self, host, path): member in platform_Vpd
87 if self.file_exists(host, vpdfile):
119 if not self.file_exists(host, path):
123 if self.file_exists(host, path):
/external/skia/platform_tools/android/launcher/
Dskia_launcher.cpp17 bool file_exists(const char* fileName) { in file_exists() function
36 if (!file_exists(libraryLocation)) { in load_library()
65 if (!file_exists(appLocation)) { in main()
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/builderTemplate/publishingFiles/staticDropFiles/
Ddownload.php19 if (file_exists($clickFile)) {
38 if (file_exists($clickFile)) {
/external/autotest/client/tools/
Dcd_hash.py30 file_exists = os.path.isfile(filename) variable
32 if not file_exists:
/external/autotest/contrib/
Dmanage_powerunit_info.py157 file_exists = os.path.exists(options.csv_file)
158 if options.action == 'upload' and not file_exists:
161 if options.action == 'backup' and file_exists:
/external/webrtc/webrtc/tools/barcode_tools/
Dbarcode_decoder.py216 file_exists = True
219 while file_exists:
224 file_exists = False
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/builderTemplate/publishingFiles/dropSiteRootFiles/
Dindex.php61 if (file_exists($countFile) && file_exists($indexFile)) {
/external/llvm/include/llvm/Support/
DErrc.h45 file_exists = int(std::errc::file_exists), enumerator
/external/google-breakpad/src/processor/
Dsimple_symbol_supplier.cc55 static bool file_exists(const string &file_name) { in file_exists() function
195 if (!file_exists(path)) { in GetSymbolFileAtPathFromRoot()
/external/llvm/lib/Support/
DErrorHandling.cpp153 MAP_ERR_TO_COND(ERROR_ALREADY_EXISTS, file_exists); in mapWindowsError()
168 MAP_ERR_TO_COND(ERROR_FILE_EXISTS, file_exists); in mapWindowsError()
DLockFileManager.cpp207 if (EC != errc::file_exists) { in LockFileManager()
DPath.cpp197 if (EC == errc::file_exists) in createUniqueEntity()
218 if (EC == errc::file_exists) in createUniqueEntity()
/external/chromium-trace/catapult/devil/devil/android/sdk/
Dshared_prefs_test.py25 def file_exists(path): function
35 device.FileExists = mock.Mock(side_effect=file_exists)
/external/google-breakpad/src/tools/mac/crash_report/
Dcrash_report.mm315 BOOL file_exists = [manager fileExistsAtPath:minidump_path
317 if (file_exists && is_dir) {
332 } else if (file_exists) {
/external/libcxx/test/std/diagnostics/syserr/
Derrc.pass.cpp37 static_assert(static_cast<int>(std::errc::file_exists) == EEXIST, ""); in main()
/external/autotest/client/common_lib/
Dbase_packages.py176 file_exists = self.run_command(
179 if not file_exists:
/external/llvm/unittests/Support/
DPath.cpp577 errc::file_exists); in TEST_F()
616 errc::file_exists); in TEST_F()
640 ASSERT_EQ(fs::create_directory(Twine(LongDir), false), errc::file_exists); in TEST_F()
/external/libcxx/include/
Dsystem_error138 file_exists, // EEXIST
270 file_exists = EEXIST,
/external/clang/lib/StaticAnalyzer/Core/
DHTMLDiagnostics.cpp327 if (EC && EC != llvm::errc::file_exists) { in ReportDiag()