Home | History | Annotate | Download | only in hprof

Lines Matching refs:out_fd

763     int out_fd;
765 out_fd = dup(fd_);
766 if (out_fd < 0) {
771 out_fd = open(filename_.c_str(), O_WRONLY|O_CREAT|O_TRUNC, 0644);
772 if (out_fd < 0) {
779 std::unique_ptr<File> file(new File(out_fd, filename_, true));