Lines Matching defs:pszStr

548     char *pszStr, *pNewLine;
562 pszStr = *ppszStr;
563 if (!*pszStr)
569 if (!(pNewLine = strstr(pszStr, "\n")))
572 *ppszStr += strlen(pszStr);
574 return pszStr;
578 *pcbStr = cbStr - (((uintptr_t)pNewLine) - ((uintptr_t)pszStr)) - 1;
583 return pszStr;
586 static void crRecDumpStrByLine(CR_DUMPER *pDumper, char *pszStr, uint32_t cbStr)
589 while ((pszCurLine = crRecDumpGetLine(&pszStr, &cbStr)) != NULL)
1340 void crRecDumpTextureV(CR_RECORDER *pRec, const VBOXVR_TEXTURE *pTex, const char *pszStr, va_list pArgList)
1349 crDmpImgV(pRec->pDumper, &Img, pszStr, pArgList);
1378 void crRecDumpTextureF(CR_RECORDER *pRec, const VBOXVR_TEXTURE *pTex, const char *pszStr, ...)
1381 va_start(pArgList, pszStr);
1382 crRecDumpTextureV(pRec, pTex, pszStr, pArgList);
1386 void crRecDumpTextureByIdV(CR_RECORDER *pRec, CRContext *ctx, GLint id, const char *pszStr, va_list pArgList)
1408 crRecDumpTextureV(pRec, &Tex, pszStr, pArgList);
1411 void crRecDumpTextureByIdF(CR_RECORDER *pRec, CRContext *ctx, GLint id, const char *pszStr, ...)
1414 va_start(pArgList, pszStr);
1415 crRecDumpTextureByIdV(pRec, ctx, id, pszStr, pArgList);
1626 DECLCALLBACK(void) crDmpDumpStrDbgPrint(struct CR_DUMPER * pDumper, const char*pszStr)
1628 crDmpPrint("%s\n", pszStr);
1632 static void crDmpHtmlDumpStrExact(struct CR_HTML_DUMPER * pDumper, const char *pszStr)
1634 fprintf(pDumper->pFile, "%s", pszStr);
1638 static DECLCALLBACK(void) crDmpHtmlDumpStr(struct CR_DUMPER * pDumper, const char*pszStr)
1641 fprintf(pHtmlDumper->pFile, "<pre>%s</pre>\n", pszStr);