Home
last modified time | relevance | path

Searched refs:wake_pipe_ (Results 1 – 4 of 4) sorted by relevance

/art/runtime/jdwp/
Djdwp_main.cc159 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 …]
Djdwp_adb.cc369 fd = wake_pipe_[0]; in ProcessIncoming()
405 if (wake_pipe_[0] >= 0 && FD_ISSET(wake_pipe_[0], &readfds)) { in ProcessIncoming()
Djdwp_socket.cc409 fd = wake_pipe_[0]; in ProcessIncoming()
445 if (wake_pipe_[0] >= 0 && FD_ISSET(wake_pipe_[0], &readfds)) { in ProcessIncoming()
Djdwp_priv.h100 int wake_pipe_[2]; // Used to break out of select. variable