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

  /external/strace/tests/
copy_file_range.c 44 const long int fd_out = (long int) 0xdeadbeeffffffffe; local
53 fd_in, off_in, fd_out, off_out, len, flags);
56 (int) fd_in, *off_in, (int) fd_out, *off_out, len, flags,
splice.c 43 const long int fd_out = (long int) 0xdeadbeeffffffffeULL; local
52 fd_in, off_in, fd_out, off_out, len, flags);
54 (int) fd_in, *off_in, (int) fd_out, *off_out, len,
tee.c 42 const long int fd_out = (long int) 0xdeadbeeffffffffeULL; local
46 long rc = syscall(__NR_tee, fd_in, fd_out, len, flags);
48 (int) fd_in, (int) fd_out, len,
  /external/strace/tests-m32/
copy_file_range.c 44 const long int fd_out = (long int) 0xdeadbeeffffffffe; local
53 fd_in, off_in, fd_out, off_out, len, flags);
56 (int) fd_in, *off_in, (int) fd_out, *off_out, len, flags,
splice.c 43 const long int fd_out = (long int) 0xdeadbeeffffffffeULL; local
52 fd_in, off_in, fd_out, off_out, len, flags);
54 (int) fd_in, *off_in, (int) fd_out, *off_out, len,
tee.c 42 const long int fd_out = (long int) 0xdeadbeeffffffffeULL; local
46 long rc = syscall(__NR_tee, fd_in, fd_out, len, flags);
48 (int) fd_in, (int) fd_out, len,
  /external/strace/tests-mx32/
copy_file_range.c 44 const long int fd_out = (long int) 0xdeadbeeffffffffe; local
53 fd_in, off_in, fd_out, off_out, len, flags);
56 (int) fd_in, *off_in, (int) fd_out, *off_out, len, flags,
splice.c 43 const long int fd_out = (long int) 0xdeadbeeffffffffeULL; local
52 fd_in, off_in, fd_out, off_out, len, flags);
54 (int) fd_in, *off_in, (int) fd_out, *off_out, len,
tee.c 42 const long int fd_out = (long int) 0xdeadbeeffffffffeULL; local
46 long rc = syscall(__NR_tee, fd_in, fd_out, len, flags);
48 (int) fd_in, (int) fd_out, len,
  /external/ltp/testcases/kernel/syscalls/splice/
splice01.c 43 static int fd_in, fd_out; variable
50 fd_out = SAFE_OPEN(TESTFILE2, O_RDONLY);
51 SAFE_READ(1, fd_out, splicebuffer, TEST_BLOCK_SIZE);
63 SAFE_CLOSE(fd_out);
72 fd_out = SAFE_OPEN(TESTFILE2, O_WRONLY | O_CREAT | O_TRUNC, 0666);
79 ret = splice(pipes[0], NULL, fd_out, NULL, TEST_BLOCK_SIZE, 0);
81 tst_brk(TBROK | TERRNO, "splice(pipe, fd_out) failed");
84 SAFE_CLOSE(fd_out);
114 if (fd_out > 0)
115 SAFE_CLOSE(fd_out);
    [all...]
  /external/ltp/testcases/kernel/syscalls/tee/
tee01.c 45 static int fd_in, fd_out; variable
53 fd_out = SAFE_OPEN(TESTFILE2, O_RDONLY);
54 SAFE_READ(1, fd_out, teebuffer, TEST_BLOCK_SIZE);
66 SAFE_CLOSE(fd_out);
76 fd_out = SAFE_OPEN(TESTFILE2, O_WRONLY | O_CREAT | O_TRUNC, 0777);
89 ret = splice(pipe2[0], NULL, fd_out, NULL, TEST_BLOCK_SIZE, 0);
91 tst_brk(TBROK | TERRNO, "splice(pipe2, fd_out) failed");
97 SAFE_CLOSE(fd_out);
126 if (fd_out > 0)
127 SAFE_CLOSE(fd_out);
    [all...]
  /external/ltp/testcases/kernel/syscalls/vmsplice/
vmsplice01.c 45 static int fd_out; variable
53 fd_out = SAFE_OPEN(TESTFILE, O_RDONLY);
54 SAFE_READ(1, fd_out, vmsplicebuffer, TEST_BLOCK_SIZE);
66 SAFE_CLOSE(fd_out);
74 int fd_out; local
81 fd_out = SAFE_OPEN(TESTFILE, O_WRONLY | O_CREAT | O_TRUNC, 0644);
108 ret = splice(pipes[0], NULL, fd_out, &offset, written, 0);
116 SAFE_CLOSE(fd_out);
136 if (fd_out > 0)
137 SAFE_CLOSE(fd_out);
    [all...]
  /external/libbrillo/brillo/dbus/
dbus_method_invoker_unittest.cc 141 base::ScopedFD fd_out; local
143 EXPECT_TRUE(ExtractMethodCallResults(response.get(), nullptr, &fd_out));
144 return fd_out;
  /external/ltp/testcases/kernel/syscalls/copy_file_range/
copy_file_range01.c 146 int fd_in, fd_out, ret; local
170 fd_out = SAFE_OPEN(TEST_FILE_2, O_CREAT | O_WRONLY | O_TRUNC, 0644);
177 TEST(tst_syscall(__NR_copy_file_range, fd_in, off_in, fd_out,
182 SAFE_CLOSE(fd_out);
195 ret |= check_file_offset("(out)", fd_out, len, off_out_ori, off_out);
201 SAFE_CLOSE(fd_out);
  /external/iproute2/lib/
bpf.c 585 int fd_in, fd_out = STDERR_FILENO; local
608 if (ret > 0 && write(fd_out, buff, ret) == ret)
    [all...]
  /external/valgrind/drd/tests/
tsan_unittest.cpp 4769 int fd_out = -1; member in namespace:test98
    [all...]

Completed in 587 milliseconds