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

/vbox/src/bldprogs/
H A DVBoxTpG.cpp888 static RTEXITCODE generateProbeDefineName(char *pszBuf, size_t cbBuf, const char *pszProvider, const char *pszProbe) argument
890 size_t cbMax = strlen(pszProvider) + 1 + strlen(pszProbe) + 1;
892 return RTMsgErrorExit(RTEXITCODE_FAILURE, "Probe '%s' in provider '%s' ends up with a too long defined\n", pszProbe, pszProvider);
899 while (*pszProbe)
901 if (pszProbe[0] == '_' && pszProbe[1] == '_')
902 pszProbe++;
903 *pszBuf++ = RT_C_TO_UPPER(*pszProbe++);
1919 const char *pszProbe = parseGetNextCWord(pStrm, &cchProbe); local
1920 if (!pszProbe)
[all...]

Completed in 71 milliseconds