Lines Matching defs:uncompfd
1357 int uncompfd = -1;
1404 if ((uncompfd = mkstemp64(tmpfilename)) == -1) {
1414 (void) fchmod(uncompfd, statbuf.st_mode);
1416 if (fchown(uncompfd, statbuf.st_uid, statbuf.st_gid) == -1) {
1418 (void) close(uncompfd);
1430 if (write(uncompfd, buf, rbytes) != rbytes) {
1437 (void) close(uncompfd);
1480 int compfd = -1, uncompfd = -1;
1519 if ((uncompfd = open64(filename, O_RDWR|O_LARGEFILE, 0)) == -1)
1535 if (fcntl(uncompfd, F_SETLKW, &lock) == -1)
1538 if (fstat64(uncompfd, &statbuf) == -1) {
1539 (void) close(uncompfd);
1545 (void) close(uncompfd);
1603 rbytes = read(uncompfd, uncompressed_seg, segsize);
1658 (void) close(uncompfd);
1770 if (uncompfd != -1)
1771 (void) close(uncompfd);