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

  /art/runtime/jdwp/
jdwp_main.cc 46 wake_pipe_[0] = -1;
47 wake_pipe_[1] = -1;
53 if (wake_pipe_[0] != -1) {
54 close(wake_pipe_[0]);
55 wake_pipe_[0] = -1;
57 if (wake_pipe_[1] != -1) {
58 close(wake_pipe_[1]);
59 wake_pipe_[1] = -1;
64 if (pipe(wake_pipe_) == -1) {
73 if (wake_pipe_[1] != -1)
    [all...]
jdwp_priv.h 100 int wake_pipe_[2]; // Used to break out of select. member in class:art::JDWP::JdwpNetStateBase
jdwp_adb.cc 375 fd = wake_pipe_[0];
411 if (wake_pipe_[0] >= 0 && FD_ISSET(wake_pipe_[0], &readfds)) {
jdwp_socket.cc 409 fd = wake_pipe_[0];
445 if (wake_pipe_[0] >= 0 && FD_ISSET(wake_pipe_[0], &readfds)) {

Completed in 55 milliseconds