Searched refs:pDir (Results 26 - 39 of 39) sorted by relevance

12

/vbox/src/VBox/HostDrivers/Support/
H A DSUPR3HardenedVerify.cpp1503 DIR *pDir = opendir(pszDirPath);
1504 if (!pDir)
1512 if (dirfd(pDir) != -1)
1514 int rc = supR3HardenedVerifySameFsObject(dirfd(pDir), pFsObjState, pszDirPath, pErrInfo);
1517 closedir(pDir);
1532 int iErr = readdir_r(pDir, &Entry, &pEntry);
1586 closedir(pDir);
/vbox/src/VBox/HostServices/SharedFolders/testcase/
H A DtstSharedFolderService.cpp119 extern int testRTDirClose(PRTDIR pDir) argument
121 /* RTPrintf("%s: pDir=%p\n", __PRETTY_FUNCTION__, pDir); */
122 testRTDirClosepDir = pDir;
162 extern int testRTDirQueryInfo(PRTDIR pDir, PRTFSOBJINFO pObjInfo, argument
165 /* RTPrintf("%s: pDir=%p, enmAdditionalAttribs=0x%llx\n", __PRETTY_FUNCTION__,
166 pDir, LLUIFY(enmAdditionalAttribs)); */
167 testRTDirQueryInfoDir = pDir;
178 extern int testRTDirReadEx(PRTDIR pDir, PRTDIRENTRYEX pDirEntry, argument
183 /* RTPrintf("%s: pDir
192 testRTDirSetTimes(PRTDIR pDir, PCRTTIMESPEC pAccessTime, PCRTTIMESPEC pModificationTime, PCRTTIMESPEC pChangeTime, PCRTTIMESPEC pBirthTime) argument
[all...]
/vbox/src/VBox/Runtime/tools/
H A DRTDbgSymCache.cpp949 PRTDIR pDir; local
959 rc = RTDirOpenFiltered(&pDir, pszPath, RTDIRFILTER_WINNT, 0 /*fFlags*/);
962 rc = RTDirOpen(&pDir, pszPath);
971 rc2 = RTDirReadEx(pDir, pDirEntry, NULL, RTFSOBJATTRADD_NOTHING, RTPATH_F_FOLLOW_LINK);
1050 rc2 = RTDirClose(pDir);
/vbox/src/VBox/Additions/common/VBoxService/
H A DVBoxServiceToolBox.cpp675 PRTDIR pDir; local
676 rc = RTDirOpen(&pDir, szPathAbs);
694 rc = RTDirReadEx(pDir, &DirEntry, NULL, RTFSOBJATTRADD_UNIX, RTPATH_F_ON_LINK);
711 int rc2 = RTDirClose(pDir);
/vbox/src/VBox/Runtime/r0drv/nt/
H A DntBldSymDb.cpp998 PRTDIR pDir;
999 int rc = RTDirOpen(&pDir, pszDir);
1018 rc = RTDirReadEx(pDir, pDirEntry, &cbDirEntry, RTFSOBJATTRADD_UNIX, RTPATH_F_ON_LINK);
1072 rc = RTDirClose(pDir);
/vbox/src/bldprogs/
H A Dscm.cpp1269 PRTDIR pDir; local
1270 rc = RTDirOpenFiltered(&pDir, pszBuf, RTDIRFILTER_NONE, 0);
1279 rc = RTDirRead(pDir, pEntry, NULL);
1344 RTDirClose(pDir);
/vbox/src/VBox/Main/src-all/
H A DExtPackManagerImpl.cpp1878 PRTDIR pDir; local
1879 int vrc = RTDirOpen(&pDir, szBaseDir);
1885 vrc = RTDirReadEx(pDir, &Entry, NULL /*pcbDirEntry*/, RTFSOBJATTRADD_NOTHING, RTPATH_F_ON_LINK);
1926 RTDirClose(pDir);
2460 PRTDIR pDir; local
2461 vrc = RTDirOpen(&pDir, m->strBaseDir.c_str());
2467 vrc = RTDirReadEx(pDir, &Entry, NULL /*pcbDirEntry*/, RTFSOBJATTRADD_NOTHING, RTPATH_F_ON_LINK);
2481 AssertLogRelRCReturnStmt(vrc, RTDirClose(pDir), E_UNEXPECTED);
2487 RTDirClose(pDir);
/vbox/src/VBox/Main/src-helper-apps/
H A DVBoxExtPackHelperApp.cpp1071 PRTDIR pDir;
1072 rc = RTDirOpen(&pDir, pszBaseDir);
1081 rc = RTDirReadEx(pDir, &Entry, NULL /*pcbDirEntry*/, RTFSOBJATTRADD_NOTHING, RTPATH_F_ON_LINK);
1124 RTDirClose(pDir);
/vbox/src/VBox/Runtime/common/dbg/
H A Ddbgcfg.cpp359 PRTDIR pDir; local
360 int rc = RTDirOpen(&pDir, pszPath);
375 rc = RTDirRead(pDir, &u.Entry, &cbBuf);
389 RTDirClose(pDir);
395 RTDirClose(pDir);
/vbox/src/VBox/Debugger/
H A DDBGCCommands.cpp2020 PRTDIR pDir; local
2021 rc = RTDirOpenFiltered(&pDir, szPath, RTDIRFILTER_WINNT, 0);
2028 while (RT_SUCCESS(RTDirRead(pDir, &DirEntry, NULL)))
2041 RTDirClose(pDir);
/vbox/src/VBox/Main/src-client/
H A DGuestSessionImpl.cpp703 inline bool GuestSession::i_directoryExists(uint32_t uDirID, ComObjPtr<GuestDirectory> *pDir) argument
708 if (pDir)
709 *pDir = it->second;
743 ComObjPtr<GuestDirectory> pDir = pDirectory; local
758 pDir.setNull();
/vbox/src/VBox/Frontends/VBoxManage/
H A DVBoxManageGuestCtrl.cpp1994 PRTDIR pDir = NULL; local
1997 vrc = RTDirOpen(&pDir, szCurDir);
1999 pDir = NULL;
2009 vrc = RTDirRead(pDir, &DirEntry, NULL);
2116 RTDirClose(pDir);
/vbox/src/VBox/Main/include/
H A DGuestSessionImpl.h395 inline bool i_directoryExists(uint32_t uDirID, ComObjPtr<GuestDirectory> *pDir);
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/lib/libdtrace/common/
H A Ddt_cc.c1961 PRTDIR pDir;
1979 rc = RTDirOpen(&pDir, path);
1990 while (RT_SUCCESS(RTDirRead(pDir, &DirEntry, 0))) {
2031 RTDirClose(pDir);

Completed in 419 milliseconds

12