Searched refs:exists (Results 1 - 25 of 122) sorted by relevance

12345

/vbox/src/libs/xpcom18a4/xpcom/threads/
H A DnsIEnvironment.idl64 * |exists()| to probe whether the env variable exists
75 * An environment variable exists when |getenv()| returns a non-NULL value.
87 boolean exists(in AString aName);
/vbox/src/libs/xpcom18a4/xpcom/tests/
H A DnsIFileTest.cpp114 PRBool exists; local
115 file->Exists(&exists);
117 if (exists)
149 PRBool exists; local
150 file->Exists(&exists);
152 if (exists)
161 rv = file->Exists(&exists);
165 if (!exists)
198 PRBool exists; local
199 file->Exists(&exists);
284 PRBool exists; local
[all...]
/vbox/src/libs/xpcom18a4/ipc/ipcd/extensions/dconnect/test/
H A DTestClient.js76 dump("file exists: " + file.exists() + "\n");
84 if (!clone.exists())
H A DTestDConnect.cpp113 PRBool exists; local
114 rv = file->Exists(&exists);
120 printf("File exists? [%d]\n", exists);
151 rv = clone->Exists(&exists);
157 if (!exists)
/vbox/src/VBox/Devices/EFI/Firmware/OvmfPkg/
H A Dcreate-release.py29 if os.path.exists('OvmfPkgX64.dsc'):
32 if not os.path.exists(os.path.join('OvmfPkg', 'OvmfPkgX64.dsc')):
64 if os.path.exists(os.path.join('OvmfPkg', '.svn')):
216 if os.path.exists(filename):
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/GenFds/
H A DDataSection.py64 if not os.path.exists(self.SectFileName):
72 if os.path.exists(MapFile):
74 if not os.path.exists(CopyMapFile) or \
93 if not os.path.exists(FileBeforeStrip) or \
H A DOptionRom.py72 if not os.path.exists(TmpOutputDir) :
90 if not os.path.exists(TmpOutputDir) :
H A DEfiSection.py91 elif os.path.exists(Filename):
237 if os.path.exists(MapFile):
239 if not os.path.exists(CopyMapFile) or \
245 if not os.path.exists(FileBeforeStrip) or \
/vbox/src/VBox/Frontends/VirtualBox/src/widgets/
H A DUIPopupStackViewport.h49 bool exists(const QString &strPopupPaneID) const;
H A DUIPopupStack.h54 bool exists(const QString &strPopupPaneID) const;
/vbox/src/VBox/Frontends/VirtualBox/src/wizards/importappliance/
H A DUIWizardImportAppPageExpert.cpp88 if (QFile::exists(m_pFileSelector->path()) &&
116 /* Make sure appliance file has allowed extension and exists and appliance widget is valid: */
118 QFile::exists(m_pFileSelector->path()) &&
H A DUIWizardImportAppPageBasic1.cpp85 /* Make sure appliance file has allowed extension and exists: */
87 QFile::exists(m_pFileSelector->path());
/vbox/src/libs/xpcom18a4/xpcom/io/
H A DnsAppFileLocationProvider.cpp339 PRBool exists; local
373 rv = localDir->Exists(&exists);
374 if (NS_FAILED(rv) || !exists)
401 rv = localDir->Exists(&exists);
402 if (NS_SUCCEEDED(rv) && !exists)
435 PRBool exists;
436 rv = localDir->Exists(&exists);
437 if (NS_SUCCEEDED(rv) && !exists)
476 PRBool exists; local
477 if (testFile && NS_SUCCEEDED(testFile->Exists(&exists))
556 PRBool exists; local
[all...]
/vbox/src/libs/xpcom18a4/nsprpub/config/
H A Dnsinstall.c190 int onlydir, dodir, dolink, dorelsymlink, dotimes, opt, len, lplen, tdlen, bnlen, exists, fromfd, tofd, cc, wc; local
285 exists = (lstat(toname, &tosb) == 0);
289 if (exists && !S_ISDIR(tosb.st_mode)) {
291 exists = 0;
293 if (!exists && mkdir(toname, mode) < 0)
327 if (exists &&
332 exists = 0;
334 if (!exists && symlink(name, toname) < 0)
350 if (exists && (!S_ISREG(tosb.st_mode) || access(toname, W_OK) < 0))
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Tests/
H A DTestTools.py68 if os.path.exists(self.testDir):
79 if not os.path.exists(path):
98 if os.path.exists(bin):
100 assert os.path.exists(bin)
169 if not os.path.exists(self.testDir):
/vbox/src/VBox/Frontends/VirtualBox/src/wizards/exportappliance/
H A DUIWizardExportApp.cpp104 QVector<QString> exists = explorer.Exists(files); local
105 /* Check if the file exists already, if yes get confirmation for overwriting from the user. */
106 if (!msgCenter().confirmOverridingFiles(exists, this))
108 /* Ok all is confirmed so delete all the files which exists: */
109 if (!exists.isEmpty())
111 CProgress progress1 = explorer.Remove(exists);
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/UPT/
H A DUPT.py168 if not os.path.exists(Opt.PackageInformationDataFile):
169 if not os.path.exists(os.path.join(WorkspaceDir, Opt.PackageInformationDataFile)):
188 if not (os.path.exists(Opt.PackFileToInstall) and os.path.isfile(Opt.PackFileToInstall)):
192 if not (os.path.exists(AbsPath) and os.path.isfile(AbsPath)):
194 if not (os.path.exists(AbsPath) and os.path.isfile(AbsPath)):
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/gcc/
H A Dmingw-gcc-build.py189 if not os.path.exists(path):
295 if os.path.exists(local_file):
313 if not completed and os.path.exists(local_file):
391 if not os.path.exists(extractDst):
395 if os.path.exists(extracted):
430 os.path.exists(
452 if not os.path.exists(build_dir):
463 if os.path.exists('/opt/local/include/gmp.h'):
519 if not os.path.exists(links_dir):
/vbox/src/libs/xpcom18a4/xpcom/reflect/xptinfo/src/
H A DxptiManifest.cpp266 PRBool exists;
267 if(NS_FAILED(mainFile->Exists(&exists)))
270 if(exists && NS_FAILED(mainFile->Remove(PR_FALSE)))
701 PRBool exists;
702 if(NS_FAILED(aFile->Exists(&exists)))
705 if(exists && NS_FAILED(aFile->Remove(PR_FALSE)))
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/GenPatchPcdTable/
H A DGenPatchPcdTable.py180 elif os.path.exists(options.mapfile) and os.path.exists(options.efifile):
/vbox/src/VBox/ValidationKit/testdriver/
H A Dvboxinstaller.py247 if os.path.exists(sFull):
257 Checks if a persistent variable exists.
264 return os.path.exists(self.__persistentVarCalcName(sVar));
278 if not os.path.exists(sFull):
478 if oRegExp.match(os.path.basename(sFile)) and os.path.exists(sFile):
522 if not os.path.exists(sMountPath):
545 if not os.path.exists(sMountPath):
591 if not os.path.exists(sDmg):
885 if not os.path.exists(sExtPackDir):
/vbox/src/VBox/ValidationKit/tests/unittests/
H A DtdUnitTest1.py350 if os.path.exists(os.path.join(sCandidat, 'testcase', 'tstVMStructSize' + self.sExeSuff)):
519 if os.path.exists(sPath):
533 if os.path.exists(sPath):
562 if not os.path.exists(sDstDir):
573 if os.path.exists(sSrc):
583 if os.path.exists(sSrc):
600 if os.path.exists(sXmlFile):
651 if os.path.exists(sXmlFile):
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/Common/
H A DDatabase.py46 if os.path.exists(DbPath):
/vbox/src/VBox/Main/include/
H A DVFSExplorerImpl.h60 HRESULT exists(const std::vector<com::Utf8Str> &aNames,
/vbox/src/libs/xpcom18a4/xpcom/obsolete/
H A DnsIFileSpec.idl114 boolean exists();
175 boolean exists();

Completed in 200 milliseconds

12345