Lines Matching refs:pfOut
338 consoleClassifySetup( FILE *pfIn, FILE *pfOut, FILE *pfErr );
436 fPutbUtf8(FILE *pfOut, const char *cBuf, int nAccept);
732 consoleClassifySetup( FILE *pfIn, FILE *pfOut, FILE *pfErr ){ in consoleClassifySetup() argument
734 FILE* apf[3] = { pfIn, pfOut, pfErr }; in consoleClassifySetup()
931 FILE *pfOut; in oPrintfUtf8() local
934 PerStreamTags *ppst = getEmitStreamInfo(1, &pst, &pfOut); in oPrintfUtf8()
936 getEmitStreamInfo(1, &pst, &pfOut); in oPrintfUtf8()
945 rv = vfprintf(pfOut, zFormat, ap); in oPrintfUtf8()
1047 FILE *pfOut; in oPutsUtf8() local
1050 PerStreamTags *ppst = getEmitStreamInfo(1, &pst, &pfOut); in oPutsUtf8()
1052 getEmitStreamInfo(1, &pst, &pfOut); in oPutsUtf8()
1059 return (fputs(z, pfOut)<0)? 0 : (int)strlen(z); in oPutsUtf8()
1129 FILE *pfOut; in oPutbUtf8() local
1132 PerStreamTags *ppst = getEmitStreamInfo(1, &pst, &pfOut); in oPutbUtf8()
1134 getEmitStreamInfo(1, &pst, &pfOut); in oPutbUtf8()
1141 return (int)fwrite(cBuf, 1, nAccept, pfOut); in oPutbUtf8()