Home
last modified time | relevance | path

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

/scripts/kconfig/
Dqconf.cc1014 QTextStream stream(&info); in menuInfo() local
1019 stream << "<big><b>"; in menuInfo()
1020 stream << print_filter(_menu->prompt->text); in menuInfo()
1021 stream << "</b></big>"; in menuInfo()
1023 stream << " ("; in menuInfo()
1025 stream << "<a href=\"s" << sym->name << "\">"; in menuInfo()
1026 stream << print_filter(sym->name); in menuInfo()
1028 stream << "</a>"; in menuInfo()
1029 stream << ")"; in menuInfo()
1032 stream << "<big><b>"; in menuInfo()
[all …]
Dconfdata.c301 static ssize_t getline_stripped(char **lineptr, size_t *n, FILE *stream) in getline_stripped() argument
305 len = getline(lineptr, n, stream); in getline_stripped()
/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.
238 …"WARNING: %s: .read() and .write() have stream semantic; safe to change nonseekable_open -> stream…
298 …"WARNING: %s: .read() has stream semantic; safe to change nonseekable_open -> stream_open." % (fop…
346 …"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.pl2077 my ($stream, $type) = @_;
2080 my $var = '_' x length($stream);
2081 my $cur = $stream;
2083 print "$stream\n" if ($dbg_values > 1);