Home | History | Annotate | Download | only in hprof

Lines Matching refs:out_fd

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