Searched refs:AE_IFDIR (Results 26 - 50 of 60) sorted by relevance

123

/freebsd-11.0-release/contrib/libarchive/libarchive/test/
H A Dtest_write_format_warc.c112 archive_entry_set_filetype(ae, AE_IFDIR);
H A Dtest_write_format_xar.c131 archive_entry_set_mode(ae, AE_IFDIR | 0755);
263 assert((AE_IFDIR | 0755) == archive_entry_mode(ae));
H A Dtest_acl_freebsd_nfs4.c474 archive_entry_set_filetype(ae, AE_IFDIR);
483 archive_entry_set_filetype(ae, AE_IFDIR);
H A Dtest_archive_write_set_format_by_name.c112 assertEqualInt(AE_IFDIR, archive_entry_filetype(ae));
H A Dtest_compat_zip.c118 assertEqualInt(AE_IFDIR, archive_entry_filetype(ae));
350 assertEqualInt(AE_IFDIR, archive_entry_filetype(ae));
H A Dtest_read_format_zip.c48 assertEqualInt(AE_IFDIR | 0755, archive_entry_mode(ae));
H A Dtest_write_disk.c57 if (archive_entry_filetype(ae) == AE_IFDIR)
H A Dtest_read_format_7zip.c266 assertEqualInt((AE_IFDIR | 0755), archive_entry_mode(ae));
345 assertEqualInt((AE_IFDIR | 0755), archive_entry_mode(ae));
476 assertEqualInt((AE_IFDIR | 0755), archive_entry_mode(ae));
H A Dtest_write_format_zip.c358 assertEqualInt(AE_IFDIR | 0755, archive_entry_mode(ae));
443 assertEqualInt(AE_IFDIR | 0755, archive_entry_mode(ae));
529 assertEqualInt(AE_IFDIR | 0755, archive_entry_mode(ae));
H A Dtest_write_read_format_zip.c360 assertEqualInt(AE_IFDIR | 0755, archive_entry_mode(ae));
449 assertEqualInt(AE_IFDIR | 0755, archive_entry_mode(ae));
539 assertEqualInt(AE_IFDIR | 0755, archive_entry_mode(ae));
H A Dtest_read_format_zip_filename.c202 assertEqualInt(AE_IFDIR, archive_entry_filetype(ae));
268 assertEqualInt(AE_IFDIR, archive_entry_filetype(ae));
837 assertEqualInt(AE_IFDIR, archive_entry_filetype(ae));
/freebsd-11.0-release/contrib/libarchive/libarchive/
H A Darchive_write_set_format_shar.c183 case AE_IFDIR:
211 if (archive_entry_filetype(entry) != AE_IFDIR) {
288 case AE_IFDIR:
H A Darchive_write_set_format_v7tar.c249 if (AE_IFDIR == archive_entry_filetype(entry)) {
493 case AE_IFREG: case AE_IFDIR:
H A Darchive_write_set_format_gnutar.c303 if (AE_IFDIR == archive_entry_filetype(entry)) {
535 case AE_IFDIR: tartype = '5' ; break;
H A Darchive_write_set_format_mtree.c515 mtree->set.type = AE_IFDIR;
774 case AE_IFDIR:
776 mtree->set.type == AE_IFDIR)
838 if (me->filetype == AE_IFDIR) {
900 if (mtree->dironly && archive_entry_filetype(entry) != AE_IFDIR)
965 me->nlink != 1 && me->filetype != AE_IFDIR)
1037 case AE_IFDIR:
1903 archive_entry_set_mode(entry, AE_IFDIR | 0755);
H A Darchive_write_set_format_ustar.c271 if (AE_IFDIR == archive_entry_filetype(entry)) {
614 case AE_IFDIR: h[USTAR_typeflag_offset] = '5' ; break;
H A Darchive_entry_link_resolver.c195 if (archive_entry_filetype(*e) == AE_IFDIR
H A Darchive_read_support_format_mtree.c1138 if (archive_entry_filetype(entry) != AE_IFDIR)
1161 archive_entry_filetype(entry) == AE_IFDIR) {
1212 archive_entry_filetype(entry) == AE_IFDIR)
1608 AE_IFDIR);
H A Darchive_read_support_format_zip.c632 zip_entry->mode = AE_IFDIR | 0775;
875 zip_entry->mode |= AE_IFDIR;
882 zip_entry->mode |= AE_IFDIR;
886 if (zip_entry->mode == AE_IFDIR) {
894 if ((zip_entry->mode & AE_IFMT) == AE_IFDIR) {
2685 zip_entry->mode = AE_IFDIR | 0775;
H A Darchive_entry.h161 #define AE_IFDIR ((__LA_MODE_T)0040000) macro
H A Darchive_write_set_format_zip.c528 if (type != AE_IFREG && type != AE_IFDIR && type != AE_IFLNK) {
1413 if (type == AE_IFDIR &&
1439 if ((type == AE_IFDIR) & (path[strlen(path) - 1] != '/')) {
1463 if ((type == AE_IFDIR) & (path[pathlen - 1] != '/')) {
H A Darchive_read_support_format_iso9660.c1326 if ((file->mode & AE_IFMT) != AE_IFDIR &&
1384 if (archive_entry_filetype(entry) == AE_IFDIR) {
1885 file->mode = AE_IFDIR | 0700;
2799 } else if ((file->mode & AE_IFMT) == AE_IFDIR) {
H A Darchive_read_support_format_tar.c520 archive_entry_set_filetype(entry, AE_IFDIR);
525 archive_entry_set_filetype(entry, AE_IFDIR);
1238 archive_entry_set_filetype(entry, AE_IFDIR);
1253 archive_entry_set_filetype(entry, AE_IFDIR);
H A Darchive_write_set_format_xar.c1188 case AE_IFDIR:
1943 if (entry != NULL && archive_entry_filetype(entry) == AE_IFDIR)
1979 archive_entry_set_mode(file->entry, 0555 | AE_IFDIR);
H A Darchive_read_support_format_7zip.c2609 entries[i].mode = AE_IFDIR | 0777;
2613 (entries[i].mode & AE_IFMT) != AE_IFDIR) {
2615 entries[i].mode |= AE_IFDIR;
2617 if ((entries[i].mode & AE_IFMT) == AE_IFDIR &&

Completed in 211 milliseconds

123