Searched defs:pszBase (Results 1 - 4 of 4) sorted by relevance

/vbox/src/VBox/Runtime/common/path/
H A DRTPathAbsExDup.cpp44 * @param pszBase The base path to act like a current directory.
49 RTDECL(char *) RTPathAbsExDup(const char *pszBase, const char *pszPath) argument
52 int rc = RTPathAbsEx(pszBase, pszPath, szPath, sizeof(szPath));
H A DRTPathAbsEx.cpp46 * @param pszBase The base path to act like a current directory.
53 RTDECL(int) RTPathAbsEx(const char *pszBase, const char *pszPath, char *pszAbsPath, size_t cchAbsPath) argument
55 if ( pszBase
62 if ( RTPATH_IS_SLASH(pszBase[0])
63 && RTPATH_IS_SLASH(pszBase[1])
64 && pszBase[2] == '?'
65 && RTPATH_IS_SLASH(pszBase[3])
82 size_t const cchVolSpec = rtPathVolumeSpecLen(pszBase);
85 memcpy(szTmpPath, pszBase, cchVolSpec);
91 size_t const cchBase = strlen(pszBase);
[all...]
/vbox/src/VBox/HostDrivers/Support/
H A DSUPLibLdr.cpp299 char *pszBase; member in struct:SUPLDRCREATETABSARGS
315 pArgs->pSym->offName = pArgs->psz - pArgs->pszBase;
457 CreateArgs.pszBase = (char *)&pLoadReq->u.In.abImage[offStrTab];
458 CreateArgs.psz = CreateArgs.pszBase;
462 AssertRelease((size_t)(CreateArgs.psz - CreateArgs.pszBase) <= CalcArgs.cbStrings);
/vbox/src/VBox/Storage/
H A DVMDK.cpp3443 const char *pszBase = RTPathFilename(pImage->pszFilename); local
3444 const char *pszSuff = RTPathSuffix(pszBase);
3447 char *pszBaseBase = RTStrDup(pszBase);

Completed in 63 milliseconds