Home
last modified time | relevance | path

Searched refs:tartype (Results 1 – 4 of 4) sorted by relevance

/src/contrib/libarchive/libarchive/
H A Darchive_write_set_format_gnutar.c156 struct archive_entry *, char tartype);
277 char tartype; in archive_write_gnutar_header() local
551 tartype = '1'; in archive_write_gnutar_header()
554 case AE_IFREG: tartype = '0' ; break; in archive_write_gnutar_header()
555 case AE_IFLNK: tartype = '2' ; break; in archive_write_gnutar_header()
556 case AE_IFCHR: tartype = '3' ; break; in archive_write_gnutar_header()
557 case AE_IFBLK: tartype = '4' ; break; in archive_write_gnutar_header()
558 case AE_IFDIR: tartype = '5' ; break; in archive_write_gnutar_header()
559 case AE_IFIFO: tartype = '6' ; break; in archive_write_gnutar_header()
567 ret = archive_format_gnutar_header(a, buff, entry, tartype); in archive_write_gnutar_header()
[all …]
H A Darchive_write_set_format_ustar.c387 struct archive_entry *entry, int tartype, int strict, in __archive_write_format_header_ustar() argument
531 if (tartype != 'x') { in __archive_write_format_header_ustar()
556 if (tartype != 'x') { in __archive_write_format_header_ustar()
620 if (tartype >= 0) { in __archive_write_format_header_ustar()
621 h[USTAR_typeflag_offset] = tartype; in __archive_write_format_header_ustar()
H A Darchive_write_private.h147 struct archive_entry *, int tartype, int strict,
/src/contrib/file/src/
H A Dis_tar.c56 static const char tartype[][32] = { /* should be equal to messages */ variable
85 tartype[tar - 1]) == -1) in file_is_tar()