Lines Matching refs:wake_pipe_
41 wake_pipe_[0] = -1; in JdwpNetStateBase()
42 wake_pipe_[1] = -1; in JdwpNetStateBase()
48 if (wake_pipe_[0] != -1) { in ~JdwpNetStateBase()
49 close(wake_pipe_[0]); in ~JdwpNetStateBase()
50 wake_pipe_[0] = -1; in ~JdwpNetStateBase()
52 if (wake_pipe_[1] != -1) { in ~JdwpNetStateBase()
53 close(wake_pipe_[1]); in ~JdwpNetStateBase()
54 wake_pipe_[1] = -1; in ~JdwpNetStateBase()
59 if (pipe(wake_pipe_) == -1) { in MakePipe()
68 if (wake_pipe_[1] != -1) { in WakePipe()
70 TEMP_FAILURE_RETRY(write(wake_pipe_[1], "", 1)); in WakePipe()