Lines Matching refs:pfOut
338 consoleClassifySetup( FILE *pfIn, FILE *pfOut, FILE *pfErr );
436 fPutbUtf8(FILE *pfOut, const char *cBuf, int nAccept);
734 consoleClassifySetup( FILE *pfIn, FILE *pfOut, FILE *pfErr ){ in consoleClassifySetup() argument
736 FILE* apf[3] = { pfIn, pfOut, pfErr }; in consoleClassifySetup()
933 FILE *pfOut; in oPrintfUtf8() local
936 PerStreamTags *ppst = getEmitStreamInfo(1, &pst, &pfOut); in oPrintfUtf8()
938 getEmitStreamInfo(1, &pst, &pfOut); in oPrintfUtf8()
947 rv = vfprintf(pfOut, zFormat, ap); in oPrintfUtf8()
1049 FILE *pfOut; in oPutsUtf8() local
1052 PerStreamTags *ppst = getEmitStreamInfo(1, &pst, &pfOut); in oPutsUtf8()
1054 getEmitStreamInfo(1, &pst, &pfOut); in oPutsUtf8()
1061 return (fputs(z, pfOut)<0)? 0 : (int)strlen(z); in oPutsUtf8()
1131 FILE *pfOut; in oPutbUtf8() local
1134 PerStreamTags *ppst = getEmitStreamInfo(1, &pst, &pfOut); in oPutbUtf8()
1136 getEmitStreamInfo(1, &pst, &pfOut); in oPutbUtf8()
1143 return (int)fwrite(cBuf, 1, nAccept, pfOut); in oPutbUtf8()