Searched refs:tartype (Results 1 – 4 of 4) sorted by relevance
/freebsd/contrib/libarchive/libarchive/ |
H A D | archive_write_set_format_gnutar.c | 156 struct archive_entry *, int tartype); 277 int tartype; in archive_write_gnutar_header() local 527 tartype = '1'; in archive_write_gnutar_header() 530 case AE_IFREG: tartype = '0' ; break; in archive_write_gnutar_header() 531 case AE_IFLNK: tartype = '2' ; break; in archive_write_gnutar_header() 532 case AE_IFCHR: tartype = '3' ; break; in archive_write_gnutar_header() 533 case AE_IFBLK: tartype = '4' ; break; in archive_write_gnutar_header() 534 case AE_IFDIR: tartype = '5' ; break; in archive_write_gnutar_header() 535 case AE_IFIFO: tartype = '6' ; break; in archive_write_gnutar_header() 543 ret = archive_format_gnutar_header(a, buff, entry, tartype); in archive_write_gnutar_header() [all …]
|
H A D | archive_write_set_format_ustar.c | 387 struct archive_entry *entry, int tartype, int strict, argument 518 if (tartype != 'x') { 543 if (tartype != 'x') { 607 if (tartype >= 0) { 608 h[USTAR_typeflag_offset] = tartype;
|
H A D | archive_write_private.h | 147 struct archive_entry *, int tartype, int strict,
|
/freebsd/contrib/file/src/ |
H A D | is_tar.c | 56 static const char tartype[][32] = { /* should be equal to messages */ variable 85 tartype[tar - 1]) == -1) in file_is_tar()
|