Home
last modified time | relevance | path

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

/art/runtime/jdwp/
Djdwp_main.cc41 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()
[all …]
Djdwp_adb.cc328 fd = wake_pipe_[0]; in ProcessIncoming()
364 if (wake_pipe_[0] >= 0 && FD_ISSET(wake_pipe_[0], &readfds)) { in ProcessIncoming()
Djdwp_priv.h77 int wake_pipe_[2]; // Used to break out of select. variable
Djdwp_socket.cc379 fd = wake_pipe_[0]; in ProcessIncoming()
415 if (wake_pipe_[0] >= 0 && FD_ISSET(wake_pipe_[0], &readfds)) { in ProcessIncoming()