Lines Matching refs:cbValue
371 int validateValue(const char *pszValue, uint32_t cbValue);
449 * @param cbValue the length in bytes of @a pszValue, including the
453 int Service::validateValue(const char *pszValue, uint32_t cbValue)
455 LogFlowFunc(("cbValue=%d\n", cbValue));
458 if (RT_SUCCESS(rc) && cbValue == 0)
461 LogFlow((" pszValue=%s\n", cbValue > 0 ? pszValue : NULL));
603 size_t const cbValue = pProp->mValue.size() + 1;
604 size_t const cbNeeded = cbValue + cbFlags;
609 memcpy(pchBuf, pProp->mValue.c_str(), cbValue);
610 memcpy(pchBuf + cbValue, szFlags, cbFlags);
843 size_t const cbValue = pProp->mValue.length() + 1;
844 size_t const cbRequired = cbName + cbValue + cbTimestamp + cbFlags;
862 memcpy(pchCur, pProp->mValue.c_str(), cbValue);
863 pchCur += cbValue;