HomeSort by relevance Sort by last modified time
    Searched refs:wake_pipe_ (Results 1 - 4 of 4) sorted by null

  /art/runtime/jdwp/
jdwp_priv.h 77 int wake_pipe_[2]; // Used to break out of select. member in class:art::JDWP::JdwpNetStateBase
jdwp_main.cc 41 wake_pipe_[0] = -1;
42 wake_pipe_[1] = -1;
48 if (wake_pipe_[0] != -1) {
49 close(wake_pipe_[0]);
50 wake_pipe_[0] = -1;
52 if (wake_pipe_[1] != -1) {
53 close(wake_pipe_[1]);
54 wake_pipe_[1] = -1;
59 if (pipe(wake_pipe_) == -1) {
68 if (wake_pipe_[1] != -1)
    [all...]
jdwp_adb.cc 328 fd = wake_pipe_[0];
364 if (wake_pipe_[0] >= 0 && FD_ISSET(wake_pipe_[0], &readfds)) {
jdwp_socket.cc 379 fd = wake_pipe_[0];
415 if (wake_pipe_[0] >= 0 && FD_ISSET(wake_pipe_[0], &readfds)) {

Completed in 54 milliseconds