Home | History | Annotate | Download | only in ipc

Lines Matching refs:close

78 //   close its copy of the client socket and remove the mapping.
83 // connects. Once the client connects, the server will close the original
85 // object closes, it will close the only remaining copy of the client socket
195 Close();
209 if (HANDLE_EINTR(close(pipe_fds[0])) < 0)
210 PLOG(ERROR) << "close";
211 if (HANDLE_EINTR(close(pipe_fds[1])) < 0)
212 PLOG(ERROR) << "close";
449 Close();
454 Close();
529 if (HANDLE_EINTR(close(client_pipe_)) < 0)
530 PLOG(ERROR) << "close " << pipe_name_;
549 // Unregister libevent for the unix domain socket and close it.
553 if (HANDLE_EINTR(close(pipe_)) < 0)
554 PLOG(ERROR) << "close pipe_ " << pipe_name_;
559 if (HANDLE_EINTR(close(fd_pipe_)) < 0)
560 PLOG(ERROR) << "close fd_pipe_ " << pipe_name_;
564 if (HANDLE_EINTR(close(remote_fd_pipe_)) < 0)
565 PLOG(ERROR) << "close remote_fd_pipe_ " << pipe_name_;
576 // Close any outstanding, received file descriptors.
600 Close();
606 // close our new descriptor.
609 if (HANDLE_EINTR(close(new_pipe)) < 0)
610 DPLOG(ERROR) << "close " << pipe_name_;
694 Close();
899 if (HANDLE_EINTR(close(input_fds_[i])) < 0)
900 PLOG(ERROR) << "close ";
930 void Channel::ChannelImpl::Close() {
931 // Close can be called multiple time, so we need to make sure we're
941 if (HANDLE_EINTR(close(server_listen_pipe_)) < 0)
942 DPLOG(ERROR) << "close " << server_listen_pipe_;
944 // Unregister libevent for the listening socket and close it.
966 void Channel::Close() {
968 channel_impl_->Close();