Searched refs:AE_IFDIR (Results 51 - 66 of 66) sorted by relevance

123

/freebsd-11-stable/contrib/libarchive/libarchive/
H A Darchive_read_support_format_tar.c575 archive_entry_set_filetype(entry, AE_IFDIR);
580 archive_entry_set_filetype(entry, AE_IFDIR);
1306 archive_entry_set_filetype(entry, AE_IFDIR);
1321 archive_entry_set_filetype(entry, AE_IFDIR);
H A Darchive_read_support_format_zip.c750 AE_IFDIR | 0775;
1069 if ((zip_entry->mode & AE_IFMT) != AE_IFDIR) {
1084 zip_entry->mode |= AE_IFDIR;
1092 if ((zip_entry->mode & AE_IFMT) == AE_IFDIR) {
3716 zip_entry->mode = AE_IFDIR | 0775;
H A Darchive_write_set_format_xar.c1223 case AE_IFDIR:
1978 if (entry != NULL && archive_entry_filetype(entry) == AE_IFDIR)
2015 archive_entry_set_mode(file->entry, 0555 | AE_IFDIR);
H A Darchive_read_support_format_xar.c696 if ((file->mode & AE_IFMT) != AE_IFDIR)
776 if ((file->mode & AE_IFMT) == AE_IFDIR)
2283 ((xar->file->mode & AE_IFMT) == AE_IFDIR))
2724 (xar->file->mode & ~AE_IFMT) | AE_IFDIR;
H A Darchive_read_support_format_7zip.c2610 entries[i].mode = AE_IFDIR | 0777;
2614 (entries[i].mode & AE_IFMT) != AE_IFDIR) {
2616 entries[i].mode |= AE_IFDIR;
2618 if ((entries[i].mode & AE_IFMT) == AE_IFDIR &&
H A Darchive_read_support_format_rar5.c1744 mode = 0555 | AE_IFDIR;
1746 mode = 0755 | AE_IFDIR;
H A Darchive_write_set_format_pax.c649 case AE_IFDIR:
H A Darchive_write_disk_posix.c696 if (archive_entry_filetype(a->entry) == AE_IFDIR)
705 if (archive_entry_filetype(a->entry) == AE_IFDIR)
2400 case AE_IFDIR:
H A Darchive_write_set_format_iso9660.c295 * "archive_entry_filetype(isoent->file->entry) == AE_IFDIR".
4990 if (archive_entry_filetype(file->entry) == AE_IFDIR)
5126 if (archive_entry_filetype(file->entry) == AE_IFDIR)
5202 archive_entry_set_mode(file->entry, 0555 | AE_IFDIR);
H A Darchive_read_support_format_lha.c672 ((lha->directory)? AE_IFDIR: AE_IFREG);
H A Darchive_write_set_format_7zip.c1540 if (archive_entry_filetype(entry) == AE_IFDIR)
H A Darchive_read_support_format_rar.c1628 rar->mode = AE_IFDIR | S_IXUSR | S_IXGRP | S_IXOTH;
/freebsd-11-stable/contrib/libarchive/libarchive/test/
H A Dtest_entry.c96 assertEqualInt(S_IFDIR, AE_IFDIR);
H A Dtest_read_format_zip.c119 assertEqualInt(AE_IFDIR | 0755, archive_entry_mode(ae));
H A Dtest_read_format_xar.c111 assert(archive_entry_filetype(ae) != AE_IFDIR);
324 assertEqualInt(archive_entry_filetype(ae), AE_IFDIR); local
/freebsd-11-stable/contrib/libarchive/cpio/
H A Dcpio.c776 && archive_entry_filetype(entry) != AE_IFDIR) {

Completed in 308 milliseconds

123