Home
last modified time | relevance | path

Searched refs:stream (Results 1 – 4 of 4) sorted by relevance

/scripts/coccinelle/api/
Dstream_open.cocci4 // Search for stream-like files that are using nonseekable_open and convert
5 // them to stream_open. A stream-like file is a file that does not use ppos in
13 // 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…
/scripts/
Dcheckkconfigsymbols.py391 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()
Dcheckpatch.pl1752 my ($stream, $type) = @_;
1755 my $var = '_' x length($stream);
1756 my $cur = $stream;
1758 print "$stream\n" if ($dbg_values > 1);
/scripts/kconfig/
Dconfdata.c316 static ssize_t compat_getline(char **lineptr, size_t *n, FILE *stream) in compat_getline() argument
322 int c = getc(stream); in compat_getline()