Home
last modified time | relevance | path

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

/scripts/kconfig/
Dqconf.cc1011 QTextStream stream(&info); in menuInfo() local
1016 stream << "<big><b>"; in menuInfo()
1017 stream << print_filter(_menu->prompt->text); in menuInfo()
1018 stream << "</b></big>"; in menuInfo()
1020 stream << " ("; in menuInfo()
1022 stream << "<a href=\"s" << sym->name << "\">"; in menuInfo()
1023 stream << print_filter(sym->name); in menuInfo()
1025 stream << "</a>"; in menuInfo()
1026 stream << ")"; in menuInfo()
1029 stream << "<big><b>"; in menuInfo()
[all …]
Dconfdata.c312 static ssize_t compat_getline(char **lineptr, size_t *n, FILE *stream) in compat_getline() argument
318 int c = getc(stream); in compat_getline()
/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.py393 with open(sfile, "r", encoding='utf-8', errors='replace') as stream:
394 lines = stream.readlines()
441 with open(kfile, "r", encoding='utf-8', errors='replace') as stream:
442 lines = stream.readlines()
Dcheckpatch.pl2072 my ($stream, $type) = @_;
2075 my $var = '_' x length($stream);
2076 my $cur = $stream;
2078 print "$stream\n" if ($dbg_values > 1);