Home | History | Annotate | Download | only in hprof

Lines Matching refs:out_fd

760     int out_fd;
762 out_fd = dup(fd_);
763 if (out_fd < 0) {
768 out_fd = open(filename_.c_str(), O_WRONLY|O_CREAT|O_TRUNC, 0644);
769 if (out_fd < 0) {
776 std::unique_ptr<File> file(new File(out_fd, filename_, true));