Searched defs:pszAbsPath (Results 1 - 3 of 3) sorted by relevance

/vbox/src/VBox/Runtime/common/path/
H A DRTPathAbsEx.cpp50 * @param pszAbsPath Where to store the absolute path.
53 RTDECL(int) RTPathAbsEx(const char *pszBase, const char *pszPath, char *pszAbsPath, size_t cchAbsPath) argument
98 return RTPathAbs(szTmpPath, pszAbsPath, cchAbsPath);
102 return RTPathAbs(pszPath, pszAbsPath, cchAbsPath);
/vbox/src/VBox/Runtime/generic/
H A DRTPathAbs-generic.cpp147 RTDECL(int) RTPathAbs(const char *pszPath, char *pszAbsPath, size_t cchAbsPath) argument
154 AssertPtr(pszAbsPath);
165 LogFlow(("RTPathAbs(%p:{%s}, %p, %d): returns %Rrc\n", pszPath, pszPath, pszAbsPath, cchAbsPath, VERR_FILENAME_TOO_LONG));
181 rc = RTPathGetCurrent(pszAbsPath, cchAbsPath);
184 size_t cch = fsCleanPath(pszAbsPath);
185 char *pszTop = rtPathSkipRootSpec(pszAbsPath);
187 if ((uintptr_t)&pszAbsPath[cch] > (uintptr_t)pszTop && pszAbsPath[cch - 1] == RTPATH_SLASH)
188 pszAbsPath[cch - 1] = '\0';
191 && (uintptr_t)&pszAbsPath[cc
[all...]
/vbox/src/VBox/Main/src-client/
H A DDisplayImpl.cpp2293 char *pszAbsPath = RTPathAbsDup(com::Utf8Str(strFile).c_str()); local
2294 char *pszSuff = RTPathSuffix(pszAbsPath);
2297 RTPathStripSuffix(pszAbsPath);
2298 if (!pszAbsPath)
2306 rc = RTStrAPrintf(&pszName, "%s-%u%s", pszAbsPath, uScreen+1, pszSuff);
2308 rc = RTStrAPrintf(&pszName, "%s%s", pszAbsPath, pszSuff);
2323 pszAbsPath, time.i32Year, time.u8Month, time.u8MonthDay,
2328 pszAbsPath, time.i32Year, time.u8Month, time.u8MonthDay,
2346 RTStrFree(pszAbsPath);

Completed in 64 milliseconds