HomeSort by: relevance | last modified time | path
    Searched refs:write_fd (Results 1 - 18 of 18) sorted by relevancy

  /src/external/gpl3/gcc/dist/fixincludes/
server.h 59 int write_fd; member in struct:__anon12583
procopen.c 71 stdout_pair.read_fd = stdout_pair.write_fd = -1;
122 close (stdout_pair.write_fd);
133 ch_id, stdin_fd, stdout_pair.write_fd, stdout_pair.read_fd);
136 close (stdout_pair.write_fd);
158 dup2 (stdout_pair.write_fd, STDOUT_FILENO);
176 * structure. The "write_fd" connects to the inferior process
178 * process should write to "write_fd" and read from "read_fd".
194 close (p_pair->write_fd);
216 pf_pair->pf_write = fdopen (fd_pair.write_fd, "w");
  /src/external/gpl3/gcc.old/dist/fixincludes/
server.h 59 int write_fd; member in struct:__anon15206
procopen.c 71 stdout_pair.read_fd = stdout_pair.write_fd = -1;
122 close (stdout_pair.write_fd);
133 ch_id, stdin_fd, stdout_pair.write_fd, stdout_pair.read_fd);
136 close (stdout_pair.write_fd);
158 dup2 (stdout_pair.write_fd, STDOUT_FILENO);
176 * structure. The "write_fd" connects to the inferior process
178 * process should write to "write_fd" and read from "read_fd".
194 close (p_pair->write_fd);
216 pf_pair->pf_write = fdopen (fd_pair.write_fd, "w");
  /src/external/gpl3/gdb.old/dist/gdb/
ser-event.c 45 int write_fd;
70 state->write_fd = fds[1];
97 gdb::close (state->write_fd);
185 gdb::write (state->write_fd, &c, 1);
  /src/external/gpl3/gdb/dist/gdb/
ser-event.c 45 int write_fd;
70 state->write_fd = fds[1];
97 gdb::close (state->write_fd);
185 gdb::write (state->write_fd, &c, 1);
  /src/crypto/external/apache2/openssl/dist/demos/guide/
quic-server-non-block.c 228 fd_set read_fd, write_fd; local
240 FD_ZERO(&write_fd);
246 FD_SET(sock, &write_fd);
277 select(sock + 1, &read_fd, &write_fd, NULL, tvp);
  /src/external/ibm-public/postfix/dist/src/util/
vstream.c 733 VSTREAM_SAVE_STATE(stream, write_buf, write_fd);
889 VSTREAM_RESTORE_STATE(stream, write_buf, write_fd);
894 VSTREAM_SAVE_STATE(stream, write_buf, write_fd);
927 VSTREAM_SAVE_STATE(stream, write_buf, write_fd);
1055 VSTREAM_RESTORE_STATE(stream, write_buf, write_fd);
1112 VSTREAM_RESTORE_STATE(stream, write_buf, write_fd);
1496 if (stream->write_fd != stream->read_fd)
1497 if (stream->write_fd >= 0)
1498 err |= close(stream->write_fd);
1538 stream->fd = stream->read_fd = stream->write_fd = -1
    [all...]
vstream.h 55 int write_fd; /* write channel (double-buffered) */ member in struct:VSTREAM
  /src/external/gpl3/binutils/dist/include/sim/
callback.h 101 void (*pipe_empty) (host_callback *, int read_fd, int write_fd);
105 void (*pipe_nonempty) (host_callback *, int read_fd, int write_fd);
  /src/external/gpl3/binutils.old/dist/include/sim/
callback.h 101 void (*pipe_empty) (host_callback *, int read_fd, int write_fd);
105 void (*pipe_nonempty) (host_callback *, int read_fd, int write_fd);
  /src/external/gpl3/gdb.old/dist/include/sim/
callback.h 101 void (*pipe_empty) (host_callback *, int read_fd, int write_fd);
105 void (*pipe_nonempty) (host_callback *, int read_fd, int write_fd);
  /src/external/gpl3/gdb/dist/include/sim/
callback.h 101 void (*pipe_empty) (host_callback *, int read_fd, int write_fd);
105 void (*pipe_nonempty) (host_callback *, int read_fd, int write_fd);
  /src/external/apache2/llvm/dist/llvm/utils/unittest/googletest/src/
gtest-death-test.cc 292 FILE* parent = posix::FDOpen(flag->write_fd(), "w");
423 int write_fd() const { return write_fd_; } function in class:testing::internal::DeathTestImpl
518 GTEST_DEATH_TEST_CHECK_SYSCALL_(posix::Write(write_fd(), &status_ch, 1));
735 set_write_fd(flag->write_fd());
1421 set_write_fd(flag->write_fd());
1576 const int write_fd = local
1578 if (write_fd == -1) {
1588 return write_fd;
1604 int write_fd = -1; local
1621 write_fd = GetStatusFileDescriptor(parent_process_id
    [all...]
  /src/external/apache2/llvm/dist/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-death-test-internal.h 281 int write_fd() const { return write_fd_; } function in class:testing::internal::InternalRunDeathTestFlag
  /src/crypto/external/apache2/openssl/dist/demos/http3/
ossl-nghttp3-demo-server.c 986 fd_set read_fd, write_fd; local
998 FD_ZERO(&write_fd);
1004 FD_SET(sock, &write_fd);
1038 return (select(sock + 1, &read_fd, &write_fd, NULL, tvp));
  /src/crypto/external/bsd/openssh/dist/
sftp-server.c 1586 int read_handle, read_fd, write_handle, write_fd; local
1613 write_fd = handle_to_fd(write_handle);
1616 if (read_handle == write_handle || read_fd < 0 || write_fd < 0 ||
1629 lseek(write_fd, write_off, SEEK_SET) < 0) {
1652 ret = atomicio(vwrite, write_fd, buf, len);
  /src/external/apache2/llvm/dist/libcxx/src/filesystem/
operations.cpp 817 bool copy_file_impl(FileDescriptor& read_fd, FileDescriptor& write_fd, error_code& ec) {
821 if ((res = ::sendfile(write_fd.fd, read_fd.fd, nullptr, count)) == -1) {
833 bool copy_file_impl(FileDescriptor& read_fd, FileDescriptor& write_fd, error_code& ec) {
845 if (fcopyfile(read_fd.fd, write_fd.fd, cfs.state, COPYFILE_DATA) < 0) {
854 bool copy_file_impl(FileDescriptor& read_fd, FileDescriptor& write_fd, error_code& ec) {
864 out.__open(write_fd.fd, ios::binary);
869 write_fd.fd = -1;

Completed in 34 milliseconds