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

  /frameworks/native/cmds/bugreportz/
bugreportz_test.cpp 38 read_fd_ = fds[0];
46 for (int fd : {read_fd_, write_fd_}) {
78 int status = bugreportz(read_fd_, show_progress);
80 close(read_fd_);
81 read_fd_ = -1;
88 int read_fd_; member in class:BugreportzTest
  /art/dt_fd_forward/export/
fd_transport.h 26 int read_fd_; member in struct:dt_fd_forward::FdSet
39 ibuf[0] = read_fd_;
  /system/core/adb/
shell_service_protocol_test.cpp 45 read_fd_ = fds[0];
51 read_protocol_ = new ShellProtocol(read_fd_);
58 for (int fd : {read_fd_, write_fd_}) {
79 int read_fd_ = -1, write_fd_ = -1; member in class:ShellProtocolTest
150 adb_close(read_fd_);
151 read_fd_ = -1;
174 adb_close(read_fd_);
175 read_fd_ = -1;
fdevent_test.cpp 33 FdHandler(int read_fd, int write_fd) : read_fd_(read_fd), write_fd_(write_fd) {
34 fdevent_install(&read_fde_, read_fd_, FdEventCallback, this);
49 ASSERT_EQ(fd, handler->read_fd_);
68 const int read_fd_; member in class:FdHandler
  /external/protobuf/conformance/
conformance_test_runner.cc 106 if (!TryRead(read_fd_, &len, sizeof(uint32_t))) {
131 CheckedRead(read_fd_, (void*)response->c_str(), len);
172 read_fd_ = fromproc_pipe_fd[0];
235 int read_fd_; member in class:ForkPipeRunner
  /art/dt_fd_forward/
dt_fd_forward.cc 74 read_fd_(-1),
149 int res = TEMP_FAILURE_RETRY(read(read_fd_, bdata + nbytes, ndata - nbytes));
163 CHECK_GE(read_fd_.get(), 0);
165 int res = TEMP_FAILURE_RETRY(ioctl(read_fd_, FIONREAD, &avail));
167 DT_IO_ERROR("Failed ioctl(read_fd_, FIONREAD, &avail)");
174 struct pollfd pollfd = { read_fd_, POLLRDHUP, 0 };
199 CHECK_GE(read_fd_.get(), 0);
210 pollfds[0] = { read_fd_, POLLRDHUP | POLLIN, 0 };
215 // errors since possible ones are (1) the read_fd_ is closed or wakeup happens which are both
310 if (out_fds.read_fd_ < 0 |
    [all...]
dt_fd_forward.h 125 android::base::unique_fd read_fd_; // GUARDED_BY(state_mutex_); member in class:dt_fd_forward::FdForwardTransport
  /external/autotest/client/site_tests/security_Libcontainer/src/
libcontainer_target_unittest.cc 34 read_fd_.reset(pipe_fds[0]);
45 ssize_t read_bytes = read(read_fd_.get(), buffer, sizeof(buffer) - 1);
52 base::ScopedFD read_fd_; member in class:libcontainer::__anon14228::ScopedCaptureStdout
  /external/google-breakpad/src/testing/gtest/src/
gtest-death-test.cc 368 read_fd_(-1),
371 // read_fd_ is expected to be closed and cleared by a derived class.
372 ~DeathTestImpl() { GTEST_DEATH_TEST_CHECK_(read_fd_ == -1); }
385 int read_fd() const { return read_fd_; }
386 void set_read_fd(int fd) { read_fd_ = fd; }
392 // member, and closes read_fd_. Outputs diagnostics and terminates in
412 int read_fd_; member in class:testing::internal::DeathTestImpl
415 // pipe in read_fd_.
421 // member, and closes read_fd_. Outputs diagnostics and terminates in
    [all...]
  /external/googletest/googletest/src/
gtest-death-test.cc 381 read_fd_(-1),
384 // read_fd_ is expected to be closed and cleared by a derived class.
385 ~DeathTestImpl() { GTEST_DEATH_TEST_CHECK_(read_fd_ == -1); }
398 int read_fd() const { return read_fd_; }
399 void set_read_fd(int fd) { read_fd_ = fd; }
405 // member, and closes read_fd_. Outputs diagnostics and terminates in
425 int read_fd_; member in class:testing::internal::DeathTestImpl
428 // pipe in read_fd_.
434 // member, and closes read_fd_. Outputs diagnostics and terminates in
    [all...]
  /external/libvpx/libvpx/third_party/googletest/src/src/
gtest-death-test.cc 381 read_fd_(-1),
384 // read_fd_ is expected to be closed and cleared by a derived class.
385 ~DeathTestImpl() { GTEST_DEATH_TEST_CHECK_(read_fd_ == -1); }
398 int read_fd() const { return read_fd_; }
399 void set_read_fd(int fd) { read_fd_ = fd; }
405 // member, and closes read_fd_. Outputs diagnostics and terminates in
425 int read_fd_; member in class:testing::internal::DeathTestImpl
428 // pipe in read_fd_.
434 // member, and closes read_fd_. Outputs diagnostics and terminates in
    [all...]
  /external/llvm/utils/unittest/googletest/src/
gtest-death-test.cc 333 read_fd_(-1),
336 // read_fd_ is expected to be closed and cleared by a derived class.
337 ~DeathTestImpl() override { GTEST_DEATH_TEST_CHECK_(read_fd_ == -1); }
350 int read_fd() const { return read_fd_; }
351 void set_read_fd(int fd) { read_fd_ = fd; }
357 // member, and closes read_fd_. Outputs diagnostics and terminates in
377 int read_fd_; member in class:testing::internal::DeathTestImpl
380 // pipe in read_fd_.
386 // member, and closes read_fd_. Outputs diagnostics and terminates in
    [all...]
  /external/mesa3d/src/gtest/src/
gtest-death-test.cc 370 read_fd_(-1),
373 // read_fd_ is expected to be closed and cleared by a derived class.
374 ~DeathTestImpl() { GTEST_DEATH_TEST_CHECK_(read_fd_ == -1); }
387 int read_fd() const { return read_fd_; }
388 void set_read_fd(int fd) { read_fd_ = fd; }
394 // member, and closes read_fd_. Outputs diagnostics and terminates in
414 int read_fd_; member in class:testing::internal::DeathTestImpl
417 // pipe in read_fd_.
423 // member, and closes read_fd_. Outputs diagnostics and terminates in
    [all...]
  /external/protobuf/gtest/src/
gtest-death-test.cc 317 read_fd_(-1),
320 // read_fd_ is expected to be closed and cleared by a derived class.
321 ~DeathTestImpl() { GTEST_DEATH_TEST_CHECK_(read_fd_ == -1); }
334 int read_fd() const { return read_fd_; }
335 void set_read_fd(int fd) { read_fd_ = fd; }
341 // member, and closes read_fd_. Outputs diagnostics and terminates in
361 int read_fd_; member in class:testing::internal::DeathTestImpl
364 // pipe in read_fd_.
370 // member, and closes read_fd_. Outputs diagnostics and terminates in
    [all...]
  /external/swiftshader/third_party/LLVM/utils/unittest/googletest/
gtest-death-test.cc 330 read_fd_(-1),
333 // read_fd_ is expected to be closed and cleared by a derived class.
334 ~DeathTestImpl() { GTEST_DEATH_TEST_CHECK_(read_fd_ == -1); }
347 int read_fd() const { return read_fd_; }
348 void set_read_fd(int fd) { read_fd_ = fd; }
354 // member, and closes read_fd_. Outputs diagnostics and terminates in
374 int read_fd_; member in class:testing::internal::DeathTestImpl
377 // pipe in read_fd_.
383 // member, and closes read_fd_. Outputs diagnostics and terminates in
    [all...]
  /external/v8/testing/gtest/src/
gtest-death-test.cc 379 read_fd_(-1),
382 // read_fd_ is expected to be closed and cleared by a derived class.
383 ~DeathTestImpl() { GTEST_DEATH_TEST_CHECK_(read_fd_ == -1); }
396 int read_fd() const { return read_fd_; }
397 void set_read_fd(int fd) { read_fd_ = fd; }
403 // member, and closes read_fd_. Outputs diagnostics and terminates in
423 int read_fd_; member in class:testing::internal::DeathTestImpl
426 // pipe in read_fd_.
432 // member, and closes read_fd_. Outputs diagnostics and terminates in
    [all...]
  /external/vulkan-validation-layers/tests/gtest-1.7.0/src/
gtest-death-test.cc 370 read_fd_(-1),
373 // read_fd_ is expected to be closed and cleared by a derived class.
374 ~DeathTestImpl() { GTEST_DEATH_TEST_CHECK_(read_fd_ == -1); }
387 int read_fd() const { return read_fd_; }
388 void set_read_fd(int fd) { read_fd_ = fd; }
394 // member, and closes read_fd_. Outputs diagnostics and terminates in
414 int read_fd_; member in class:testing::internal::DeathTestImpl
417 // pipe in read_fd_.
423 // member, and closes read_fd_. Outputs diagnostics and terminates in
    [all...]
  /prebuilts/ndk/r16/sources/third_party/googletest/googletest/src/
gtest-death-test.cc 370 read_fd_(-1),
373 // read_fd_ is expected to be closed and cleared by a derived class.
374 ~DeathTestImpl() { GTEST_DEATH_TEST_CHECK_(read_fd_ == -1); }
387 int read_fd() const { return read_fd_; }
388 void set_read_fd(int fd) { read_fd_ = fd; }
394 // member, and closes read_fd_. Outputs diagnostics and terminates in
414 int read_fd_; member in class:testing::internal::DeathTestImpl
417 // pipe in read_fd_.
423 // member, and closes read_fd_. Outputs diagnostics and terminates in
    [all...]
  /external/protobuf/gtest/fused-src/gtest/
gtest-all.cc     [all...]
  /external/vulkan-validation-layers/tests/gtest-1.7.0/fused-src/gtest/
gtest-all.cc     [all...]
  /prebuilts/ndk/r16/sources/third_party/vulkan/src/tests/gtest-1.7.0/fused-src/gtest/
gtest-all.cc     [all...]

Completed in 359 milliseconds