Searched refs:pszStart (Results 1 - 18 of 18) sorted by relevance

/vbox/src/VBox/Runtime/tools/
H A DRTLdrFlt.cpp55 const char *pszStart = psz; local
112 *pcchAddress = psz + off - pszStart;
352 const char *pszStart = szLine; local
369 if (pszStart != psz)
370 RTStrmWrite(pOutput, pszStart, psz - pszStart);
371 pszStart = psz;
420 if (pszStart != psz)
421 RTStrmWrite(pOutput, pszStart, psz - pszStart);
[all...]
/vbox/src/VBox/HostDrivers/Support/
H A DSUPR3HardenedNoCrt.cpp129 const char *pszStart = psz; local
132 return psz - pszStart;
/vbox/src/VBox/Runtime/common/crypto/
H A Dx509-core.cpp359 const char * const pszStart = psz; local
369 if ((uintptr_t)(pszPrev - pszStart) >= *pcch)
376 *pcch -= pszPrev - pszStart;
388 const char * const pszStart = psz; local
397 if ((uintptr_t)(pszPrev - pszStart) >= *pcch)
412 *pcch -= pszPrev - pszStart;
978 const char *pszStart = strchr(pszUri, ':'); local
979 while (pszStart && (pszStart[1] != '/' || pszStart[
[all...]
/vbox/src/VBox/Main/src-server/solaris/
H A DPerformanceSolaris.cpp629 char *pszStart, *pszEnd; local
630 pszStart = strstr(szLink, "/devices/");
632 if (pszStart && pszEnd)
634 pszStart += 8; // Skip "/devices"
636 return physToInstName(pszStart);
679 char *pszStart, *pszEnd; local
680 pszStart = strstr(szLink, "/devices/");
682 if (pszStart && pszEnd)
684 pszStart += 8; // Skip "/devices"
686 listUsage.push_back(physToInstName(pszStart));
[all...]
/vbox/src/VBox/Main/src-server/
H A DVRDEServerImpl.cpp289 static int i_portParseNumber(uint16_t *pu16Port, const char *pszStart, const char *pszEnd) argument
292 * Note: pszStart <= pszEnd is expected, the string contains
296 size_t cch = pszEnd - pszStart;
300 while (pszStart != pszEnd)
302 uPort = uPort * 10 + *pszStart - '0';
303 pszStart++;
327 const char *pszStart = pszPortRange; local
329 const char *pszEnd = pszStart;
357 rc = i_portParseNumber(NULL, pszStart, pszDash);
362 rc = i_portParseNumber(NULL, pszStart, pszEn
[all...]
/vbox/src/VBox/Main/src-client/
H A DGuestCtrlPrivate.cpp755 char *pszStart = pszOff; local
757 while (*pszStart)
759 size_t pairLen = strlen(pszStart);
760 uDistance = (pszStart - pszOff);
768 char *pszSep = strchr(pszStart, '=');
779 * use pszStart as our key from now on. */
782 rc = streamBlock.SetValue(pszStart, pszVal);
788 pszStart += pairLen + 1;
794 uDistance = (pszStart - pszOff);
796 && *pszStart
[all...]
H A DConsoleImplTeleporter.cpp189 char *pszStart = pszBuf; local
202 LogRel(("Teleporter: RTTcpRead -> %Rrc while reading string ('%s')\n", rc, pszStart));
210 LogRel(("Teleporter: String buffer overflow: '%s'\n", pszStart));
/vbox/src/VBox/Runtime/testcase/
H A DtstRTDigest.cpp102 char *pszStart = RTStrStrip(pszBuf); local
103 if (*pszStart && *pszStart != '#')
104 return pszStart;
/vbox/src/VBox/Runtime/common/asn1/
H A Dasn1-ut-objid.cpp205 const char *pszStart = psz; local
224 if (RT_UNLIKELY(psz - pszStart >= 9))
225 if ( psz - pszStart > 9
226 || strncmp(pszStart, "4294967216", 9) >= 0) /* 2^32 - 80 */
/vbox/src/VBox/Runtime/r3/
H A Ddir.cpp200 const char *pszStart = pszNext; local
209 pszNext = RTStrPrevCp(NULL, pszStart); AssertReturn(pszNext, false);
299 const char *pszStart = pszNext; local
308 pszNext = RTStrPrevCp(NULL, pszStart); AssertReturn(pszNext, false);
/vbox/src/VBox/Runtime/common/string/
H A Dstrformat.cpp174 char *pszStart = psz; local
344 return (unsigned)(psz - pszStart);
H A Dstrformatrt.cpp708 const char *pszStart; local
709 const char *psz = pszStart = va_arg(*pArgs, const char *);
721 pszStart = psz;
729 return pfnOutput(pvArgOutput, pszStart, psz - pszStart);
H A Dutf-8.cpp1594 RTDECL(char *) RTStrPrevCp(const char *pszStart, const char *psz) argument
1596 if (pszStart < psz)
1603 RTStrAssertMsgReturn(!(uch & RT_BIT(6)), ("uch=%#x\n", uch), (char *)pszStart);
1607 while ( (const unsigned char *)pszStart < puch
1615 (char *)pszStart);
1622 return (char *)pszStart;
/vbox/src/VBox/VMM/VMMR3/
H A DSTAM.cpp105 char *pszStart; member in struct:STAMR3SNAPSHOTONE
1276 const char *pszStart = &pszName[offName];
1277 const char *pszEnd = strchr(pszStart, '/');
1278 uint32_t cch = pszEnd ? (uint32_t)(pszEnd - pszStart) : cchName - offName;
1288 PSTAMLOOKUP pChild = stamR3LookupFindChild(pLookup, pszStart, cch, &iChild);
1291 pChild = stamR3LookupNewChild(pLookup, pszStart, cch, offName, iChild);
1821 RTMemFree(State.pszStart);
1822 State.pszStart = State.pszEnd = State.psz = NULL;
1829 *ppszSnapshot = State.pszStart;
1831 *pcchSnapshot = State.psz - State.pszStart;
[all...]
H A DFTM.cpp240 char *pszStart = pszBuf; local
253 LogRel(("FTSync: RTTcpRead -> %Rrc while reading string ('%s')\n", rc, pszStart));
261 LogRel(("FTSync: String buffer overflow: '%s'\n", pszStart));
/vbox/src/VBox/Runtime/common/log/
H A Dlog.cpp1694 const char *pszStart;
1710 pszStart = pszValue;
1718 cch = pszValue - pszStart;
1720 && (pszStart[0] == 'a' || pszStart[0] == 'A')
1721 && (pszStart[1] == 'l' || pszStart[1] == 'L')
1722 && (pszStart[2] == 'l' || pszStart[2] == 'L')
1723 && (cch == 3 || pszStart[
[all...]
/vbox/src/VBox/Storage/
H A DDMG.cpp1035 const char *pszStart = psz; local
1041 *ppszString = (char *)RTMemDupEx(pszStart, pszEnd - pszStart, 1);
1068 const char *pszStart = psz; local
1069 ssize_t cbData = RTBase64DecodedSize(pszStart, (char **)&psz);
1080 int rc = RTBase64Decode(pszStart, *ppbData, cbData, pcbData, &pszIgnored);
/vbox/include/iprt/
H A Dstring.h1328 * @returns pszStart on failure.
1329 * @param pszStart Pointer to the start of the string.
1332 RTDECL(char *) RTStrPrevCp(const char *pszStart, const char *psz);
1449 * @returns pszStart on failure.
1450 * @param pszStart Pointer to the start of the string.

Completed in 157 milliseconds