Searched defs:pszDirPath (Results 1 - 2 of 2) sorted by relevance

/vbox/src/VBox/HostDrivers/Support/
H A DSUPR3HardenedVerify.cpp1472 * @param pszDirPath The path buffer containing the subdirectory to
1480 * the directory @a pszDirPath indicates and will
1486 static int supR3HardenedVerifyDirRecursive(char *pszDirPath, size_t cchDirPath, PSUPR3HARDENEDFSOBJSTATE pFsObjState, argument
1503 DIR *pDir = opendir(pszDirPath);
1510 5, "opendir failed with ", strerror(errno), " on '", pszDirPath, "'");
1514 int rc = supR3HardenedVerifySameFsObject(dirfd(pDir), pFsObjState, pszDirPath, pErrInfo);
1528 pszDirPath[cchDirPath] = '\0'; /* for error messages. */
1536 5, "readdir_r failed with ", strerror(iErr), " in '", pszDirPath, "'");
1550 4, "Path grew too long during recursion: '", pszDirPath, pEntry->d_name, "'");
1553 suplibHardenedMemCopy(&pszDirPath[cchNam
1601 supR3HardenedVerifyDir(const char *pszDirPath, bool fRecursive, bool fCheckFiles, PRTERRINFO pErrInfo) argument
[all...]
H A DSUPLib.cpp1598 SUPR3DECL(int) SUPR3HardenedVerifyDir(const char *pszDirPath, bool fRecursive, bool fCheckFiles, PRTERRINFO pErrInfo) argument
1603 AssertPtr(pszDirPath);
1610 int rc = supR3HardenedVerifyDir(pszDirPath, fRecursive, fCheckFiles, pErrInfo);
1612 LogRel(("supR3HardenedVerifyDir: Verification of \"%s\" failed, rc=%Rrc\n", pszDirPath, rc));
1615 NOREF(pszDirPath); NOREF(fRecursive); NOREF(fCheckFiles);

Completed in 53 milliseconds