Home
last modified time | relevance | path

Searched refs:write_fd (Results 1 – 8 of 8) sorted by relevance

/freebsd-12.1/contrib/apr/misc/unix/
H A Dotherchild.c57 void *data, apr_file_t *write_fd, apr_pool_t *p) in apr_proc_other_child_register() argument
66 if (write_fd == NULL) { in apr_proc_other_child_register()
67 ocr->write_fd = (apr_os_file_t) -1; in apr_proc_other_child_register()
74 ocr->write_fd = write_fd->filehand; in apr_proc_other_child_register()
76 ocr->write_fd = write_fd->filedes; in apr_proc_other_child_register()
193 void *data, apr_file_t *write_fd, apr_pool_t *p) in apr_proc_other_child_register() argument
/freebsd-12.1/tests/sys/aio/
H A Daio_test.c137 int write_fd, int buflen) in aio_context_init() argument
145 ac->ac_write_fd = write_fd; in aio_context_init()
384 int error, read_fd = -1, write_fd = -1; in aio_fifo_test() local
401 write_fd = open(FIFO_PATHNAME, O_WRONLY); in aio_fifo_test()
402 if (write_fd == -1) { in aio_fifo_test()
414 close(write_fd); in aio_fifo_test()
517 int read_fd, write_fd; in aio_pty_test() local
528 if (tcgetattr(write_fd, &ts) < 0) { in aio_pty_test()
534 if (tcsetattr(write_fd, TCSANOW, &ts) < 0) { in aio_pty_test()
539 aio_context_init(&ac, read_fd, write_fd, PTY_LEN); in aio_pty_test()
[all …]
/freebsd-12.1/contrib/googletest/googletest/src/
H A Dgtest-death-test.cc285 FILE* parent = posix::FDOpen(flag->write_fd(), "w"); in DeathTestAbort()
416 int write_fd() const { return write_fd_; } in write_fd() function in testing::internal::DeathTestImpl
726 set_write_fd(flag->write_fd()); in AssumeRole()
1342 set_write_fd(flag->write_fd()); in AssumeRole()
1498 const int write_fd = in GetStatusFileDescriptor() local
1500 if (write_fd == -1) { in GetStatusFileDescriptor()
1510 return write_fd; in GetStatusFileDescriptor()
1526 int write_fd = -1; in ParseInternalRunDeathTestFlag() local
1543 write_fd = GetStatusFileDescriptor(parent_process_id, in ParseInternalRunDeathTestFlag()
1561 || !ParseNaturalNumber(fields[3], &write_fd)) { in ParseInternalRunDeathTestFlag()
[all …]
/freebsd-12.1/contrib/apr/include/arch/unix/
H A Dapr_arch_misc.h58 apr_os_file_t write_fd; member
/freebsd-12.1/contrib/googletest/googletest/include/gtest/internal/
H A Dgtest-death-test-internal.h259 int write_fd() const { return write_fd_; } in write_fd() function
/freebsd-12.1/contrib/libc++/src/filesystem/
H A Doperations.cpp643 bool copy_file_impl_sendfile(FileDescriptor& read_fd, FileDescriptor& write_fd, in copy_file_impl_sendfile() argument
649 if ((res = ::sendfile(write_fd.fd, read_fd.fd, nullptr, count)) == -1) { in copy_file_impl_sendfile()
661 bool copy_file_impl_copyfile(FileDescriptor& read_fd, FileDescriptor& write_fd,
674 if (fcopyfile(read_fd.fd, write_fd.fd, cfs.state, COPYFILE_DATA) < 0) {
687 FileDescriptor& write_fd, in copy_file_impl_default() argument
697 out.__open(write_fd.fd, ios::binary); in copy_file_impl_default()
/freebsd-12.1/contrib/apr/include/
H A Dapr_thread_proc.h711 void *data, apr_file_t *write_fd,
/freebsd-12.1/contrib/llvm/tools/lldb/source/Target/
H A DProcess.cpp4526 IOHandlerProcessSTDIO(Process *process, int write_fd) in IOHandlerProcessSTDIO() argument
4529 m_process(process), m_write_file(write_fd, false) { in IOHandlerProcessSTDIO()