Searched refs:wake_pipe_ (Results 1 – 4 of 4) sorted by relevance
42 wake_pipe_[0] = -1; in JdwpNetStateBase()43 wake_pipe_[1] = -1; in JdwpNetStateBase()49 if (wake_pipe_[0] != -1) { in ~JdwpNetStateBase()50 close(wake_pipe_[0]); in ~JdwpNetStateBase()51 wake_pipe_[0] = -1; in ~JdwpNetStateBase()53 if (wake_pipe_[1] != -1) { in ~JdwpNetStateBase()54 close(wake_pipe_[1]); in ~JdwpNetStateBase()55 wake_pipe_[1] = -1; in ~JdwpNetStateBase()60 if (pipe(wake_pipe_) == -1) { in MakePipe()69 if (wake_pipe_[1] != -1) { in WakePipe()[all …]
328 fd = wake_pipe_[0]; in ProcessIncoming()364 if (wake_pipe_[0] >= 0 && FD_ISSET(wake_pipe_[0], &readfds)) { in ProcessIncoming()
379 fd = wake_pipe_[0]; in ProcessIncoming()415 if (wake_pipe_[0] >= 0 && FD_ISSET(wake_pipe_[0], &readfds)) { in ProcessIncoming()
98 int wake_pipe_[2]; // Used to break out of select. variable