Searched defs:pszEnd (Results 1 - 25 of 42) sorted by relevance

12

/vbox/src/VBox/Devices/EFI/Firmware/VBoxPkg/Library/VBoxDebugLib/
H A DVBoxPrintString.c43 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 Dstrstrip.cpp51 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 Dsimplepattern.cpp168 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 Dstringalloc.cpp143 char const *pszEnd = RTStrEnd(pszString, cchMax); local
144 size_t cch = pszEnd ? (uintptr_t)pszEnd - (uintptr_t)pszString : cchMax;
H A Dstrformat.cpp562 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 DRTPathAppendEx.cpp68 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 DRTPathTraverseList.cpp60 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 DRTDirCreateUniqueNumbered-generic.cpp50 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 Dassert-r0drv-solaris.c67 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 DtstRTR0CommonDriver.h196 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 Dmessage.cpp83 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 DNetIf-solaris.cpp66 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 DEmulatedUSBImpl.cpp257 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 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
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 DUSBFilter.cpp330 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 Ddbgmodnm.cpp279 char *pszEnd = pszModNameEnd + 1; local
283 if (*pszEnd)
284 pszEnd = RTStrStripL(pszEnd);
285 if (*pszEnd)
/vbox/src/VBox/VMM/VMMR3/
H A DSTAM.cpp107 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 DDBGFAddrSpace.cpp839 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 DtstAnimate.cpp229 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 DDBGCEval.cpp1108 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 DDBGPlugInDarwin.cpp335 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 DDBGPlugInLinux.cpp434 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 DPerformanceLinux.cpp419 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 DRTDbgSymCache.cpp679 const char *pszEnd = &pszPath[cchPath + cchName]; local
685 && !memcmp(&pszEnd[-(ssize_t)cchSuff], papszSuffixes[i], cchSuff))
/vbox/src/VBox/Runtime/common/crypto/
H A Dx509-core.cpp988 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...]

Completed in 81 milliseconds

12