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

/vbox/src/VBox/Runtime/common/net/
H A Dnetaddrstr2.cpp41 char **ppszNext)
71 if (ppszNext != NULL)
72 *ppszNext = pszNext;
78 char **ppszNext)
80 return rtNetStrToIPv4AddrEx(pcszAddr, pAddr, ppszNext);
128 static int rtNetStrToHexGroup(const char *pcszValue, char **ppszNext, argument
150 if (ppszNext)
151 *ppszNext = (/* UNCONST */ char *)pcszValue + 1; /* to 'x' */
159 if (ppszNext)
160 *ppszNext
40 rtNetStrToIPv4AddrEx(const char *pcszAddr, PRTNETADDRIPV4 pAddr, char **ppszNext) argument
77 RTNetStrToIPv4AddrEx(const char *pcszAddr, PRTNETADDRIPV4 pAddr, char **ppszNext) argument
169 rtNetStrToIPv6AddrBase(const char *pcszAddr, PRTNETADDRIPV6 pAddrResult, char **ppszNext) argument
304 rtNetStrToIPv6AddrEx(const char *pcszAddr, PRTNETADDRIPV6 pAddr, char **ppszZone, char **ppszNext) argument
364 RTNetStrToIPv6AddrEx(const char *pcszAddr, PRTNETADDRIPV6 pAddr, char **ppszNext) argument
[all...]
/vbox/src/VBox/Runtime/common/string/
H A Dstrtonum.cpp104 * @param ppszNext Where to store the pointer to the first char following the number. (Optional)
109 RTDECL(int) RTStrToUInt64Ex(const char *pszValue, char **ppszNext, unsigned uBase, uint64_t *pu64) argument
195 if (ppszNext)
196 *ppszNext = (char *)psz;
284 * @param ppszNext Where to store the pointer to the first char following the number. (Optional)
289 RTDECL(int) RTStrToUInt32Ex(const char *pszValue, char **ppszNext, unsigned uBase, uint32_t *pu32) argument
292 int rc = RTStrToUInt64Ex(pszValue, ppszNext, uBase, &u64);
371 * @param ppszNext Where to store the pointer to the first char following the number. (Optional)
376 RTDECL(int) RTStrToUInt16Ex(const char *pszValue, char **ppszNext, unsigned uBase, uint16_t *pu16) argument
379 int rc = RTStrToUInt64Ex(pszValue, ppszNext, uBas
463 RTStrToUInt8Ex(const char *pszValue, char **ppszNext, unsigned uBase, uint8_t *pu8) argument
554 RTStrToInt64Ex(const char *pszValue, char **ppszNext, unsigned uBase, int64_t *pi64) argument
728 RTStrToInt32Ex(const char *pszValue, char **ppszNext, unsigned uBase, int32_t *pi32) argument
815 RTStrToInt16Ex(const char *pszValue, char **ppszNext, unsigned uBase, int16_t *pi16) argument
902 RTStrToInt8Ex(const char *pszValue, char **ppszNext, unsigned uBase, int8_t *pi8) argument
[all...]
/vbox/src/VBox/Main/src-server/linux/
H A DUSBGetDevices.cpp105 static int usbReadSkipSuffix(char **ppszNext) argument
107 char *pszNext = *ppszNext;
122 AssertMsgFailed(("*ppszNext=%s\n", *ppszNext));
135 *ppszNext = pszNext;
145 static int usbReadNum(const char *pszValue, unsigned uBase, uint32_t u32Mask, PCUSBSUFF paSuffs, void *pvNum, char **ppszNext) argument
208 *ppszNext = pszNext;
224 static int usbRead8(const char *pszValue, unsigned uBase, uint8_t *pu8, char **ppszNext) argument
226 return usbReadNum(pszValue, uBase, 0xff, NULL, pu8, ppszNext);
230 static int usbRead16(const char *pszValue, unsigned uBase, uint16_t *pu16, char **ppszNext) argument
248 usbReadBCD(const char *pszValue, unsigned uBase, uint16_t *pu16, char **ppszNext) argument
356 usbReadSpeed(const char *pszValue, USBDEVICESPEED *pSpd, char **ppszNext) argument
[all...]
/vbox/src/VBox/ValidationKit/utils/TestExecServ/
H A DTestExecService.cpp610 * @param ppszNext Where to return the pointer to the next field.
618 char **ppszExp, const char **ppszNext, int *prcSend)
621 if (ppszNext)
622 *ppszNext = NULL;
641 if (!ppszNext && (size_t)(pszEnd - psz) != cchMax - 1)
650 if (ppszNext)
651 *ppszNext = pszEnd + 1;
617 txsIsStringValid(PCTXSPKTHDR pPktHdr, const char *pszArgName, const char *psz, char **ppszExp, const char **ppszNext, int *prcSend) argument
/vbox/src/VBox/Storage/
H A DVMDK.cpp1362 char **ppszUnquoted, char **ppszNext)
1391 if (ppszNext)
1392 *ppszNext = pszQ + 1;
1361 vmdkStringUnquote(PVMDKIMAGE pImage, const char *pszStr, char **ppszUnquoted, char **ppszNext) argument

Completed in 108 milliseconds