OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:is_stdin
(Results
1 - 2
of
2
) sorted by null
/external/boringssl/src/tool/
digest.cc
68
bool
is_stdin
() const { return is_stdin_; }
function in struct:Source
121
if (source.
is_stdin
()) {
154
source.
is_stdin
() ? kStdinName : source.filename().c_str(),
202
source.
is_stdin
() ? "-" : source.filename().c_str());
227
if (source.
is_stdin
()) {
285
source.
is_stdin
() ? kStdinName : source.filename().c_str(), line_no);
348
source.
is_stdin
() ? kStdinName : source.filename().c_str());
/external/toybox/toys/pending/
diff.c
47
#define
IS_STDIN
(s) ((s)[0] == '-' && !(s)[1])
376
if (
IS_STDIN
(files[i])) file[i].fp = read_stdin();
774
if (
IS_STDIN
(files[j])) {
783
if (
IS_STDIN
(files[0]) &&
IS_STDIN
(files[1])) { //compat :(
788
if ((
IS_STDIN
(files[0]) ||
IS_STDIN
(files[1]))
Completed in 188 milliseconds