Searched refs:RTPathJoin (Results 1 - 21 of 21) sorted by relevance

/vbox/src/VBox/Runtime/common/path/
H A DRTPathJoin.cpp3 * IPRT - RTPathJoin.
40 RTDECL(int) RTPathJoin(char *pszPathDst, size_t cbPathDst, const char *pszPathSrc, function
/vbox/src/VBox/Runtime/testcase/
H A DtstRTPrfIO.cpp230 RTTESTI_CHECK_RC(RTPathJoin(g_szTestFile1, sizeof(g_szTestFile1), g_pszTestDir, "tstRTPrfIO-TestFile1"), VINF_SUCCESS);
231 RTTESTI_CHECK_RC(RTPathJoin(g_szTestDir1, sizeof(g_szTestDir1), g_pszTestDir, "tstRTPrfIO-TestDir1"), VINF_SUCCESS);
232 RTTESTI_CHECK_RC(RTPathJoin(g_szNotExitingFile, sizeof(g_szNotExitingFile), g_pszTestDir, "tstRTPrfIO-nonexistent-file"), VINF_SUCCESS);
233 RTTESTI_CHECK_RC(RTPathJoin(g_szNotExitingDir, sizeof(g_szNotExitingDir), g_pszTestDir, "tstRTPrfIO-nonexistent-dir"), VINF_SUCCESS);
234 RTTESTI_CHECK_RC(RTPathJoin(g_szNotExitingDirFile, sizeof(g_szNotExitingDirFile), g_szNotExitingDir, "nonexistent-file"), VINF_SUCCESS);
H A DtstRTPath.cpp514 * RTPathJoin - reuse the append tests.
516 RTTestSub(hTest, "RTPathJoin");
525 RTTESTI_CHECK_RC(rc = RTPathJoin(szPath, sizeof(szPath), pszInput, pszAppend), VINF_SUCCESS);
542 RTTESTI_CHECK_RC(rc = RTPathJoin(szPath, cchResult + 2, pszInput, pszAppend), VINF_SUCCESS);
546 RTTESTI_CHECK_RC(rc = RTPathJoin(szPath, cchResult + 1, pszInput, pszAppend), VINF_SUCCESS);
549 RTTESTI_CHECK_RC(rc = RTPathJoin(szPath, cchResult, pszInput, pszAppend), VERR_BUFFER_OVERFLOW);
H A DtstRTSymlink.cpp67 RTTESTI_CHECK_RC_OK_RETV(RTPathJoin(szPath1, sizeof(szPath1), pszBaseDir, "tstRTSymlink-link-1"));
/vbox/src/VBox/Main/src-helper-apps/
H A DVBoxExtPackHelperApp.cpp680 rc = RTPathJoin(szFinalPath, sizeof(szFinalPath), pszBaseDir, pszMangledName);
686 rc = RTPathJoin(szTmpPath, sizeof(szTmpPath) - 64, pszBaseDir, pszMangledName);
1001 rc = RTPathJoin(szExtPackDir, sizeof(szExtPackDir), pszBaseDir, strMangledName.c_str());
1109 rc = RTPathJoin(szPath, sizeof(szPath), pszBaseDir, Entry.szName);
1119 rcExit = RTMsgErrorExit(RTEXITCODE_FAILURE, "RTPathJoin failed with %Rrc for '%s'", rc, Entry.szName);
1164 int rc = RTPathJoin(pszPath, cbPath, s_apszPaths[i], pszName);
1590 rc = RTPathJoin(szStdOut, sizeof(szStdOut), szTempDir, "stdout");
1592 rc = RTPathJoin(szStdErr, sizeof(szStdErr), szTempDir, "stderr");
/vbox/src/VBox/Additions/common/VBoxService/
H A DVBoxServiceUtils.cpp381 int rc = RTPathJoin(szFullPath, sizeof(szFullPath), pszPath, pszFilename);
H A DVBoxServiceAutoMount.cpp425 rc = RTPathJoin(szMountPoint, sizeof(szMountPoint), pszMountDir, pszShareNameFull);
H A DVBoxServiceToolBox.cpp758 rc = RTPathJoin(szPath, sizeof(szPath),
/vbox/src/VBox/Main/src-all/
H A DExtPackManagerImpl.cpp1123 vrc = RTPathJoin(szDescFilePath, sizeof(szDescFilePath), m->strExtPackPath.c_str(), VBOX_EXTPACK_DESCRIPTION_NAME);
1344 int vrc = RTPathJoin(szPath, sizeof(szPath), m->strExtPackPath.c_str(), RTBldCfgTargetDotArch());
1381 vrc = RTPathJoin(szPath, sizeof(szPath), m->strExtPackPath.c_str(), szSubDir);
1400 vrc = RTPathJoin(szPath, sizeof(szPath), m->strExtPackPath.c_str(), RTBldCfgTargetArch());
1515 * This is a simple RTPathJoin, no checking if things exists or anything.
1517 int vrc = RTPathJoin(pszPath, cbPath, pThis->m->strExtPackPath.c_str(), pszFilename);
1752 int vrc = RTPathJoin(szPath, sizeof(szPath), m->strExtPackPath.c_str(), szName);
1778 hrc = setError(VBOX_E_IPRT_ERROR, tr("RTPathJoin failed: %Rrc"), vrc);
1901 vrc = RTPathJoin(szExtPackDir, sizeof(szExtPackDir), m->strBaseDir.c_str(), Entry.szName);
2480 vrc = RTPathJoin(szDi
[all...]
H A DExtPackUtil.cpp233 int vrc = RTPathJoin(szFilePath, sizeof(szFilePath), a_pszDir, VBOX_EXTPACK_DESCRIPTION_NAME);
235 return new RTCString("RTPathJoin failed with %Rrc", vrc);
535 * A combination of RTPathJoin and VBoxExtPackMangleName.
537 * @returns IPRT status code like RTPathJoin.
551 int vrc = RTPathJoin(pszExtPackDir, cbExtPackDir, pszParentDir, pstrMangledName->c_str());
/vbox/src/VBox/Installer/win/Stub/
H A DVBoxStub.cpp635 int rc = RTPathJoin(szPkgFile, sizeof(szPkgFile), pszPkgDir, pPackage->szFileName);
637 return ShowError("Internal error: RTPathJoin failed: %Rrc", rc);
774 rc = RTPathJoin(szDstFile, sizeof(szDstFile), pszDstDir, pPackage->szFileName);
776 return ShowError("Internal error: RTPathJoin failed: %Rrc", rc);
/vbox/include/iprt/
H A Dpath.h945 RTDECL(int) RTPathJoin(char *pszPathDst, size_t cbPathDst, const char *pszPathSrc,
949 * Same as RTPathJoin, except that the output buffer is allocated.
962 * Extended version of RTPathJoin, both inputs can be specified as substrings.
H A Dmangling.h1055 # define RTPathJoin RT_MANGLER(RTPathJoin) macro
/vbox/src/VBox/Runtime/common/zip/
H A Dunzipcmd.cpp189 rc = RTPathJoin(szDst, sizeof(szDst), pOpts->pszDirectory ? pOpts->pszDirectory : ".", pszName);
H A Dtarcmd.cpp604 rc = RTPathJoin(szDst, sizeof(szDst), pOpts->pszDirectory ? pOpts->pszDirectory : ".", pszName);
/vbox/src/VBox/Runtime/tools/
H A DRTDbgSymCache.cpp197 int rc = RTPathJoin(szMapPath, sizeof(szMapPath) - sizeof("/xxxx/yyyy/xxxx/yyyy/xxxx/zzzzzzzzzzzz") + 1,
200 return RTMsgErrorRc(rc, "Error constructing UUID map path (RTPathJoin): %Rrc", rc);
326 int rc = RTPathJoin(szDstPath, sizeof(szDstPath), pCfg->pszCache, pszDstName);
/vbox/src/VBox/Main/src-server/
H A DVFSExplorerImpl.cpp373 int vrc = RTPathJoin(szPath, sizeof(szPath), m->strPath.c_str(), (*it).c_str());
/vbox/src/bldprogs/
H A Dscm.cpp844 int rc = RTPathJoin(szFile, sizeof(szFile), pszDir, SCM_SETTINGS_FILENAME);
H A Dscmsubversion.cpp716 int rc = RTPathJoin(szPath, sizeof(szPath), pszDir, ".svn");
/vbox/src/VBox/Frontends/VBoxManage/
H A DVBoxManageGuestCtrl.cpp1614 vrc = RTPathJoin(szTranslated, sizeof(szTranslated),
1623 vrc = RTPathJoin(szTranslated, sizeof(szTranslated),
/vbox/src/VBox/ValidationKit/utils/TestExecServ/
H A DTestExecService.cpp2975 int rc = RTPathJoin(szUpgradePath, sizeof(szUpgradePath), g_szCdRomPath, g_szOsSlashArchShortName);
3049 rc = RTPathJoin(szTmpPath, sizeof(szTmpPath), g_szScratchPath, RTPathFilename(szOrgPath));

Completed in 402 milliseconds