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

/art/runtime/jdwp/
H A Djdwp_main.cc42 wake_pipe_[0] = -1;
43 wake_pipe_[1] = -1;
49 if (wake_pipe_[0] != -1) {
50 close(wake_pipe_[0]);
51 wake_pipe_[0] = -1;
53 if (wake_pipe_[1] != -1) {
54 close(wake_pipe_[1]);
55 wake_pipe_[1] = -1;
60 if (pipe(wake_pipe_) == -1) {
69 if (wake_pipe_[
[all...]
H A Djdwp_priv.h100 int wake_pipe_[2]; // Used to break out of select. member in class:art::JDWP::JdwpNetStateBase
H A Djdwp_adb.cc328 fd = wake_pipe_[0];
364 if (wake_pipe_[0] >= 0 && FD_ISSET(wake_pipe_[0], &readfds)) {
H A Djdwp_socket.cc406 fd = wake_pipe_[0];
442 if (wake_pipe_[0] >= 0 && FD_ISSET(wake_pipe_[0], &readfds)) {

Completed in 70 milliseconds