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

1 2 3 4 5 6 7 8 91011>>

  /external/apache-harmony/luni/src/test/resources/net.resources/HTTP/cgi-bin/
test.pl 3 read(STDIN, $buffer, $ENV{'CONTENT_LENGTH'});
  /external/harfbuzz_ng/test/shaping/texts/in-tree/shaper-indic/indic/script-devanagari/misc/
tricky-reordering.txt 4 ./hb-unicode-encode --stdin
  /external/clang/test/Preprocessor/
dump-macros-spacing.c 1 // RUN: %clang_cc1 -E -dD < %s | grep stdin | grep -v define
  /external/clang/test/Analysis/
redefined_system.c 9 char stdin();
16 return memmove() + malloc() + system() + stdin() + memccpy() + free() + strdup() + atoi();
taint-tester.cpp 6 extern FILE *stdin;
23 while ((read = T.getline(&line, &len, stdin)) != -1) {
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);
  /external/webkit/Source/WebCore/manual-tests/resources/multiFileResources/
post-echo-and-notify-done.cgi 6 read(STDIN, $request, $ENV{'CONTENT_LENGTH'})
  /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/dropbear/libtomcrypt/notes/etc/
whirltest.c 8 while (fgets(buf, sizeof(buf)-2, stdin) != NULL) {
  /external/llvm/test/Scripts/
coff-dump.py.bat 3 @rem We need to set -u to treat stdin as binary. Python 3 has support for doing
elf-dump.bat 3 @rem We need to set -u to treat stdin as binary. Python 3 has support for doing
macho-dumpx.bat 3 @rem We need to set -u to treat stdin as binary. Python 3 has support for doing
  /external/wpa_supplicant_8/wpa_supplicant/
wpa_passphrase.c 24 "stdin\n");
33 printf("# reading passphrase from stdin\n");
34 if (fgets(buf, sizeof(buf), stdin) == NULL) {
  /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...]
  /external/libvorbis/examples/
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/bison/djgpp/
subpipe.c 107 is output, this file is closed and connected to m4's stdin. All m4's output
109 bison's stdin. */
122 * Save original stdin and stdout
127 error(EXIT_FAILURE, 0, _("saving stdin failed"));
149 * and will be redirected to m4's stdin.
194 * Redirect bison's output to m4's stdin.
201 error(EXIT_FAILURE, 0, _("redirecting m4's stdin from the temporary file failed"));
207 * and will be redirected to bison's stdin.
249 * Redirect m4's output to bison's stdin.
265 error(EXIT_FAILURE, 0, _("redirecting bison's stdin from the temporary file failed"))
    [all...]
  /external/linux-tools-perf/util/
run-command.h 20 * - Specify 0 for no redirections (child inherits stdin, stdout,
24 * the readable pipe end becomes child's stdin
30 * .in: a readable FD, becomes child's stdin
  /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/test/
cat_unittest.py 34 saved_stdin = sys.stdin
35 sys.stdin = StringIO.StringIO(input)
38 sys.stdin = saved_stdin
  /external/clang/test/
make_test_dirs.pl 9 while ($line = <STDIN>) {
  /external/ipsec-tools/src/racoon/
stats.pl 5 while(<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/libvorbis/doc/vorbisfile/
seeking_example_c.html 36 #ifdef _WIN32 /* We need to set stdin to binary mode under Windows */
37 _setmode( _fileno( stdin ), _O_BINARY );
40 /* open the file/pipe on stdin */
41 if(ov_open_callbacks(stdin,&ov,NULL,-1,OV_CALLBACKS_NOCLOSE)==-1){
seeking_test_c.html 36 #ifdef _WIN32 /* We need to set stdin to binary mode under Windows */
37 _setmode( _fileno( stdin ), _O_BINARY );
40 /* open the file/pipe on stdin */
41 if(ov_open_callbacks(stdin,&ov,NULL,-1,OV_CALLBACKS_NOCLOSE)==-1){

Completed in 432 milliseconds

1 2 3 4 5 6 7 8 91011>>