Searched refs:read_fd (Results 1 - 4 of 4) sorted by relevance

/freebsd-11-stable/tests/sys/aio/
H A Daio_test.c136 aio_context_init(struct aio_context *ac, int read_fd, argument
144 ac->ac_read_fd = read_fd;
384 int error, read_fd = -1, write_fd = -1; local
393 read_fd = open(FIFO_PATHNAME, O_RDONLY | O_NONBLOCK);
394 if (read_fd == -1) {
397 atf_tc_fail("read_fd open failed: %s",
409 aio_context_init(&ac, read_fd, write_fd, FIFO_LEN);
413 close(read_fd);
517 int read_fd, write_fd; local
524 ATF_REQUIRE_MSG(openpty(&read_fd,
[all...]
/freebsd-11-stable/stand/pc98/boot2/
H A Dboot1.S207 jz read_fd
209 jz read_fd
225 read_fd: or $0xd000,%si label
/freebsd-11-stable/contrib/llvm-project/libcxx/src/filesystem/
H A Doperations.cpp654 bool copy_file_impl_sendfile(FileDescriptor& read_fd, FileDescriptor& write_fd, argument
657 size_t count = read_fd.get_stat().st_size;
660 if ((res = ::sendfile(write_fd.fd, read_fd.fd, nullptr, count)) == -1) {
672 bool copy_file_impl_copyfile(FileDescriptor& read_fd, FileDescriptor& write_fd,
685 if (fcopyfile(read_fd.fd, write_fd.fd, cfs.state, COPYFILE_DATA) < 0) {
697 __attribute__((unused)) bool copy_file_impl_default(FileDescriptor& read_fd, argument
701 in.__open(read_fd.fd, ios::binary);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/
H A DProcess.cpp4311 const int read_fd = m_read_file.GetDescriptor();
4313 terminal_state.Save(read_fd, false);
4314 Terminal terminal(read_fd);
4323 select_helper.FDSetRead(read_fd);
4332 if (select_helper.FDIsSetRead(read_fd)) {

Completed in 140 milliseconds