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

1 23

  /external/google-breakpad/src/common/solaris/
dump_symbols.cc 582 fd_(fd) {
585 if (fd_ != -1)
586 close(fd_);
589 return fd_;
592 int fd = fd_;
593 fd_ = -1;
597 int fd_; member in class:__anon11384::FDWrapper
  /external/v8/src/
d8-posix.cc 158 explicit OpenFDCloser(int fd): fd_(fd) { }
159 ~OpenFDCloser() { close(fd_); }
161 int fd_; member in class:v8::OpenFDCloser
  /external/google-breakpad/src/client/linux/minidump_writer/
minidump_writer.cc 132 : fd_(minidump_fd),
144 assert(fd_ != -1 || minidump_path);
145 assert(fd_ == -1 || !minidump_path);
152 if (fd_ != -1)
153 minidump_writer_.SetFile(fd_);
163 if (fd_ == -1)
1244 const int fd_; \/\/ File descriptor where the minidum should be written. member in class:__anon11325::MinidumpWriter
    [all...]
  /external/google-breakpad/src/common/linux/
dump_symbols.cc 106 fd_(fd) {}
108 if (fd_ != -1)
109 close(fd_);
112 return fd_;
115 int fd = fd_;
116 fd_ = -1;
120 int fd_; member in class:__anon11365::FDWrapper
    [all...]
  /system/core/libziparchive/
zip_archive.cc 857 const bool result = android::base::WriteFully(fd_, buf, buf_size);
869 fd_(fd),
874 const int fd_; member in class:FileWriter
    [all...]
  /art/runtime/hprof/
hprof.cc 421 fd_(fd),
741 if (fd_ >= 0) {
742 out_fd = dup(fd_);
744 ThrowRuntimeException("Couldn't dump heap; dup(%d) failed: %s", fd_, strerror(errno));
862 int fd_; member in class:art::hprof::Hprof
    [all...]
  /toolchain/binutils/binutils-2.25/gold/
dwp.cc 452 abiversion_(0), fd_(NULL), next_file_offset_(0), shnum_(1), sections_(),
653 FILE* fd_; member in class:gold::Dwp_output_file
    [all...]

Completed in 189 milliseconds

1 23