Searched refs:stdin (Results 1 - 25 of 517) sorted by relevance

1234567891011>>

/external/clang/test/Analysis/
H A Dredefined_system.c9 char stdin();
16 return memmove() + malloc() + system() + stdin() + memccpy() + free() + strdup() + atoi();
H A Dglobal-region-invalidation.c26 // 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.
49 fscanf(stdin, "%d", &i); // errno gets invalidated here.
57 fscanf(stdin, "%d", &i);
H A Dtaint-tester.cpp6 extern FILE *stdin;
24 while ((read = T.getline(&line, &len, stdin)) != -1) {
/external/chromium_org/third_party/webrtc/test/
H A Drun_loop.cc19 while (getchar() != '\n' && !feof(stdin));
/external/lldb/test/functionalities/process_launch/
H A Dmain.cpp9 fgets (buffer, sizeof (buffer), stdin);
13 fgets (buffer, sizeof (buffer), stdin);
/external/chromium_org/third_party/sqlite/src/tool/
H A Dvdbe-compress.tcl48 while {![eof stdin]} {
49 set line [gets stdin]
60 while {![eof stdin]} {
61 set line [gets stdin]
65 while {![eof stdin]} {
66 set line [gets stdin]
102 } elseif {$line=="" && [eof stdin]} {
H A Dmkopts.tcl9 while {![eof stdin]} {
10 set line [gets stdin]
/external/lldb/test/functionalities/command_script/import/
H A Dmain.c10 while (fgets(line, sizeof(line), stdin)) { // Waiting to be attached...
/external/lldb/test/python_api/hello_world/
H A Dmain.c10 while (fgets(line, sizeof(line), stdin)) { // Waiting to be attached...
/external/lldb/test/python_api/process/io/
H A Dmain.c7 while (fgets(line, sizeof(line), stdin)) { // Reading from stdin...
/external/nanopb-c/tests/basic_buffer/
H A Ddecode_buffer.c3 * Reads the encoded data from stdin and prints the values
68 SET_BINARY_MODE(stdin);
69 count = fread(buffer, 1, sizeof(buffer), stdin);
71 if (!feof(stdin))
/external/libmtp/examples/
H A Dformat.c33 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");
H A Dreset.c33 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/
H A Dcount.c32 NumRead = fread(Buffer, 1, sizeof(Buffer), stdin);
39 if (!feof(stdin)) {
40 fprintf(stderr, "%s: error reading stdin\n", argv[0]);
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/formatter/
H A Dmain_unittest.py89 host.stdin = StringIO.StringIO(ACTUAL_INPUT)
95 host.stdin = StringIO.StringIO(ACTUAL_INPUT)
101 host.stdin = StringIO.StringIO(ACTUAL_INPUT)
107 host.stdin = StringIO.StringIO(ACTUAL_INPUT)
/external/chromium_org/tools/traceline/traceline/scripts/
H A Dsplit.py6 """Splits a single json file (read from stdin) into separate files of 40k
17 for l in sys.stdin:
/external/libvorbis/examples/
H A Dencoder_example.c18 /* 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); /* stere
[all...]
H A Dchaining_example.c22 #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/
H A DAddPerson.java15 static Person PromptForAddress(BufferedReader stdin, argument
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/chromium_org/third_party/libvpx/source/libvpx/tools/
H A Dwrap-commit-msg.py59 if fileobj == sys.stdin:
70 main(sys.stdin)
/external/libvpx/libvpx/tools/
H A Dwrap-commit-msg.py59 if fileobj == sys.stdin:
70 main(sys.stdin)
/external/chromium_org/remoting/tools/
H A Dnative_messaging_host_test.py109 child = subprocess.Popen(native_messaging_host, stdin=subprocess.PIPE,
137 child.stdin.write(struct.pack('I', len(message)))
138 child.stdin.write(message)
139 child.stdin.flush()
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
H A Dpath.py84 stdin=subprocess.PIPE,
94 self._child_process.stdin.close()
101 self._child_process.stdin.write("%s\r\n" % path)
102 self._child_process.stdin.flush()
/external/chromium_org/tools/profile_chrome/
H A Dui.py16 select.select([sys.stdin], [], [], timeout)
/external/llvm/tools/llvm-c-test/
H A Dhelpers.c25 while (fgets(line, sizeof(line), stdin)) {

Completed in 6653 milliseconds

1234567891011>>