Searched defs:cchType (Results 1 - 4 of 4) sorted by relevance

/vbox/src/VBox/Runtime/common/string/
H A Dstrformattype.cpp65 uint8_t cchType; member in struct:RTSTRDYNFMT
178 * @param cchType The number of chars in @a pszType to compare.
181 DECLINLINE(int) rtstrFormatTypeCompare(const char *pszType, size_t cchType, PCRTSTRDYNFMT pType) argument
183 size_t cch = RT_MIN(cchType, pType->cchType);
187 if (cchType == pType->cchType)
189 iDiff = cchType < pType->cchType ? -1 : 1;
200 * @param cchType Th
202 rtstrFormatTypeLookup(const char *pszType, size_t cchType) argument
251 size_t cchType; local
[all...]
/vbox/src/VBox/HostDrivers/Support/
H A DSUPDrv-dtrace.cpp544 size_t cchType = strlen(pszType); local
545 if (cchType < sizeof(pArgDesc->dtargd_native))
547 memcpy(pArgDesc->dtargd_native, pszType, cchType + 1);
/vbox/src/VBox/ExtPacks/VBoxDTrace/
H A DVBoxDTraceR0.cpp1605 size_t cchType = strlen(pszType); local
1606 if (cchType < sizeof(pArgDesc->dtargd_native))
1608 memcpy(pArgDesc->dtargd_native, pszType, cchType + 1);
/vbox/src/bldprogs/
H A DVBoxTpG.cpp1658 size_t cchType = strlen(pszType); local
1659 #define MY_STRMATCH(a_sz) (cchType == sizeof(a_sz) - 1 && !memcmp(a_sz, pszType, sizeof(a_sz) - 1))
1664 if (pszType[cchType - 1] == '*')
1669 if (pszType[cchType - 1] == '&')
1810 * @param cchType The type length.
1815 char *pchType, size_t cchType, char *pchName, size_t cchName)
1821 pArg->pszTracerType = strtabInsertN(pchType, cchType);
1863 pArg->pszCtxType = RTStrDupN(pchType, cchType);
1867 pArg->pszCtxType = RTStrDupN(pchType, cchType);
1814 parseInitArgument(PVTGPROBE pProbe, PVTGARG pArg, PSCMSTREAM pStrm, char *pchType, size_t cchType, char *pchName, size_t cchName) argument

Completed in 76 milliseconds