Lines Matching refs:uncompfd
1361 int uncompfd = -1;
1408 if ((uncompfd = mkstemp64(tmpfilename)) == -1) {
1418 (void) fchmod(uncompfd, statbuf.st_mode);
1420 if (fchown(uncompfd, statbuf.st_uid, statbuf.st_gid) == -1) {
1422 (void) close(uncompfd);
1434 if (write(uncompfd, buf, rbytes) != rbytes) {
1441 (void) close(uncompfd);
1484 int compfd = -1, uncompfd = -1;
1523 if ((uncompfd = open64(filename, O_RDWR|O_LARGEFILE, 0)) == -1)
1539 if (fcntl(uncompfd, F_SETLKW, &lock) == -1)
1542 if (fstat64(uncompfd, &statbuf) == -1) {
1543 (void) close(uncompfd);
1549 (void) close(uncompfd);
1607 rbytes = read(uncompfd, uncompressed_seg, segsize);
1662 (void) close(uncompfd);
1774 if (uncompfd != -1)
1775 (void) close(uncompfd);