| /freebsd/contrib/libarchive/libarchive/test/ |
| H A D | test_write_format_mtree.c | 100 if ((entries[i].mode & AE_IFMT) != S_IFDIR) in test_write_format_mtree_sub() 103 if ((entries[i].mode & AE_IFMT) != S_IFDIR) in test_write_format_mtree_sub() 143 if (dironly && (entries[i].mode & AE_IFMT) != S_IFDIR) in test_write_format_mtree_sub() 151 if ((entries[i].mode & AE_IFMT) != S_IFDIR) in test_write_format_mtree_sub() 188 if ((entries2[i].mode & AE_IFMT) != S_IFDIR) in test_write_format_mtree_sub2() 191 if ((entries2[i].mode & AE_IFMT) != S_IFDIR) in test_write_format_mtree_sub2() 233 if (dironly && (entries2[i].mode & AE_IFMT) != S_IFDIR) in test_write_format_mtree_sub2() 242 if ((entries2[i].mode & AE_IFMT) != S_IFDIR) in test_write_format_mtree_sub2()
|
| H A D | test_write_format_mtree_classic.c | 140 if ((entries[i].mode & AE_IFMT) != S_IFDIR) in test_write_format_mtree_sub() 143 if ((entries[i].mode & AE_IFMT) != S_IFDIR) in test_write_format_mtree_sub() 167 if (dironly && (entries[i].mode & AE_IFMT) != S_IFDIR) in test_write_format_mtree_sub() 180 if ((entries[i].mode & AE_IFMT) != S_IFDIR) in test_write_format_mtree_sub()
|
| H A D | test_write_format_mtree_classic_indent.c | 142 if ((entries[i].mode & AE_IFMT) != S_IFDIR) in test_write_format_mtree_sub() 145 if ((entries[i].mode & AE_IFMT) != S_IFDIR) in test_write_format_mtree_sub() 169 if (dironly && (entries[i].mode & AE_IFMT) != S_IFDIR) in test_write_format_mtree_sub() 182 if ((entries[i].mode & AE_IFMT) != S_IFDIR) in test_write_format_mtree_sub()
|
| /freebsd/contrib/libarchive/libarchive/ |
| H A D | archive_write_set_format_cpio_binary.c | 446 if (((h.h_mode & AE_IFMT) == AE_IFSOCK) || ((h.h_mode & AE_IFMT) == AE_IFIFO)) { in write_header() 453 if ((h.h_mode & AE_IFMT) == AE_IFLNK) { in write_header()
|
| H A D | archive_read_support_format_xar.c | 706 if ((file->mode & AE_IFMT) != AE_IFDIR) in xar_read_header() 786 if ((file->mode & AE_IFMT) == AE_IFDIR) in xar_read_header() 2292 ((xar->file->mode & AE_IFMT) == AE_IFDIR)) in xml_end() 2733 (xar->file->mode & ~AE_IFMT) | AE_IFREG; in xml_data() 2736 (xar->file->mode & ~AE_IFMT) | AE_IFDIR; in xml_data() 2739 (xar->file->mode & ~AE_IFMT) | AE_IFLNK; in xml_data() 2742 (xar->file->mode & ~AE_IFMT) | AE_IFCHR; in xml_data() 2745 (xar->file->mode & ~AE_IFMT) | AE_IFBLK; in xml_data() 2748 (xar->file->mode & ~AE_IFMT) | AE_IFSOCK; in xml_data() 2751 (xar->file->mode & ~AE_IFMT) | AE_IFIFO; in xml_data() [all …]
|
| H A D | archive_entry.c | 369 return (AE_IFMT & entry->acl.mode); in archive_entry_filetype() 655 return (~AE_IFMT & entry->acl.mode); in archive_entry_perm() 891 entry->acl.mode &= ~AE_IFMT; in archive_entry_set_filetype() 892 entry->acl.mode |= AE_IFMT & type; in archive_entry_set_filetype() 1320 entry->acl.mode &= AE_IFMT; in archive_entry_set_perm() 1321 entry->acl.mode |= ~AE_IFMT & p; in archive_entry_set_perm()
|
| H A D | archive_read_support_format_zip.c | 1032 if ((zip_entry->mode & AE_IFMT) == AE_IFIFO) { in zip_read_local_file_header() 1033 zip_entry->mode &= ~ AE_IFMT; in zip_read_local_file_header() 1063 if ((zip_entry->mode & AE_IFMT) != AE_IFDIR) { in zip_read_local_file_header() 1077 zip_entry->mode &= ~AE_IFMT; in zip_read_local_file_header() 1080 } else if ((zip_entry->mode & AE_IFMT) == 0) { in zip_read_local_file_header() 1086 if ((zip_entry->mode & AE_IFMT) == AE_IFDIR) { in zip_read_local_file_header() 1166 if ((zip->entry->mode & AE_IFMT) == AE_IFLNK) { in zip_read_local_file_header() 3098 if (AE_IFREG != (zip->entry->mode & AE_IFMT)) in archive_read_format_zip_read_data()
|
| H A D | archive_read_support_format_cpio.c | 914 if ((archive_entry_mode(entry) & AE_IFMT) == 0) in header_bin_le() 959 if ((archive_entry_mode(entry) & AE_IFMT) == 0) in header_bin_be()
|
| H A D | archive_read_support_format_iso9660.c | 1416 if ((file->mode & AE_IFMT) != AE_IFDIR && in archive_read_format_iso9660_read_header() 2052 (file->mode & AE_IFMT) == AE_IFLNK) { in parse_file_info() 2376 if (((file->mode & AE_IFMT) == AE_IFREG && in register_CE() 2936 } else if ((file->mode & AE_IFMT) == AE_IFDIR) { in next_cache_entry() 2981 if ((file->mode & AE_IFMT) != AE_IFREG || file->number == -1) in next_cache_entry()
|
| H A D | archive_entry.h | 215 #define AE_IFMT ((__LA_MODE_T)0170000) macro
|
| H A D | archive_write_disk_posix.c | 753 (a->mode & AE_IFMT) == AE_IFREG && a->filesize > 0) { in _archive_write_disk_header() 2367 else if ((st.st_mode & AE_IFMT) == AE_IFREG) { in create_filesystem_object() 2418 switch (a->mode & AE_IFMT) { in create_filesystem_object() 4450 (((st.st_mode & AE_IFMT) != AE_IFREG) && in fixup_appledouble() 4451 ((st.st_mode & AE_IFMT) != AE_IFDIR))) in fixup_appledouble()
|
| H A D | archive_read_support_format_7zip.c | 1036 if ((zip_entry->mode & AE_IFMT) == AE_IFLNK) { in archive_read_format_7zip_read_header() 1070 zip_entry->mode &= ~AE_IFMT; in archive_read_format_7zip_read_header() 3049 (entries[i].mode & AE_IFMT) != AE_IFDIR) { in read_Header() 3050 entries[i].mode &= ~AE_IFMT; in read_Header() 3053 if ((entries[i].mode & AE_IFMT) == AE_IFDIR && in read_Header()
|
| H A D | archive_write_set_format_mtree.c | 2262 if ((np->mode & AE_IFMT) != (file->mode & AE_IFMT)) { in mtree_entry_exchange_same_entry()
|
| H A D | archive_read_support_format_lha.c | 652 if ((lha->mode & AE_IFMT) == AE_IFLNK) { in archive_read_format_lha_read_header() 670 lha->mode = (lha->mode & ~AE_IFMT) | in archive_read_format_lha_read_header()
|
| H A D | archive_read_support_format_rar.c | 1856 if (((rar->mode) & AE_IFMT) == AE_IFLNK) in read_header()
|