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

/freebsd-10.3-release/contrib/netbsd-tests/lib/libc/sys/
H A Dt_posix_fadvise.c92 int pipe_fds[2]; local
99 RL(pipe(pipe_fds));
118 CE(posix_fadvise(pipe_fds[0], 0, 0, POSIX_FADV_NORMAL), ESPIPE);
/freebsd-10.3-release/contrib/ntp/ntpd/
H A Dntpd.c549 int pipe_fds[2]; local
696 pipe_fds[0] = -1;
697 pipe_fds[1] = -1;
708 if (pipe(pipe_fds)) {
714 waitsync_fd_to_close = pipe_fds[1];
747 exit_code = wait_child_sync_if(pipe_fds[0],
/freebsd-10.3-release/contrib/ntp/lib/isc/unix/
H A Dsocket.c385 int pipe_fds[2]; member in struct:isc__socketmgr
1037 cc = write(mgr->pipe_fds[1], buf, sizeof(buf));
1072 cc = read(mgr->pipe_fds[0], buf, sizeof(buf));
1994 if (manager->maxfd < manager->pipe_fds[0])
1995 manager->maxfd = manager->pipe_fds[0];
3622 if (events[i].ident == (uintptr_t)manager->pipe_fds[0]) {
3659 if (events[i].data.fd == manager->pipe_fds[0]) {
3706 if (events[i].fd == manager->pipe_fds[0]) {
3734 if (i == manager->pipe_fds[0] || i == manager->pipe_fds[
[all...]
/freebsd-10.3-release/contrib/llvm/tools/lldb/source/Interpreter/
H A DScriptInterpreterPython.cpp583 int pipe_fds[2] = { -1, -1 }; local
592 int err = pipe(pipe_fds);
595 std::unique_ptr<ConnectionFileDescriptor> conn_ap(new ConnectionFileDescriptor(pipe_fds[0], true));
601 FILE *outfile_handle = fdopen (pipe_fds[1], "w");
670 if (pipe_fds[0] != -1)

Completed in 175 milliseconds