Lines Matching refs:stream
225 FILE *stream = NULL;
233 result = isc_stdio_open(filename, "r", &stream);
237 result = new_source(lex, ISC_TRUE, ISC_TRUE, stream, filename);
239 (void)fclose(stream);
244 isc_lex_openstream(isc_lex_t *lex, FILE *stream) {
248 * Make 'stream' the current input source for 'lex'.
253 snprintf(name, sizeof(name), "stream-%p", stream);
255 return (new_source(lex, ISC_TRUE, ISC_FALSE, stream, name));
360 FILE *stream;
431 stream = source->input;
434 c = getc_unlocked(stream);
436 c = getc(stream);
439 if (ferror(stream)) {