Home | History | Annotate | Download | only in stdio

Lines Matching defs:fake

163 	FILE fake;
170 _FILEEXT_SETUP(&fake, &fakeext);
171 memset(WCIO_GET(&fake), 0, sizeof(struct wchar_io_data));
174 fake._flags = fp->_flags & ~__SNBF;
175 fake._file = fp->_file;
176 fake._cookie = fp->_cookie;
177 fake._write = fp->_write;
178 fake._flush = fp->_flush;
181 fake._bf._base = fake._p = buf;
182 fake._bf._size = fake._w = sizeof(buf);
183 fake._lbfsize = 0; /* not actually used, but Just In Case */
186 ret = WDECL(__vf,printf_unlocked_l)(&fake, loc, fmt, ap);
187 if (ret >= 0 && fflush(&fake))
189 if (fake._flags & __SERR)
196 * Like __fputwc, but handles fake string (__SSTR) files properly.