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

  /external/libbrillo/brillo/
binder_watcher.cc 54 int binder_fd = -1; local
57 int err = IPCThreadState::self()->setupPolling(&binder_fd);
63 if (binder_fd < 0) {
64 LOG(ERROR) << "Invalid binder FD " << binder_fd;
67 VLOG(1) << "Got binder FD " << binder_fd;
71 binder_fd,
  /system/connectivity/wificond/
main.cpp 84 int binder_fd = -1; local
87 int err = android::IPCThreadState::self()->setupPolling(&binder_fd);
89 CHECK_GE(binder_fd, 0) << "Invalid binder FD: " << binder_fd;
90 return binder_fd;
96 int binder_fd = android::hardware::setupTransportPolling(); local
97 CHECK_GE(binder_fd, 0) << "Invalid hw binder FD: " << binder_fd;
98 return binder_fd;
127 int binder_fd = SetupBinderOrCrash() local
    [all...]
  /system/tools/aidl/tests/
aidl_test_service.cpp 449 int binder_fd = -1; local
452 IPCThreadState::self()->setupPolling(&binder_fd);
453 ALOGI("Got binder FD %d", binder_fd);
454 if (binder_fd < 0) return -1;
457 if (looper->addFd(binder_fd, Looper::POLL_CALLBACK, Looper::EVENT_INPUT, cb,

Completed in 101 milliseconds