Searched refs:wake_pipe_ (Results 1 – 4 of 4) sorted by relevance
159 wake_pipe_[0] = -1; in JdwpNetStateBase()160 wake_pipe_[1] = -1; in JdwpNetStateBase()166 if (wake_pipe_[0] != -1) { in ~JdwpNetStateBase()167 close(wake_pipe_[0]); in ~JdwpNetStateBase()168 wake_pipe_[0] = -1; in ~JdwpNetStateBase()170 if (wake_pipe_[1] != -1) { in ~JdwpNetStateBase()171 close(wake_pipe_[1]); in ~JdwpNetStateBase()172 wake_pipe_[1] = -1; in ~JdwpNetStateBase()177 if (pipe(wake_pipe_) == -1) { in MakePipe()186 if (wake_pipe_[1] != -1) { in WakePipe()[all …]
369 fd = wake_pipe_[0]; in ProcessIncoming()405 if (wake_pipe_[0] >= 0 && FD_ISSET(wake_pipe_[0], &readfds)) { in ProcessIncoming()
409 fd = wake_pipe_[0]; in ProcessIncoming()445 if (wake_pipe_[0] >= 0 && FD_ISSET(wake_pipe_[0], &readfds)) { in ProcessIncoming()
100 int wake_pipe_[2]; // Used to break out of select. variable