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

/vbox/src/VBox/Runtime/common/path/
H A DRTPathAbsEx.cpp91 size_t const cchBase = strlen(pszBase); local
92 if (cchBase + 1 + cchPath + 1 > sizeof(szTmpPath))
94 memcpy(szTmpPath, pszBase, cchBase);
95 szTmpPath[cchBase] = RTPATH_DELIMITER;
96 memcpy(&szTmpPath[cchBase + 1], pszPath, cchPath + 1);

Completed in 41 milliseconds