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

  /external/ltp/testcases/kernel/syscalls/tee/
tee01.c 97 int pipe1[2]; local
104 SAFE_PIPE(cleanup, pipe1);
107 ret = splice(fd_in, NULL, pipe1[1], NULL, TEST_BLOCK_SIZE, 0);
109 tst_brkm(TBROK | TERRNO, cleanup, "splice(fd_in, pipe1) failed");
111 ret = tee(pipe1[0], pipe2[1], TEST_BLOCK_SIZE, SPLICE_F_NONBLOCK);
121 close(pipe1[0]);
122 close(pipe1[1]);
  /bionic/tests/
fcntl_test.cpp 214 int pipe1[2]; local
215 ASSERT_EQ(0, pipe(pipe1));
223 // Write /proc/version into pipe1.
224 ssize_t bytes_read = splice(in, 0, pipe1[1], NULL, 8*1024, SPLICE_F_MORE | SPLICE_F_MOVE);
226 close(pipe1[1]);
228 // Tee /proc/version from pipe1 into pipe2.
229 ssize_t bytes_teed = tee(pipe1[0], pipe2[1], SIZE_MAX, 0);
233 // The out fds of both pipe1 and pipe2 should now contain /proc/version.
235 FILE* fp1 = fdopen(pipe1[0], "r");
  /external/libmojo/mojo/public/cpp/bindings/tests/
union_unittest.cc 1034 ScopedMessagePipeHandle pipe1; local
1052 ScopedMessagePipeHandle pipe1; local
1084 ScopedMessagePipeHandle pipe1; local
    [all...]
handle_passing_unittest.cc 208 MessagePipe pipe1; local
209 EXPECT_TRUE(WriteTextMessage(pipe1.handle1.get(), kText2));
218 request->pipe = std::move(pipe1.handle0);
  /libcore/ojluni/src/test/java/util/stream/bootlib/java/util/stream/
DoubleStreamTestScenario.java 158 S_IN pipe1 = (S_IN) OpTestCase.chain(data.parallelStream(), local
160 DoubleStream pipe2 = m.apply(pipe1);
183 S_IN pipe1 = (S_IN) OpTestCase.chain(data.parallelStream(), local
185 m.apply(pipe1).forEach(e -> {
IntStreamTestScenario.java 159 S_IN pipe1 = (S_IN) OpTestCase.chain(data.parallelStream(), local
161 IntStream pipe2 = m.apply(pipe1);
184 S_IN pipe1 = (S_IN) OpTestCase.chain(data.parallelStream(), local
186 m.apply(pipe1).forEach(e -> {
LongStreamTestScenario.java 158 S_IN pipe1 = (S_IN) OpTestCase.chain(data.parallelStream(), local
160 LongStream pipe2 = m.apply(pipe1);
183 S_IN pipe1 = (S_IN) OpTestCase.chain(data.parallelStream(), local
185 m.apply(pipe1).forEach(e -> {
StreamTestScenario.java 170 S_IN pipe1 = (S_IN) OpTestCase.chain(data.parallelStream(), local
172 Stream<U> pipe2 = m.apply(pipe1);
222 S_IN pipe1 = (S_IN) OpTestCase.chain(data.parallelStream(), local
224 m.apply(pipe1).forEach(e -> {
  /libcore/ojluni/src/test/java/util/stream/testlib/org/openjdk/testlib/java/util/stream/
DoubleStreamTestScenario.java 162 S_IN pipe1 = (S_IN) OpTestCase.chain(data.parallelStream(), local
164 DoubleStream pipe2 = m.apply(pipe1);
187 S_IN pipe1 = (S_IN) OpTestCase.chain(data.parallelStream(), local
189 m.apply(pipe1).forEach(e -> {
IntStreamTestScenario.java 162 S_IN pipe1 = (S_IN) OpTestCase.chain(data.parallelStream(), local
164 IntStream pipe2 = m.apply(pipe1);
187 S_IN pipe1 = (S_IN) OpTestCase.chain(data.parallelStream(), local
189 m.apply(pipe1).forEach(e -> {
LongStreamTestScenario.java 161 S_IN pipe1 = (S_IN) OpTestCase.chain(data.parallelStream(), local
163 LongStream pipe2 = m.apply(pipe1);
186 S_IN pipe1 = (S_IN) OpTestCase.chain(data.parallelStream(), local
188 m.apply(pipe1).forEach(e -> {
StreamTestScenario.java 173 S_IN pipe1 = (S_IN) OpTestCase.chain(data.parallelStream(), local
175 Stream<U> pipe2 = m.apply(pipe1);
225 S_IN pipe1 = (S_IN) OpTestCase.chain(data.parallelStream(), local
227 m.apply(pipe1).forEach(e -> {
  /prebuilts/go/darwin-x86/src/runtime/
syscall_solaris.go 26 pipe1 libcFunc
166 fn: uintptr(unsafe.Pointer(&pipe1)),
168 args: uintptr(unsafe.Pointer(&pipe1)), // it's unused but must be non-nil, otherwise crashes
25 pipe1 libcFunc var
  /prebuilts/go/linux-x86/src/runtime/
syscall_solaris.go 26 pipe1 libcFunc
166 fn: uintptr(unsafe.Pointer(&pipe1)),
168 args: uintptr(unsafe.Pointer(&pipe1)), // it's unused but must be non-nil, otherwise crashes
25 pipe1 libcFunc var
  /external/libmojo/mojo/edk/system/
data_pipe_unittest.cc 1486 MojoHandle pipe0, pipe1; local
1559 MojoHandle pipe0, pipe1; local
    [all...]

Completed in 1262 milliseconds