HomeSort by relevance Sort by last modified time
    Searched refs:stdin (Results 1 - 25 of 434) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /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/clang/test/Analysis/
redefined_system.c 9 char stdin();
16 return memmove() + malloc() + system() + stdin() + memccpy() + free() + strdup() + atoi();
global-region-invalidation.c 26 // Test stdin does not get invalidated by a system call nor by an internal call.
30 fscanf(stdin, "%d", &i);
33 fscanf(stdin, "%d", &i);
42 fscanf(stdin, "%d", &i);
44 fscanf(stdin, "%d", &i); // errno gets invalidated here.
54 fscanf(stdin, "%d", &i);
taint-tester.cpp 6 extern FILE *stdin;
23 while ((read = T.getline(&line, &len, stdin)) != -1) {
taint-tester.c 91 extern FILE *stdin;
104 // Check if stdin is treated as tainted.
105 fscanf(stdin, "%s %d", s, &t);
123 // Check if we propagate taint from stdin when it's used in an assignment.
126 fscanf(stdin, "%d", &i);
130 FILE *p = stdin;
149 FILE **ppp = &stdin;
155 // Test that stdin does not get invalidated by calls.
159 fscanf(stdin, "%d", &i);
166 int i = getw(stdin); // expected-warning + {{tainted}
    [all...]
  /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
  /external/libmtp/examples/
format.c 33 if ( fgets(buff, sizeof(buff), stdin) == NULL ) {
34 if (ferror(stdin)) {
35 fprintf(stderr, "File error on stdin\n");
37 fprintf(stderr, "EOF on stdin\n");
reset.c 33 if ( fgets(buff, sizeof(buff), stdin) == NULL ) {
34 if (ferror(stdin)) {
35 fprintf(stderr, "File error on stdin\n");
37 fprintf(stderr, "EOF on stdin\n");
  /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]);
  /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/libvorbis/examples/
encoder_example.c 18 /* takes a stereo 16bit 44.1kHz WAV file from stdin and encodes it into
30 #ifdef _WIN32 /* We need the following two to set stdin/stdout to binary */
62 /* this also lets the user set stdin and stdout */
69 #ifdef _WIN32 /* We need to set stdin/stdout to binary mode. Damn windows. */
74 _setmode( _fileno( stdin ), _O_BINARY );
84 for (i=0, founddata=0; i<30 && ! feof(stdin) && ! ferror(stdin); i++)
86 fread(readbuffer,1,2,stdin);
90 fread(readbuffer,1,6,stdin);
182 long bytes=fread(readbuffer,1,READ*4,stdin); /* stereo hardwired here *
    [all...]
chaining_example.c 22 #ifdef _WIN32 /* We need the following two to set stdin/stdout to binary */
31 #ifdef _WIN32 /* We need to set stdin to binary mode. Damn windows. */
34 _setmode( _fileno( stdin ), _O_BINARY );
37 /* open the file/pipe on stdin */
38 if(ov_open_callbacks(stdin,&ov,NULL,-1,OV_CALLBACKS_NOCLOSE)<0){
  /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/libvpx/libvpx/tools/
wrap-commit-msg.py 59 if fileobj == sys.stdin:
70 main(sys.stdin)
  /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/expat/examples/
outline.c 87 len = (int)fread(Buff, 1, BUFFSIZE, stdin);
88 if (ferror(stdin)) {
92 done = feof(stdin);
  /external/openssh/
sshtty.c 61 if (tcsetattr(fileno(stdin), TCSADRAIN, &_saved_tio) == -1) {
73 if (tcgetattr(fileno(stdin), &tio) == -1) {
91 if (tcsetattr(fileno(stdin), TCSADRAIN, &tio) == -1) {
  /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))

Completed in 679 milliseconds

1 2 3 4 5 6 7 8 91011>>