Searched refs:pszRet (Results 1 - 12 of 12) sorted by relevance

/vbox/src/VBox/HostDrivers/Support/
H A DSUPR3HardenedNoCrt.cpp115 char *pszRet = pszDst; local
122 return pszRet;
139 char *pszRet = pszDst; local
143 return pszRet;
/vbox/src/VBox/Runtime/generic/
H A Dstrcache-stubs-generic.cpp86 char *pszRet = (char *)RTMemPoolDupEx((RTMEMPOOL)hStrCache, pchString, cchString, 1);
87 if (pszRet)
88 RTStrToLower(pszRet);
89 return pszRet;
/vbox/src/VBox/Runtime/common/misc/
H A Dgetoptargv.cpp195 const char *pszRet; local
198 pszRet = pszSrc;
203 *ppszSrc = pszRet;
211 *ppszSrc = pszRet;
H A Dgetopt.cpp598 char *pszRet = NULL; local
599 int rc = RTStrToUInt32Ex(&pszArgThis[cchLong], &pszRet, 10, &uIndex);
602 if ( pszRet[0] != ':'
603 && pszRet[0] != '=')
606 pszValue = pszRet + 1;
/vbox/include/iprt/
H A Dstring.h2101 char *pszRet;
2104 pszRet = RTStrAPrintf2VTag(pszFormat, va, RTSTR_TAG);
2106 return pszRet;
2120 char *pszRet;
2123 pszRet = RTStrAPrintf2VTag(pszFormat, va, pszTag);
2125 return pszRet;
2499 char const *pszRet = (char const *)memchr(pszString, '\0', RTSTR_MEMCHR_MAX); local
2500 if (RT_LIKELY(pszRet))
2501 return pszRet;
2517 char *pszRet local
[all...]
/vbox/src/VBox/Additions/common/VBoxGuestLib/
H A DVBoxGuestR3LibGuestProp.cpp71 char const *pszRet = (char const *)memchr(pszString, '\0', RTSTR_MEMCHR_MAX); local
72 if (RT_LIKELY(pszRet))
73 return pszRet;
86 char *pszRet = (char *)memchr(pszString, '\0', RTSTR_MEMCHR_MAX); local
87 if (RT_LIKELY(pszRet))
88 return pszRet;
/vbox/src/VBox/VMM/VMMR3/
H A DMMHeap.cpp626 char *pszRet = (char *)MMR3HeapAllocU(pUVM, enmTag, cch + 1); local
627 if (pszRet)
628 memcpy(pszRet, psz, cch + 1);
630 return pszRet;
H A DPDMLdr.cpp1074 char *pszRet = (char *)RTMemTmpAlloc(cchDir + 1 + cchFile + cchDefaultExt + 1); local
1075 AssertMsgReturn(pszRet, ("Out of temporary memory!\n"), NULL);
1080 memcpy(pszRet, pszDir, cchDir);
1081 pszRet[cchDir++] = '/'; /* this works everywhere */
1082 memcpy(pszRet + cchDir, pszFile, cchFile + 1);
1084 memcpy(pszRet + cchDir + cchFile, pszDefaultExt, cchDefaultExt + 1);
1086 return pszRet;
1151 char *pszRet = (char *)RTMemTmpAlloc(cchPath); local
1152 if (pszRet)
1153 memcpy(pszRet, szPat
[all...]
/vbox/src/VBox/Runtime/testcase/
H A DtstUtf8.cpp1031 const char *pszRet = expr; \
1032 if (pszRet != NULL) \
1033 RTTestFailed(hTest, "%d: %#x -> %s expected NULL", __LINE__, #expr, pszRet); \
1038 const char *pszRet = expr; \
1039 if ( (pszRet != NULL && (expect) == NULL) \
1040 || (pszRet == NULL && (expect) != NULL) \
1041 || strcmp(pszRet, (expect)) \
1043 RTTestFailed(hTest, "%d: %#x -> %s expected %s", __LINE__, #expr, pszRet, (expect)); \
H A DtstRTInlineAsm.cpp120 char *pszRet; local
121 RTStrAPrintf(&pszRet, "%d way", u); /* intentional leak! */
122 return pszRet;
/vbox/src/VBox/Runtime/common/string/
H A Dstrcache.cpp949 const char *pszRet = RTStrCacheEnterN(pThis, pszHeapBuf, cchString); local
951 return pszRet;
/vbox/src/VBox/Runtime/common/dbg/
H A Ddbgmoddwarf.cpp1874 const char *pszRet = (const char *)pCursor->pb; local
1887 return pszRet;

Completed in 326 milliseconds