/vbox/src/libs/xpcom18a4/xpcom/threads/ |
H A D | nsIEnvironment.idl | 64 * |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 D | nsIFileTest.cpp | 114 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 D | TestClient.js | 76 dump("file exists: " + file.exists() + "\n"); 84 if (!clone.exists())
|
H A D | TestDConnect.cpp | 113 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 D | create-release.py | 29 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 D | DataSection.py | 64 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 D | OptionRom.py | 72 if not os.path.exists(TmpOutputDir) : 90 if not os.path.exists(TmpOutputDir) :
|
H A D | EfiSection.py | 91 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 D | UIPopupStackViewport.h | 49 bool exists(const QString &strPopupPaneID) const;
|
H A D | UIPopupStack.h | 54 bool exists(const QString &strPopupPaneID) const;
|
/vbox/src/VBox/Frontends/VirtualBox/src/wizards/importappliance/ |
H A D | UIWizardImportAppPageExpert.cpp | 88 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 D | UIWizardImportAppPageBasic1.cpp | 85 /* Make sure appliance file has allowed extension and exists: */ 87 QFile::exists(m_pFileSelector->path());
|
/vbox/src/libs/xpcom18a4/xpcom/io/ |
H A D | nsAppFileLocationProvider.cpp | 339 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 D | nsinstall.c | 190 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 D | TestTools.py | 68 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 D | UIWizardExportApp.cpp | 104 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 D | UPT.py | 168 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 D | mingw-gcc-build.py | 189 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 D | xptiManifest.cpp | 266 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 D | GenPatchPcdTable.py | 180 elif os.path.exists(options.mapfile) and os.path.exists(options.efifile):
|
/vbox/src/VBox/ValidationKit/testdriver/ |
H A D | vboxinstaller.py | 247 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 D | tdUnitTest1.py | 350 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 D | Database.py | 46 if os.path.exists(DbPath):
|
/vbox/src/VBox/Main/include/ |
H A D | VFSExplorerImpl.h | 60 HRESULT exists(const std::vector<com::Utf8Str> &aNames,
|
/vbox/src/libs/xpcom18a4/xpcom/obsolete/ |
H A D | nsIFileSpec.idl | 114 boolean exists(); 175 boolean exists();
|