HomeSort by relevance Sort by last modified time
    Searched defs:fd_ (Results 1 - 25 of 57) sorted by null

1 2 3

  /bionic/libc/bionic/
bionic_netlink.h 48 int fd_; member in class:NetlinkConnection
  /external/bsdiff/
file.h 34 int fd_; member in class:bsdiff::File
  /system/tpm/trunks/
tpm_handle.h 56 int fd_; // A file descriptor for /dev/tpm0. member in class:trunks::TpmHandle
  /system/bt/vendor_libs/test_vendor_lib/include/
test_channel_transport.h 37 // file descriptor gets stored in |fd_|.
68 std::unique_ptr<base::ScopedFD> fd_; member in class:test_vendor_lib::TestChannelTransport
  /system/connectivity/shill/
protobuf_lite_streams.h 46 int fd_; member in class:shill::ProtobufLiteCopyingFileInputStream
async_connection.h 85 int fd_; member in class:shill::AsyncConnection
  /system/core/libmemunreachable/
LineBuffer.h 29 int fd_; member in class:LineBuffer
  /system/extras/memory_replay/
LineBuffer.h 29 int fd_; member in class:LineBuffer
  /bootable/recovery/
unique_fd.h 26 unique_fd(int fd) : fd_(fd) { }
29 fd_ = uf.fd_;
30 uf.fd_ = -1;
34 if (fd_ != -1) {
35 close(fd_);
40 return fd_;
45 fd_ = uf.fd_;
46 uf.fd_ = -1
55 int fd_; member in class:unique_fd
    [all...]
  /system/connectivity/shill/net/
io_input_handler.h 43 int fd_; member in class:shill::IOInputHandler
io_ready_handler.h 46 int fd_; member in class:shill::IOReadyHandler
sockets.h 144 int fd_; member in class:shill::ScopedSocketCloser
  /system/update_engine/payload_consumer/
file_descriptor.h 118 EintrSafeFileDescriptor() : fd_(-1) {}
137 return (fd_ >= 0);
141 int fd_; member in class:chromeos_update_engine::EintrSafeFileDescriptor
xz_extent_writer_unittest.cc 96 EXPECT_TRUE(xz_writer_->Init(fd_, {}, 1024));
112 FileDescriptorPtr fd_; member in class:chromeos_update_engine::XzExtentWriterTest
143 EXPECT_TRUE(xz_writer_->Init(fd_, {}, 1024));
154 EXPECT_TRUE(xz_writer_->Init(fd_, {}, 1024));
  /system/vold/
Utils.h 122 const int fd_; member in class:android::vold::ScopedFd
126 int get() const { return fd_; }
  /external/drm_hwcomposer/
autofd.h 27 UniqueFd(int fd) : fd_(fd) {
30 fd_ = rhs.fd_;
31 rhs.fd_ = -1;
40 if (fd_ >= 0)
41 close(fd_);
45 int old_fd = fd_;
46 fd_ = -1;
51 if (fd_ >= 0)
52 close(fd_);
68 int fd_ = -1; member in class:android::UniqueFd
102 int *fd_ = NULL; member in struct:android::OutputFd
    [all...]
drmresources.h 39 return fd_.get();
77 UniqueFd fd_; member in class:android::DrmResources
  /external/google-breakpad/src/client/linux/minidump_writer/
directory_reader.h 50 : fd_(fd),
67 const int n = sys_getdents(fd_, dent, sizeof(buf_));
98 const int fd_; member in class:google_breakpad::DirectoryReader
line_reader.h 47 : fd_(fd),
98 const ssize_t n = sys_read(fd_, buf_ + buf_used_,
122 const int fd_; member in class:google_breakpad::LineReader
  /external/google-breakpad/src/common/linux/tests/
auto_testfile.h 61 if (fd_ >= 0)
67 if (fd_ >= 0)
73 if (fd_ >= 0) {
74 close(fd_);
75 fd_ = -1;
82 return fd_ >= 0;
88 return fd_;
93 fd_ = -1;
101 fd_ = mkstemp(path_templ);
102 if (fd_ < 0
119 int fd_; member in class:google_breakpad::AutoTestFile
    [all...]
  /external/libchrome/base/
rand_util_posix.cc 25 URandomFd() : fd_(open("/dev/urandom", O_RDONLY)) {
26 DCHECK_GE(fd_, 0) << "Cannot open /dev/urandom: " << errno;
29 ~URandomFd() { close(fd_); }
31 int fd() const { return fd_; }
34 const int fd_; member in class:__anon14340::URandomFd
  /external/libchrome/sandbox/linux/services/
thread_helpers_unittests.cc 43 ScopedProc() : fd_(-1) {
44 fd_ = open("/proc/", O_RDONLY | O_DIRECTORY);
45 CHECK_LE(0, fd_);
48 ~ScopedProc() { PCHECK(0 == IGNORE_EINTR(close(fd_))); }
50 int fd() { return fd_; }
53 int fd_; member in class:sandbox::__anon14530::ScopedProc
  /external/libweave/third_party/chromium/base/
rand_util_posix.cc 20 URandomFd() : fd_(open("/dev/urandom", O_RDONLY)) {
21 DCHECK_GE(fd_, 0) << "Cannot open /dev/urandom: " << errno;
24 ~URandomFd() { close(fd_); }
26 int fd() const { return fd_; }
29 const int fd_; member in class:__anon16791::URandomFd
  /libnativehelper/include/nativehelper/
ScopedFd.h 28 explicit ScopedFd(int fd) : fd_(fd) {
36 ScopedFd(ScopedFd&& other) : fd_(other.release()) {}
43 return fd_;
47 int localFd = fd_;
48 fd_ = -1;
53 if (fd_ != -1) {
57 close(fd_);
59 fd_ = new_fd;
63 int fd_; member in class:final
  /system/core/adb/
adb_utils.h 72 if (fd != fd_) {
74 adb_close(fd_);
76 fd_ = fd;
81 int temp = fd_;
82 fd_ = -1;
87 return fd_ >= 0;
91 return fd_;
95 int fd_ = -1; member in class:ScopedFd

Completed in 983 milliseconds

1 2 3