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

/vbox/src/VBox/Runtime/r3/
H A Ddir2.cpp143 char szAbsPath[RTPATH_MAX]; local
144 int rc = RTPathAbs(pszPath, szAbsPath, sizeof(szAbsPath));
149 if (RTPathCountComponents(szAbsPath) <= 1)
155 RTPathStripTrailingSlash(szAbsPath);
156 size_t cchAbsPath = strlen(szAbsPath);
159 szAbsPath[cchAbsPath++] = '/';
160 szAbsPath[cchAbsPath] = 0;
164 rc = RTPathQueryInfoEx(szAbsPath, &SharedObjInfoBuf, RTFSOBJATTRADD_NOTHING, RTPATH_F_ON_LINK);
175 rc = rtDirRemoveRecursiveSub(szAbsPath, cchAbsPat
[all...]
H A Ddir.cpp63 char szAbsPath[RTPATH_MAX]; local
64 int rc = RTPathAbs(pszPath, szAbsPath, sizeof(szAbsPath));
72 char *psz = &szAbsPath[rtPathVolumeSpecLen(szAbsPath)];
99 rc = RTDirCreate(szAbsPath, fMode, 0);
/vbox/src/VBox/Runtime/r3/nt/
H A Dpathint-nt.cpp323 char szAbsPath[RTPATH_MAX]; local
329 rc = RTPathAbs(szRelPath, &szAbsPath[cchPrefix - cchSkip], sizeof(szAbsPath) - (cchPrefix - cchSkip));
335 memcpy(szAbsPath, pszPrefix, cchPrefix);
336 return rtNtPathUtf8ToUniStr(pNtName, phRootDir, szAbsPath);
/vbox/src/VBox/Devices/Network/testcase/
H A DtstIntNet-1.cpp839 char szAbsPath[RTPATH_MAX]; local
840 rc = RTPathAbs(szPath, szAbsPath, sizeof(szAbsPath));
847 rc = SUPR3LoadVMM(szAbsPath);
850 RTPrintf("tstIntNet-1: SUPR3LoadVMM(\"%s\") -> %Rrc\n", szAbsPath, rc);

Completed in 94 milliseconds