/bionic/libc/stdio/ |
getchar.c | 44 return (getc_unlocked(stdin)); 57 return (getc(stdin));
|
vscanf.c | 40 return (vfscanf(stdin, fmt, ap));
|
gets.c | 46 FLOCKFILE(stdin); 50 FUNLOCKFILE(stdin); 57 FUNLOCKFILE(stdin);
|
scanf.c | 44 ret = vfscanf(stdin, fmt, ap);
|
/external/dropbear/libtomcrypt/notes/etc/ |
whirltest.c | 8 while (fgets(buf, sizeof(buf)-2, stdin) != NULL) {
|
/external/webkit/Tools/Scripts/webkitpy/test/ |
cat_unittest.py | 34 saved_stdin = sys.stdin 35 sys.stdin = StringIO.StringIO(input) 38 sys.stdin = saved_stdin
|
cat.py | 38 sys.stdout.write(sys.stdin.read())
|
/external/llvm/utils/count/ |
count.c | 32 NumRead = fread(Buffer, 1, sizeof(Buffer), stdin); 39 if (!feof(stdin)) { 40 fprintf(stderr, "%s: error reading stdin\n", argv[0]);
|
/build/tools/bin2asm/ |
data | 3 * This reads from stdin and writes to stdout and takes a single 37 while (! feof(stdin)) { 38 amt = fread(buf, 1, sizeof(buf), stdin);
|
icudata.c | 3 * This reads from stdin and writes to stdout and takes a single 48 while (! feof(stdin)) { 49 amt = fread(buf, 1, sizeof(buf), stdin);
|
/external/webkit/Tools/Scripts/webkitpy/layout_tests/port/ |
server_process_unittest.py | 51 self.stdin = MockFile(server_process) 63 self.stdin = self._proc.stdin 73 self.assertEquals(server_process.broken_pipes, [server_process.stdin])
|
/external/protobuf/examples/ |
AddPerson.java | 15 static Person PromptForAddress(BufferedReader stdin, 20 person.setId(Integer.valueOf(stdin.readLine())); 23 person.setName(stdin.readLine()); 26 String email = stdin.readLine(); 33 String number = stdin.readLine(); 42 String type = stdin.readLine();
|
/external/webkit/Tools/iExploder/iexploder-1.3.2/tools/ |
lasthit.rb | 5 # It takes all or part of an apache logfile via stdin, and outputs a list 17 file = $stdin
|
/external/webkit/Tools/android/flex-2.5.4a/MISC/fastwc/ |
mywc.c | 9 FILE *f = stdin;
|
/external/bluetooth/bluez/test/ |
test-health-sink | 36 pos = int(sys.stdin.readline()) - 1 63 pos = int(sys.stdin.readline()) - 1 81 sys.stdin.readline()
|
test-health | 57 sel = int(sys.stdin.readline()) 73 sel = int(sys.stdin.readline()) 88 sel = int(sys.stdin.readline()) 118 sel = sys.stdin.readline() 146 pos = int(sys.stdin.readline()) - 1 173 pos = int(sys.stdin.readline()) - 1 189 sel = sys.stdin.readline()
|
/external/expat/examples/ |
outline.c | 87 len = (int)fread(Buff, 1, BUFFSIZE, stdin); 88 if (ferror(stdin)) { 92 done = feof(stdin);
|
/external/webkit/Tools/iExploder/iexploder-1.7.2/tools/ |
update_html_tags_from_sources.sh | 35 ruby -e '$stdin.readlines.join("").scan(/\"([\w-]+)"/) { |tag| puts tag }' > ${tmp_prefix}.html-values 36 grep -r "protocolIs" $src_dir/Source/WebCore/* | ruby -e '$stdin.readlines.join("").scan(/\"([\w-]+)"/) { |tag| puts "#{tag}:" }' > ${tmp_prefix}.protocols 40 egrep -r '"[-\+a-z]+/[-\+a-z]+"' $src_dir/Source/WebCore | ruby -e '$stdin.readlines.join("").scan(/\"([afimtvwx][\w\+-]+\/[\w\+-]+)"/) { puts $1 }' > ${tmp_prefix}.mime-types 75 | ruby -e '$stdin.readlines.join("").scan(/\"([afimtvwx][\w\+-]+\/[\w\+-]+)"/) { puts $1 }' > ${tmp_prefix}.mime-types 85 ruby -e '$stdin.readlines.join("").scan(/\"(.*?)\"/) { |tag| puts tag }' > ${tmp_prefix}.css-values 90 ruby -e '$stdin.readlines.join("").scan(/\"([-a-z]+)\"/) { |tag| puts tag }' > ${tmp_prefix}.html-values 94 ruby -e '$stdin.readlines.join("").scan(/\"([\w\+-]+\/[\w\+-]+)"/) { puts $1 }' > ${tmp_prefix}.mime-types 103 grep g_ascii_strcasecmp $src_dir/gtkhtml/htmlengine.c | ruby -e '$stdin.readlines.join("").scan(/\"([\/\w-]+)"/) { |tag| puts tag }' > ${tmp_prefix}.html-values
|
/external/dropbear/libtommath/demo/ |
demo.c | 233 fgets(buf, sizeof(buf), stdin); 431 fgets(cmd, 4095, stdin); 437 fgets(buf, 4095, stdin); 439 fgets(buf, 4095, stdin); 441 fgets(buf, 4095, stdin); 454 fgets(buf, 4095, stdin); 456 fgets(buf, 4095, stdin); 458 fgets(buf, 4095, stdin); 474 fgets(buf, 4095, stdin); 476 fgets(buf, 4095, stdin); [all...] |
/system/core/toolbox/ |
cat.c | 129 fp = stdin; 130 filename = "stdin"; 134 fp = stdin; 145 if (fp != stdin) 191 fd = fileno(stdin); 192 filename = "stdin"; 196 fd = fileno(stdin); 224 if (fd != fileno(stdin))
|
/external/llvm/lib/Support/ |
DynamicLibrary.cpp | 148 EXPLICIT_SYMBOL(stdin); 154 #ifndef stdin 155 EXPLICIT_SYMBOL(stdin);
|
/build/tools/fs_config/ |
fs_config.c | 26 // trailing slash) on the stdin, and prints to stdout each input 46 while (fgets(buffer, 1023, stdin) != NULL) {
|
/external/libvpx/vp8/common/ |
type_aliases.h | 32 #define STD_IN_FILE stdin /* Standard input file pointer */
|
/external/openssl/crypto/lhash/ |
lh_test.c | 76 fgets(buf,256,stdin);
|
/external/webkit/Tools/Scripts/webkitpy/common/system/ |
path.py | 87 stdin=subprocess.PIPE, 97 self._child_process.stdin.close() 104 self._child_process.stdin.write("%s\r\n" % path) 105 self._child_process.stdin.flush()
|