Searched refs:wake_pipe_ (Results 1 – 4 of 4) sorted by relevance
46 wake_pipe_[0] = -1; in JdwpNetStateBase()47 wake_pipe_[1] = -1; in JdwpNetStateBase()53 if (wake_pipe_[0] != -1) { in ~JdwpNetStateBase()54 close(wake_pipe_[0]); in ~JdwpNetStateBase()55 wake_pipe_[0] = -1; in ~JdwpNetStateBase()57 if (wake_pipe_[1] != -1) { in ~JdwpNetStateBase()58 close(wake_pipe_[1]); in ~JdwpNetStateBase()59 wake_pipe_[1] = -1; in ~JdwpNetStateBase()64 if (pipe(wake_pipe_) == -1) { in MakePipe()73 if (wake_pipe_[1] != -1) { in WakePipe()[all …]
375 fd = wake_pipe_[0]; in ProcessIncoming()411 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