Searched refs:stream (Results 1 – 4 of 4) sorted by relevance
4 // Search for stream-like files that are using nonseekable_open and convert5 // them to stream_open. A stream-like file is a file that does not use ppos in13 // stream-like reader & writer - ones that do not depend on f_pos.239 …"WARNING: %s: .read() and .write() have stream semantic; safe to change nonseekable_open -> stream…299 …"WARNING: %s: .read() has stream semantic; safe to change nonseekable_open -> stream_open." % (fop…347 …"WARNING: %s: .write() has stream semantic; safe to change nonseekable_open -> stream_open." % (fo…
391 with open(sfile, "r", encoding='utf-8', errors='replace') as stream:392 lines = stream.readlines()440 with open(kfile, "r", encoding='utf-8', errors='replace') as stream:441 lines = stream.readlines()
1752 my ($stream, $type) = @_;1755 my $var = '_' x length($stream);1756 my $cur = $stream;1758 print "$stream\n" if ($dbg_values > 1);
316 static ssize_t compat_getline(char **lineptr, size_t *n, FILE *stream) in compat_getline() argument322 int c = getc(stream); in compat_getline()