HomeSort by relevance Sort by last modified time
    Searched defs:STDIN (Results 1 - 8 of 8) sorted by null

  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/sched_setparam/
2-1.c 47 #define STDIN 0
150 close(STDIN);
152 dup2(the_pipe[0], STDIN);
2-2.c 48 #define STDIN 0
154 close(STDIN);
156 dup2(the_pipe[0], STDIN);
  /external/libpng/contrib/pngminus/
png2pnm.c 38 #define STDIN 0
77 FILE *fp_rd = stdin;
120 else if (fp_rd == stdin)
148 /* set stdin/stdout if required to binary */
149 if (fp_rd == stdin)
151 setmode (STDIN, O_BINARY);
pnm2png.c 38 #define STDIN 0
79 FILE *fp_rd = stdin;
119 else if (fp_rd == stdin)
147 /* set stdin/stdout to binary, we're reading the PNM always! in binary format */
148 if (fp_rd == stdin)
150 setmode (STDIN, O_BINARY);
  /external/boringssl/src/tool/
digest.cc 61 // Source is an awkward expression of a union type in C++: Stdin | File filename.
64 STDIN,
228 file = stdin;
309 // coreutils reads from stdin if the filename is "-".
310 target_source = Source(Source::STDIN);
378 // "-" ends the argument list and indicates that stdin should be used.
379 sources.push_back(Source(Source::STDIN));
436 sources.push_back(Source(Source::STDIN));
  /hardware/invensense/6515/libsensors_iio/software/simple_apps/devnode_parser/
read_device_node.c 38 static const int STDIN = 0;
44 tcgetattr(STDIN, &term);
46 tcsetattr(STDIN, TCSANOW, &term);
47 setbuf(stdin, NULL);
52 ioctl(STDIN, FIONREAD, &bytesWaiting);
  /hardware/invensense/6515/libsensors_iio/software/simple_apps/gesture_test/
inv_gesture_test.c 155 static const int STDIN = 0;
161 tcgetattr(STDIN, &term);
163 tcsetattr(STDIN, TCSANOW, &term);
164 setbuf(stdin, NULL);
169 ioctl(STDIN, FIONREAD, &bytesWaiting);
  /hardware/invensense/6515/libsensors_iio/software/simple_apps/mpu_iio/
mpu_iio.c 70 static const int STDIN = 0;
76 tcgetattr(STDIN, &term);
78 tcsetattr(STDIN, TCSANOW, &term);
79 setbuf(stdin, NULL);
84 ioctl(STDIN, FIONREAD, &bytesWaiting);

Completed in 143 milliseconds