Searched defs:archivefd (Results 1 - 1 of 1) sorted by relevance

/illumos-gate/usr/src/cmd/backup/dump/
H A Ddumptape.c147 static int archivefd; /* fd of archive file (proper) */ variable
419 archivefd = safe_file_open(archivefile, O_WRONLY, 0600);
420 if (archivefd < 0) {
430 if (lseek64(archivefd, lf_archoffset, 0) < 0) {
438 if (ftruncate64(archivefd, lf_archoffset) < 0) {
498 (size = write(archivefd, data, tp_bsize))
511 if (fstat64(archivefd, &stats) < 0)
532 (void) close(archivefd);
533 archivefd = -1;
972 lf_archoffset = lseek64(archivefd, (off64_
[all...]

Completed in 62 milliseconds