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

/vbox/src/VBox/Runtime/generic/
H A DRTSystemQueryOSInfo-generic.cpp38 RTDECL(int) RTSystemQueryOSInfo(RTSYSOSINFO enmInfo, char *pszInfo, size_t cchInfo) argument
44 AssertPtrReturn(pszInfo, VERR_INVALID_POINTER);
52 *pszInfo = '\0';
/vbox/src/VBox/Runtime/r3/posix/
H A DRTSystemQueryOSInfo-posix.cpp39 RTDECL(int) RTSystemQueryOSInfo(RTSYSOSINFO enmInfo, char *pszInfo, size_t cchInfo) argument
45 AssertPtrReturn(pszInfo, VERR_INVALID_POINTER);
72 memcpy(pszInfo, pszSrc, cch + 1);
75 memcpy(pszInfo, pszSrc, cchInfo - 1);
76 pszInfo[cchInfo - 1] = '\0';
83 *pszInfo = '\0';
/vbox/src/VBox/Runtime/r3/win/
H A DRTSystemQueryOSInfo-win.cpp156 * @param pszInfo See RTSystemQueryOSInfo.
159 static int rtSystemWinQueryOSVersion(RTSYSOSINFO enmInfo, char *pszInfo, size_t cchInfo) argument
164 *pszInfo = '\0';
297 memcpy(pszInfo, szTmp, cchTmp + 1);
300 memcpy(pszInfo, szTmp, cchInfo - 1);
301 pszInfo[cchInfo - 1] = '\0';
307 RTDECL(int) RTSystemQueryOSInfo(RTSYSOSINFO enmInfo, char *pszInfo, size_t cchInfo)
313 AssertPtrReturn(pszInfo, VERR_INVALID_POINTER);
326 return rtSystemWinQueryOSVersion(enmInfo, pszInfo, cchInfo);
330 *pszInfo
[all...]
/vbox/src/VBox/VMM/VMMR3/
H A DVMMGuruMeditation.cpp624 const char *pszInfo; member in struct:__anon16864
642 if (fDoneHyper && !strcmp(aInfo[i].pszInfo, "cpumhyper"))
648 aInfo[i].pszInfo, aInfo[i].pszArgs);
649 DBGFR3Info(pVM->pUVM, aInfo[i].pszInfo, aInfo[i].pszArgs, pHlp);

Completed in 36 milliseconds