| /src/external/ibm-public/postfix/dist/src/util/ |
| poll_fd.c | 159 int temp_fd = -1; local 165 if ((temp_fd = dup(fd)) < 0 || temp_fd >= FD_SETSIZE) 167 fd = temp_fd; 204 if (temp_fd != -1) 205 (void) close(temp_fd); 210 if (temp_fd != -1) 211 (void) close(temp_fd);
|
| /src/external/gpl3/binutils/dist/binutils/ |
| arsup.c | 41 static int temp_fd; variable 150 temp_name = make_tempname (real_name, &temp_fd); 160 obfd = bfd_fdopenw (temp_name, NULL, temp_fd); 342 temp_fd = dup (temp_fd); 358 smart_rename (temp_name, real_name, temp_fd, NULL, false);
|
| /src/external/gpl3/binutils.old/dist/binutils/ |
| arsup.c | 46 static int temp_fd; variable 155 temp_name = make_tempname (real_name, &temp_fd); 165 obfd = bfd_fdopenw (temp_name, NULL, temp_fd); 355 temp_fd = dup (temp_fd); 371 smart_rename (temp_name, real_name, temp_fd, NULL, false);
|
| /src/external/bsd/ntp/dist/ntpd/ |
| refclock_arc.c | 634 int temp_fd; local 650 temp_fd = refclock_open(&peer->srcadr, device, SPEED, LDISC_CLK); 651 if (temp_fd <= 0) 658 close(temp_fd); 661 close(temp_fd); 662 temp_fd = -1; /* not used after this, at *this* time. */
|
| /src/external/bsd/libarchive/dist/libarchive/ |
| archive_write_set_format_7zip.c | 205 int temp_fd; member in struct:_7zip 366 zip->temp_fd = -1; 674 if (zip->temp_fd == -1) { 676 zip->temp_fd = __archive_mktemp(NULL); 677 if (zip->temp_fd < 0) { 686 ws = write(zip->temp_fd, p, s); 817 lseek(zip->temp_fd, offset, SEEK_SET) < 0) { 831 rs = read(zip->temp_fd, wb, rsize); 1598 if (zip->temp_fd >= 0) 1599 close(zip->temp_fd); [all...] |
| archive_write_set_format_xar.c | 252 int temp_fd; member in struct:xar 378 xar->temp_fd = -1; 618 if (xar->temp_fd == -1) { 621 xar->temp_fd = __archive_mktemp(NULL); 622 if (xar->temp_fd < 0) { 629 if (lseek(xar->temp_fd, algsize, SEEK_SET) < 0) { 689 ws = write(xar->temp_fd, p, s); 1845 if (lseek(xar->temp_fd, offset, SEEK_SET) < 0) { 1859 rs = read(xar->temp_fd, wb, rsize); 1956 if (xar->temp_fd >= 0 [all...] |
| archive_write_set_format_iso9660.c | 684 int temp_fd; member in struct:iso9660 766 * Copy a compressed file to iso9660.zisofs.temp_fd 768 * iso9660.temp_fd . If the number of logical block 1070 iso9660->temp_fd = -1; 1624 if (iso9660->temp_fd < 0) { 1625 iso9660->temp_fd = __archive_mktemp(NULL); 1626 if (iso9660->temp_fd < 0) { 1653 written = write(iso9660->temp_fd, b, s); 1720 if (iso9660->temp_fd < 0) { 2127 if (iso9660->temp_fd >= 0 [all...] |