Searched refs:want_type (Results 1 – 7 of 7) sorted by relevance
/freebsd/contrib/libarchive/libarchive/ |
H A D | archive_acl.c | 59 static size_t archive_acl_text_len(struct archive_acl *acl, int want_type, 368 archive_acl_count(struct archive_acl *acl, int want_type) in archive_acl_count() argument 376 if ((ap->type & want_type) != 0) in archive_acl_count() 381 if (count > 0 && ((want_type & ARCHIVE_ENTRY_ACL_TYPE_ACCESS) != 0)) in archive_acl_count() 401 archive_acl_reset(struct archive_acl *acl, int want_type) in archive_acl_reset() argument 405 count = archive_acl_count(acl, want_type); in archive_acl_reset() 412 if ((want_type & ARCHIVE_ENTRY_ACL_TYPE_ACCESS) != 0) in archive_acl_reset() 431 archive_acl_next(struct archive *a, struct archive_acl *acl, int want_type, in archive_acl_next() argument 446 if ((want_type & ARCHIVE_ENTRY_ACL_TYPE_ACCESS) != 0) { in archive_acl_next() 472 while (acl->acl_p != NULL && (acl->acl_p->type & want_type) == 0) in archive_acl_next() [all …]
|
H A D | archive_entry.c | 1685 archive_entry_acl_count(struct archive_entry *entry, int want_type) in archive_entry_acl_count() argument 1687 return archive_acl_count(&entry->acl, want_type); in archive_entry_acl_count() 1696 archive_entry_acl_reset(struct archive_entry *entry, int want_type) in archive_entry_acl_reset() argument 1698 return archive_acl_reset(&entry->acl, want_type); in archive_entry_acl_reset() 1706 archive_entry_acl_next(struct archive_entry *entry, int want_type, int *type, in archive_entry_acl_next() argument 1710 r = archive_acl_next(entry->archive, &entry->acl, want_type, type, in archive_entry_acl_next()
|
/freebsd/stand/libofw/ |
H A D | devicename.c | 64 ofw_path_to_handle(const char *ofwpath, const char *want_type, const char **path) in ofw_path_to_handle() argument 84 if (strcmp(want_type, type) == 0) { in ofw_path_to_handle()
|
H A D | libofw.h | 62 phandle_t ofw_path_to_handle(const char *ofwpath, const char *want_type, const char **path);
|
/freebsd/contrib/ncurses/ncurses/tinfo/ |
H A D | lib_tparm.c | 1113 int want_type = 0; in check_string_caps() local 1116 want_type = 2; /* function key #1, type string #2 */ in check_string_caps() 1118 want_type = 2; /* function key #1, execute string #2 */ in check_string_caps() 1120 want_type = 2; /* function key #1, transmit string #2 */ in check_string_caps() 1122 want_type = 2; /* label #1, show string #2 */ in check_string_caps() 1125 want_type = 6; /* function key #1, type string #2, show string #3 */ in check_string_caps() 1133 want_type = 1; /* style #1 */ in check_string_caps() 1137 want_type = 3; /* storage unit #1, content #2 */ in check_string_caps() 1141 if (want_type == data->tparm_type) { in check_string_caps()
|
/freebsd/contrib/libarchive/libarchive/test/ |
H A D | main.c | 2487 struct archive_test_acl_t *acls, int cnt, int want_type, int mode) in archive_test_compare_acls() argument 2499 if ((acls[i].type & want_type) != 0) { in archive_test_compare_acls() 2505 failure("No ACL's to compare, type mask: %d", want_type); in archive_test_compare_acls() 2510 while (0 == (r = archive_entry_acl_next(ae, want_type, in archive_test_compare_acls() 2547 if ((want_type & ARCHIVE_ENTRY_ACL_TYPE_ACCESS) != 0) in archive_test_compare_acls()
|
/freebsd/contrib/libarchive/test_utils/ |
H A D | test_main.c | 3366 int want_type, int mode) in assertion_entry_compare_acls() argument 3381 if ((acls[i].type & want_type) != 0) { in assertion_entry_compare_acls() 3389 want_type); in assertion_entry_compare_acls() 3393 while (0 == (r = archive_entry_acl_next(ae, want_type, in assertion_entry_compare_acls() 3462 if ((want_type & ARCHIVE_ENTRY_ACL_TYPE_ACCESS) != 0 && in assertion_entry_compare_acls()
|