Lines Matching defs:in
5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
27 // Glibc v2.19 doesn't include these in fcntl.h so host builds will fail without.
170 int in = open("/proc/cpuinfo", O_RDONLY);
171 ASSERT_NE(in, -1);
175 ssize_t bytes_read = splice(in, 0, pipe_fds[1], NULL, 8*1024, SPLICE_F_MORE | SPLICE_F_MOVE);
183 close(in);
220 int in = open("/proc/version", O_RDONLY);
221 ASSERT_NE(in, -1);
224 ssize_t bytes_read = splice(in, 0, pipe1[1], NULL, 8*1024, SPLICE_F_MORE | SPLICE_F_MOVE);
266 // The arguments to the underlying system call are in a different order on 32-bit ARM.