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

/vbox/src/VBox/Runtime/tools/
H A DRTDbgSymCache.cpp325 char szDstPath[RTPATH_MAX]; local
326 int rc = RTPathJoin(szDstPath, sizeof(szDstPath), pCfg->pszCache, pszDstName);
330 if (!RTDirExists(szDstPath))
332 rc = RTDirCreate(szDstPath, 0755, RTDIRCREATE_FLAGS_NOT_CONTENT_INDEXED_NOT_CRITICAL);
334 return RTMsgErrorRc(rc, "Error creating '%s': %Rrc", szDstPath, rc);
337 rc = RTPathAppend(szDstPath, sizeof(szDstPath), pszDstSubDir);
341 if (!RTDirExists(szDstPath))
343 rc = RTDirCreate(szDstPath, 075
[all...]
/vbox/src/VBox/Main/src-helper-apps/
H A DVBoxExtPackHelperApp.cpp497 char szDstPath[RTPATH_MAX]; local
498 int rc = RTPathAbs(pszDirDst, szDstPath, sizeof(szDstPath) - VBOX_EXTPACK_MAX_MEMBER_NAME_LENGTH - 2);
501 size_t offDstPath = RTPathStripTrailingSlash(szDstPath);
502 szDstPath[offDstPath++] = '/';
503 szDstPath[offDstPath] = '\0';
543 szDstPath[offDstPath] = '\0';
544 rc = RTStrCopy(&szDstPath[offDstPath], sizeof(szDstPath) - offDstPath, pszAdjName);
551 rcExit = UnpackExtPackFile(pszAdjName, szDstPath, hVfsIo
[all...]

Completed in 34 milliseconds