Home | History | Annotate | Download | only in hprof

Lines Matching refs:out_fd

649     int out_fd;
651 out_fd = dup(fd_);
652 if (out_fd < 0) {
657 out_fd = open(filename_.c_str(), O_WRONLY|O_CREAT|O_TRUNC, 0644);
658 if (out_fd < 0) {
665 std::unique_ptr<File> file(new File(out_fd, filename_, true));