Searched defs:pchEnd (Results 1 - 8 of 8) sorted by relevance

/vbox/src/VBox/Runtime/common/string/
H A DRTStrNLen.cpp37 const char *pchEnd = RTStrEnd(pszString, cchMax); local
38 return pchEnd ? pchEnd - pszString : cchMax;
H A DRTStrNLenEx.cpp36 const char *pchEnd = RTStrEnd(pszString, cchMax); local
37 if (!pchEnd)
42 *pcch = pchEnd - pszString;
/vbox/src/VBox/Additions/common/VBoxGuestLib/
H A DVBoxGuestR3LibGuestProp.cpp735 char *pchEnd = pHandle->pchBufEnd; /* End of buffer, for size calculations. */ local
738 char *pszValue = pchNext = RTStrEnd(pchNext, pchEnd - pchNext) + 1;
741 char *pszTimestamp = pchNext = RTStrEnd(pchNext, pchEnd - pchNext) + 1;
744 char *pszFlags = pchNext = RTStrEnd(pchNext, pchEnd - pchNext) + 1;
754 pchNext = RTStrEnd(pchNext, pchEnd - pchNext) + 1;
/vbox/src/VBox/Runtime/common/zip/
H A Dtar.cpp473 const char *pchEnd = pch + sizeof(*pHdr); local
478 } while (++pch != pchEnd);
486 pchEnd = pch + sizeof(pHdr->Common.chksum);
491 } while (++pch != pchEnd);
H A Dtarvfs.cpp279 const char *pchEnd = pch + sizeof(*pHdr); local
284 } while (++pch != pchEnd);
292 pchEnd = pch + sizeof(pHdr->Common.chksum);
297 } while (++pch != pchEnd);
/vbox/src/VBox/Runtime/r3/
H A Dtest.cpp1002 const char *pchEnd = (const char *)memchr(pachChars, '\n', cbChars); local
1003 if (!pchEnd)
1012 size_t const cchPart = pchEnd - pachChars + 1;
/vbox/src/VBox/ValidationKit/utils/TestExecServ/
H A DTestExecService.cpp758 const char *pchEnd = (const char *)pPktHdr + pPktHdr->cb; local
2606 char const *pchEnd = (char const *)pPktHdr + pPktHdr->cb; local
2622 uint32_t const cArgs = (size_t)(pchEnd - pch) > sizeof(uint32_t) ? *(uint32_t const *)pch : 0xff;
2624 if (cArgs * 1 >= (size_t)(pchEnd - pch))
2644 uint32_t const cEnvVars = (size_t)(pchEnd - pch) > sizeof(uint32_t) ? *(uint32_t const *)pch : 0xfff;
2646 if (cEnvVars * 1 >= (size_t)(pchEnd - pch))
2687 uint32_t const cMillies = (size_t)(pchEnd - pch) >= sizeof(uint32_t)
2690 if ((size_t)(pchEnd - pch) > sizeof(uint32_t))
2691 rc = txsReplyFailure(pPktHdr, "BAD END ", "Timeout argument not at end of packet (%#x)", (size_t)(pchEnd - pch));
2692 else if ((size_t)(pchEnd
[all...]
/vbox/src/VBox/Devices/Graphics/
H A DDevVGA.cpp5610 char *pchEnd; local
5638 pchEnd = (char *)&pThis->invalidated_y_table;
5639 memset(pchStart, 0, pchEnd - pchStart);
5643 pchEnd = (char *)&pThis->u32Marker;
5644 memset(pchStart, 0, pchEnd - pchStart);

Completed in 97 milliseconds