Home | History | Annotate | Download | only in ipc

Lines Matching refs:socketpair

198 bool SocketPair(int* fd1, int* fd2) {
200 if (socketpair(AF_UNIX, SOCK_STREAM, 0, pipe_fds) != 0) {
201 PLOG(ERROR) << "socketpair()";
300 if (!SocketPair(&local_pipe, &client_pipe_))
310 // Create a dedicated socketpair() for exchanging file descriptors.
313 if (!SocketPair(&fd_pipe_, &remote_fd_pipe_)) {