Lines Matching refs:pfO
409 SQLITE_INTERNAL_LINKAGE int fPrintfUtf8(FILE *pfO, const char *zFormat, ...);
422 SQLITE_INTERNAL_LINKAGE int fPutsUtf8(const char *z, FILE *pfO);
980 SQLITE_INTERNAL_LINKAGE int fPrintfUtf8(FILE *pfO, const char *zFormat, ...){ in fPrintfUtf8() argument
985 PerStreamTags *ppst = getEmitStreamInfo(0, &pst, &pfO); in fPrintfUtf8()
987 getEmitStreamInfo(0, &pst, &pfO); in fPrintfUtf8()
998 rv = vfprintf(pfO, zFormat, ap); in fPrintfUtf8()
1006 SQLITE_INTERNAL_LINKAGE int fPutsUtf8(const char *z, FILE *pfO){ in fPutsUtf8() argument
1009 PerStreamTags *ppst = getEmitStreamInfo(0, &pst, &pfO); in fPutsUtf8()
1011 getEmitStreamInfo(0, &pst, &pfO); in fPutsUtf8()
1023 return (fputs(z, pfO)<0)? 0 : (int)strlen(z); in fPutsUtf8()
1109 fPutbUtf8(FILE *pfO, const char *cBuf, int nAccept){ in fPutbUtf8() argument
1110 assert(pfO!=0); in fPutbUtf8()
1113 PerStreamTags *ppst = getEmitStreamInfo(0, &pst, &pfO); in fPutbUtf8()
1122 return (int)fwrite(cBuf, 1, nAccept, pfO); in fPutbUtf8()
19863 FILE *pfO = setOutputStream(invalidFileStream); in output_quoted_string() local
19864 setBinaryMode(pfO, 1); in output_quoted_string()
19891 setTextMode(pfO, 1); in output_quoted_string()
19910 FILE *pfO = setOutputStream(invalidFileStream); in output_quoted_escaped_string() local
19911 setBinaryMode(pfO, 1); in output_quoted_escaped_string()
19965 setTextMode(pfO, 1); in output_quoted_escaped_string()
24302 # define output_redir(SS,pfO) argument