/vbox/src/VBox/Devices/EFI/Firmware/VBoxPkg/Library/VBoxDebugLib/ |
H A D | VBoxPrintString.c | 43 const char *pszEnd = pszString; local 44 while (*pszEnd) 45 pszEnd++; 46 ASMOutStrU8(EFI_DEBUG_PORT, (uint8_t const *)pszString, pszEnd - pszString); 47 return pszEnd - pszString;
|
/vbox/src/VBox/Runtime/common/string/ |
H A D | strstrip.cpp | 51 char *pszEnd = strchr(psz, '\0'); local 52 while (--pszEnd > psz && RT_C_IS_SPACE(*pszEnd)) 53 *pszEnd = '\0'; 86 char *pszEnd = strchr(psz, '\0'); local 87 while (--pszEnd > psz && RT_C_IS_SPACE(*pszEnd)) 88 *pszEnd = '\0';
|
H A D | simplepattern.cpp | 168 const char *pszEnd = pszCur; local 169 while (cchPatterns && (ch = *pszEnd) != '\0' && ch != '|') 170 cchPatterns--, pszEnd++; 175 if (RTStrSimplePatternNMatch(pszCur, pszEnd - pszCur, pszString, cchString)) 186 pszCur = pszEnd + 1;
|
H A D | stringalloc.cpp | 143 char const *pszEnd = RTStrEnd(pszString, cchMax); local 144 size_t cch = pszEnd ? (uintptr_t)pszEnd - (uintptr_t)pszString : cchMax;
|
H A D | strformat.cpp | 562 char *pszEnd = RTStrPutCp(szUtf8, Cp); local 563 cch += pfnOutput(pvArgOutput, szUtf8, pszEnd - szUtf8); 594 char *pszEnd = RTStrPutCp(szUtf8, *puszStr++); local 595 cch += pfnOutput(pvArgOutput, szUtf8, pszEnd - szUtf8);
|
/vbox/src/VBox/Runtime/common/path/ |
H A D | RTPathAppendEx.cpp | 68 const char *pszEnd = pszPath + 2; local 69 pszEnd += 2; 70 while ( *pszEnd != '\0' 71 && !RTPATH_IS_SLASH(*pszEnd)) 72 pszEnd++; 73 if (RTPATH_IS_SLASH(*pszEnd)) 75 pszEnd++; 76 while (RTPATH_IS_SLASH(*pszEnd)) 77 pszEnd++; 80 while ( *pszEnd ! [all...] |
H A D | RTPathTraverseList.cpp | 60 const char *pszEnd = strchr(psz, chSep); local 61 if (!pszEnd) 62 pszEnd = pszNext = strchr(psz, '\0'); 64 pszNext = pszEnd + 1; 65 if (pszEnd != psz) 67 size_t const cch = pszEnd - psz;
|
/vbox/src/VBox/Runtime/generic/ |
H A D | RTDirCreateUniqueNumbered-generic.cpp | 50 char *pszEnd = RTStrEnd(pszPath, cbSize); local 51 AssertReturn(pszEnd, VERR_BUFFER_OVERFLOW); 52 AssertReturn(cbSize - 1 - (pszEnd - pszPath) >= (size_t)cchDigits + (chSep ? 1 : 0), VERR_BUFFER_OVERFLOW); 53 size_t cbLeft = cbSize - (pszEnd - pszPath); 65 *pszEnd++ = chSep; 66 *pszEnd = '\0'; 85 ssize_t rc2 = RTStrFormatU32(pszEnd, cbLeft, i, 10, cchDigits, 0, RTSTR_F_WIDTH | RTSTR_F_ZEROPAD);
|
/vbox/src/VBox/Runtime/r0drv/solaris/ |
H A D | assert-r0drv-solaris.c | 67 const char *pszEnd = &g_szRTAssertMsg2[sizeof(g_szRTAssertMsg2)]; local 68 while (psz < pszEnd && (*psz == ' ' || *psz == '\t' || *psz == '\n' || *psz == '\r')) 71 if (psz < pszEnd && *psz)
|
/vbox/src/VBox/Runtime/testcase/ |
H A D | tstRTR0CommonDriver.h | 196 char *pszEnd = pszNext ? pszNext - 1 : strchr(pszCur, '\0'); local 197 while ( (uintptr_t)pszEnd > (uintptr_t)pszCur 198 && pszEnd[-1] == '\n') 199 *--pszEnd = '\0';
|
/vbox/src/VBox/Runtime/common/misc/ |
H A D | message.cpp | 83 char *pszEnd = strchr(psz, '\n'); local 84 if (!pszEnd) 89 if (pszEnd == psz) 93 *pszEnd = '\0'; 96 psz = pszEnd + 1;
|
/vbox/src/VBox/Main/src-server/solaris/ |
H A D | NetIf-solaris.cpp | 66 const char *pszEnd = pszIfaceName + cbIface - 1; local 69 if (!RT_C_IS_DIGIT(*pszEnd)) 72 pszEnd--; 75 uint32_t uInstance = RTStrToUInt32(pszEnd + 1); 336 const char *pszEnd = pszIface + cbIface - 1; local 339 if (!RT_C_IS_DIGIT(*pszEnd)) 342 pszEnd--; 345 int Instance = atoi(pszEnd + 1);
|
/vbox/src/VBox/Main/src-client/ |
H A D | EmulatedUSBImpl.cpp | 257 char *pszEnd = RTStrStr(pszEq, ";"); local 258 if (!pszEnd) 260 pszEnd = pszEq + strlen(pszEq); 264 char chEnd = *pszEnd; 265 *pszEnd = 0; 281 *pszEnd = chEnd; 283 pszSrc = pszEnd;
|
/vbox/src/VBox/Main/src-server/ |
H A D | VRDEServerImpl.cpp | 289 static int i_portParseNumber(uint16_t *pu16Port, const char *pszStart, const char *pszEnd) argument 292 * Note: pszStart <= pszEnd is expected, the string contains 293 * only digits and pszEnd points to the char after last 296 size_t cch = pszEnd - pszStart; 300 while (pszStart != pszEnd) 329 const char *pszEnd = pszStart; local 331 while (*pszEnd && *pszEnd != ',') 333 if (*pszEnd == '-') 338 pszDash = pszEnd; [all...] |
/vbox/src/VBox/HostDrivers/VBoxUSB/ |
H A D | USBFilter.cpp | 330 const char *pszEnd = RTStrEnd(psz, &pFilter->achStrTab[sizeof(pFilter->achStrTab)] - psz); local 331 if (!pszEnd) 351 psz = pszEnd + 1;
|
/vbox/src/VBox/Runtime/common/dbg/ |
H A D | dbgmodnm.cpp | 279 char *pszEnd = pszModNameEnd + 1; local 283 if (*pszEnd) 284 pszEnd = RTStrStripL(pszEnd); 285 if (*pszEnd)
|
/vbox/src/VBox/VMM/VMMR3/ |
H A D | STAM.cpp | 107 char *pszEnd; member in struct:STAMR3SNAPSHOTONE 870 const char *pszEnd = strchr(pszName, '/'); 871 uint32_t cch = pszEnd ? pszEnd - pszName : (uint32_t)strlen(pszName); 875 if (!pszEnd) 877 pszName = pszEnd; 1037 const char *pszEnd = strchr(pszPat, '/'); 1038 uint32_t cch = pszEnd ? pszEnd - pszPat : (uint32_t)strlen(pszPat); 1060 if (!pszEnd) [all...] |
H A D | DBGFAddrSpace.cpp | 839 const char *pszEnd = strchr(psz, ';'); local 840 if (!pszEnd) 841 pszEnd = pszNext = strchr(psz, '\0'); 843 pszNext = pszEnd + 1; 844 if (pszEnd != psz) 846 size_t const cch = pszEnd - psz;
|
/vbox/src/VBox/VMM/testcase/ |
H A D | tstAnimate.cpp | 229 char *pszEnd = strchr(psz, '\n'); local 230 if (!pszEnd) 231 pszEnd = strchr(psz, '\r'); 232 if (!pszEnd) 233 pszNext = pszEnd = strchr(psz, '\0'); 235 pszNext = pszEnd + 1; 240 *pszEnd = '\0'; 241 while (pszEnd > psz && RT_C_IS_SPACE(pszEnd[-1])) 242 *--pszEnd [all...] |
/vbox/src/VBox/Debugger/ |
H A D | DBGCEval.cpp | 1108 char *pszEnd = NULL; local 1123 pszEnd = psz; 1171 pszEnd = psz++; 1181 pszEnd = psz++; /* in case it's the end. */ 1212 pszEnd = psz; 1229 *pszEnd = '\0';
|
H A D | DBGPlugInDarwin.cpp | 335 char *pszEnd = RTStrEnd(pszVersion, cchVersion); local 336 AssertReturn(pszEnd, VERR_BUFFER_OVERFLOW); 337 while ( pszEnd > pszVersion 338 && RT_C_IS_SPACE(pszEnd[-1])) 339 pszEnd--; 340 *pszEnd = '\0';
|
H A D | DBGPlugInLinux.cpp | 434 char *pszEnd = RTStrEnd(pszVersion, cchVersion); local 435 AssertReturn(pszEnd, VERR_BUFFER_OVERFLOW); 436 while ( pszEnd > pszVersion 437 && RT_C_IS_SPACE(pszEnd[-1])) 438 pszEnd--; 439 *pszEnd = '\0';
|
/vbox/src/VBox/Main/src-server/linux/ |
H A D | PerformanceLinux.cpp | 419 char *pszEnd = pszName + cbName - 1; local 420 while (pszEnd > pszName && *pszEnd == '\n') 421 pszEnd--; 422 pszEnd[1] = '\0'; 433 char *pszEnd = pszName + cbName - 1; local 434 while (pszEnd > pszName && (RT_C_IS_DIGIT(*pszEnd) || *pszEnd == '\n')) 435 pszEnd 455 const char *pszEnd = pszDevName + cbDevName - 1; local [all...] |
/vbox/src/VBox/Runtime/tools/ |
H A D | RTDbgSymCache.cpp | 679 const char *pszEnd = &pszPath[cchPath + cchName]; local 685 && !memcmp(&pszEnd[-(ssize_t)cchSuff], papszSuffixes[i], cchSuff))
|
/vbox/src/VBox/Runtime/common/crypto/ |
H A D | x509-core.cpp | 988 const char *pszEnd = strchr(pszStart, '/'); local 989 if (!pszEnd) 990 pszEnd = strchr(pszStart, '\0'); 991 if (memchr(pszStart, ':', pszEnd - pszStart)) 993 pszEnd--; 994 while (*pszEnd != ':'); 995 if (pszEnd != pszStart) 1000 const char *pszAt = (const char *)memchr(pszStart, '@', pszEnd - pszStart); 1007 if (pszEnd != pszStart) 1009 *pcchHostName = pszEnd [all...] |