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

1 2 3

  /external/chromium_org/sandbox/linux/tests/
scoped_temporary_file.h 19 int fd() const { return fd_; }
23 int fd_; member in class:sandbox::ScopedTemporaryFile
  /external/chromium_org/ui/ozone/platform/dri/
virtual_terminal_manager.h 21 int fd_; member in class:ui::VirtualTerminalManager
dri_wrapper.h 79 // queued on |fd_|. |data| is a generic pointer to some information the user
133 int get_fd() const { return fd_; }
138 int fd_; member in class:ui::DriWrapper
  /external/chromium_org/android_webview/native/
aw_media_url_interceptor_unittest.cc 24 : fd_(UNSET_VALUE), offset_(UNSET_VALUE), size_(UNSET_VALUE),
28 int fd_; member in class:android_webview::__anon6445::AwMediaUrlInterceptorTest
43 valid_asset_url, &fd_, &offset_, &size_));
44 EXPECT_NE(UNSET_VALUE, fd_);
56 invalid_asset_url, &fd_, &offset_, &size_));
57 EXPECT_EQ(UNSET_VALUE, fd_);
67 non_asset_url, &fd_, &offset_, &size_));
68 EXPECT_EQ(UNSET_VALUE, fd_);
  /external/chromium_org/chrome/renderer/pepper/
pepper_flash_font_file_host.h 49 base::ScopedFD fd_; member in class:PepperFlashFontFileHost
  /external/chromium_org/content/common/
font_config_ipc_linux.h 40 const int fd_; member in class:content::FontConfigIPC
  /external/chromium_org/net/tools/quic/
quic_default_packet_writer.h 33 void set_fd(int fd) { fd_ = fd; }
39 int fd() { return fd_; }
42 int fd_; member in class:net::tools::QuicDefaultPacketWriter
  /external/chromium_org/third_party/android_crazy_linker/src/src/
crazy_linker_ashmem.h 15 AshmemRegion() : fd_(-1) {}
19 int fd() const { return fd_; }
22 int ret = fd_;
23 fd_ = -1;
28 if (fd_ != -1) {
29 ::close(fd_);
31 fd_ = fd;
59 int fd_; member in class:crazy::AshmemRegion
crazy_linker_line_reader.h 48 FileDescriptor fd_; member in class:crazy::LineReader
crazy_linker_system.h 43 FileDescriptor() : fd_(kEmptyFD) {}
45 FileDescriptor(const char* path) : fd_(kEmptyFD) { OpenReadOnly(path); }
49 bool IsOk() const { return fd_ != kEmptyFD; }
50 HandleType Get() const { return fd_; }
63 HandleType fd_; member in class:crazy::FileDescriptor
  /external/chromium_org/ui/events/ozone/evdev/
event_converter_evdev.h 36 int fd_; member in class:ui::EventConverterEvdev
  /ndk/sources/android/crazy_linker/src/
crazy_linker_ashmem.h 15 AshmemRegion() : fd_(-1) {}
19 int fd() const { return fd_; }
22 int ret = fd_;
23 fd_ = -1;
28 if (fd_ != -1) {
29 ::close(fd_);
31 fd_ = fd;
59 int fd_; member in class:crazy::AshmemRegion
crazy_linker_line_reader.h 48 FileDescriptor fd_; member in class:crazy::LineReader
crazy_linker_system.h 43 FileDescriptor() : fd_(kEmptyFD) {}
45 FileDescriptor(const char* path) : fd_(kEmptyFD) { OpenReadOnly(path); }
49 bool IsOk() const { return fd_ != kEmptyFD; }
50 HandleType Get() const { return fd_; }
63 HandleType fd_; member in class:crazy::FileDescriptor
  /art/runtime/base/unix_file/
fd_file.h 110 int fd_; member in class:unix_file::FdFile
  /external/chromium_org/android_webview/browser/renderer_host/
print_manager.h 74 int fd_; member in class:android_webview::PrintManager
  /external/chromium_org/base/memory/
discardable_memory_ashmem_allocator.h 44 const int fd_; member in class:base::internal::DiscardableAshmemChunk
  /external/chromium_org/base/
rand_util_posix.cc 23 URandomFd() : fd_(open("/dev/urandom", O_RDONLY)) {
24 DCHECK_GE(fd_, 0) << "Cannot open /dev/urandom: " << errno;
27 ~URandomFd() { close(fd_); }
29 int fd() const { return fd_; }
32 const int fd_; member in class:__anon7061::URandomFd
  /external/chromium_org/chrome/common/
multi_process_lock_linux.cc 19 : name_(name), fd_(-1) { }
22 if (fd_ != -1) {
34 if (fd_ != -1) {
75 fd_ = socket_fd;
89 if (fd_ == -1) {
93 if (IGNORE_EINTR(close(fd_)) < 0) {
96 fd_ = -1;
101 int fd_; member in class:MultiProcessLockLinux
  /external/chromium_org/content/browser/renderer_host/pepper/
pepper_truetype_font_linux.cc 36 base::ScopedFD fd_; member in class:content::__anon11982::PepperTrueTypeFontLinux
71 fd_.reset(
79 return fd_.is_valid() ? PP_OK : PP_ERROR_FAILED;
83 if (!fd_.is_valid())
88 if (!GetFontTable(fd_.get(),
104 if (!GetFontTable(fd_.get(),
129 if (!fd_.is_valid())
135 if (!GetFontTable(fd_.get(), table_tag, offset, NULL, &table_size))
140 if (!GetFontTable(fd_.get(),
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/jsfs/
js_fs_node.h 48 int32_t fd() { return fd_; }
60 int32_t fd_; member in class:nacl_io::JsFsNode
  /external/chromium_org/sandbox/linux/services/
thread_helpers_unittests.cc 40 ScopedProcSelfTask() : fd_(-1) {
41 fd_ = open("/proc/self/task/", O_RDONLY | O_DIRECTORY);
42 CHECK_LE(0, fd_);
45 ~ScopedProcSelfTask() { PCHECK(0 == IGNORE_EINTR(close(fd_))); }
47 int fd() { return fd_; }
50 int fd_; member in class:sandbox::__anon15206::ScopedProcSelfTask
  /external/chromium_org/tools/relocation_packer/src/
elf_file.h 73 : fd_(fd), is_padding_relocations_(false), elf_(NULL),
116 int fd_; member in class:relocation_packer::ElfFile
  /external/qemu/android/base/files/
ScopedFd.h 29 ScopedFd() : fd_(-1) {}
32 explicit ScopedFd(int fd) : fd_(fd) {}
38 int get() const { return fd_; }
42 int fd = fd_;
43 fd_ = -1;
48 bool valid() const { return fd_ >= 0; }
52 if (fd_ != -1) {
54 ::close(fd_);
55 fd_ = -1;
62 int fd = fd_;
70 int fd_; member in class:android::base::ScopedFd
    [all...]
  /external/chromium_org/components/nacl/zygote/
nacl_fork_delegate_linux.h 70 int fd_; member in class:nacl::NaClForkDelegate

Completed in 2031 milliseconds

1 2 3