Searched refs:want_type (Results 1 - 12 of 12) sorted by relevance

/netbsd-current/external/bsd/libarchive/dist/libarchive/
H A Darchive_acl.c59 static ssize_t archive_acl_text_len(struct archive_acl *acl, int want_type,
365 * Return a count of entries matching "want_type".
368 archive_acl_count(struct archive_acl *acl, int want_type) argument
376 if ((ap->type & want_type) != 0)
381 if (count > 0 && ((want_type & ARCHIVE_ENTRY_ACL_TYPE_ACCESS) != 0))
397 * of entries matching "want_type", or zero if there are no
401 archive_acl_reset(struct archive_acl *acl, int want_type) argument
405 count = archive_acl_count(acl, want_type);
412 if ((want_type & ARCHIVE_ENTRY_ACL_TYPE_ACCESS) != 0)
431 archive_acl_next(struct archive *a, struct archive_acl *acl, int want_type, argument
502 int want_type; local
532 archive_acl_text_len(struct archive_acl *acl, int want_type, int flags, int wide, struct archive *a, struct archive_string_conv *sc) argument
673 int id, r, want_type; local
906 int id, r, want_type; local
1136 archive_acl_from_text_w(struct archive_acl *acl, const wchar_t *text, int want_type) argument
1620 archive_acl_from_text_l(struct archive_acl *acl, const char *text, int want_type, struct archive_string_conv *sc) argument
[all...]
H A Darchive_entry.c1582 * Return a count of entries matching "want_type".
1585 archive_entry_acl_count(struct archive_entry *entry, int want_type) argument
1587 return archive_acl_count(&entry->acl, want_type);
1592 * of entries matching "want_type", or zero if there are no
1596 archive_entry_acl_reset(struct archive_entry *entry, int want_type) argument
1598 return archive_acl_reset(&entry->acl, want_type);
1606 archive_entry_acl_next(struct archive_entry *entry, int want_type, int *type, argument
1610 r = archive_acl_next(entry->archive, &entry->acl, want_type, type,
/netbsd-current/external/gpl3/gcc.old/dist/gcc/cp/
H A Dname-lookup.h310 extern tree get_class_binding_direct (tree, tree, bool want_type = false);
311 extern tree get_class_binding (tree, tree, bool want_type = false);
H A Dsearch.c916 int want_type;
994 nval = get_class_binding (type, lfi->name, lfi->want_type);
998 if (lfi->want_type && nval && !DECL_DECLARES_TYPE_P (nval))
1094 lookup_member (tree xbasetype, tree name, int protect, bool want_type,
1147 lfi.want_type = want_type;
1341 lookup_field (tree xbasetype, tree name, int protect, bool want_type)
1343 tree rval = lookup_member (xbasetype, name, protect, want_type,
1360 tree rval = lookup_member (xbasetype, name, protect, /*want_type=*/false,
915 int want_type; member in struct:lookup_field_info
1093 lookup_member(tree xbasetype, tree name, int protect, bool want_type, tsubst_flags_t complain, access_failure_info *afi) argument
1340 lookup_field(tree xbasetype, tree name, int protect, bool want_type) argument
H A Dname-lookup.c1164 fields_linear_search (tree klass, tree name, bool want_type) argument
1173 if (tree temp = search_anon_aggr (TREE_TYPE (decl), name, want_type))
1191 if (!want_type || DECL_DECLARES_TYPE_P (decl))
1204 search_anon_aggr (tree anon, tree name, bool want_type) argument
1207 tree ret = get_class_binding_direct (anon, name, want_type);
1219 get_class_binding_direct (tree klass, tree name, bool want_type) argument
1236 val = want_type ? STAT_TYPE (val) : STAT_DECL (val);
1237 else if (want_type && !DECL_DECLARES_TYPE_P (val))
1242 if (member_vec && !want_type)
1248 if (tree field_val = fields_linear_search (klass, lookup, want_type))
[all...]
/netbsd-current/external/gpl3/gcc/dist/gcc/cp/
H A Dname-lookup.h448 extern tree get_class_binding_direct (tree, tree, bool want_type = false);
449 extern tree get_class_binding (tree, tree, bool want_type = false);
H A Dsearch.cc944 int want_type;
1022 nval = get_class_binding (type, lfi->name, lfi->want_type);
1114 lookup_member (tree xbasetype, tree name, int protect, bool want_type,
1165 lfi.want_type = want_type;
1356 lookup_field (tree xbasetype, tree name, int protect, bool want_type)
1358 tree rval = lookup_member (xbasetype, name, protect, want_type,
1376 tree rval = lookup_member (xbasetype, name, protect, /*want_type=*/false,
943 int want_type; member in struct:lookup_field_info
1113 lookup_member(tree xbasetype, tree name, int protect, bool want_type, tsubst_flags_t complain, access_failure_info *afi) argument
1355 lookup_field(tree xbasetype, tree name, int protect, bool want_type) argument
H A Dname-lookup.cc1775 fields_linear_search (tree klass, tree name, bool want_type) argument
1784 if (tree temp = search_anon_aggr (TREE_TYPE (decl), name, want_type))
1802 if (!want_type || DECL_DECLARES_TYPE_P (decl))
1815 search_anon_aggr (tree anon, tree name, bool want_type) argument
1818 tree ret = get_class_binding_direct (anon, name, want_type);
1830 get_class_binding_direct (tree klass, tree name, bool want_type) argument
1847 val = want_type ? STAT_TYPE (val) : STAT_DECL (val);
1848 else if (want_type && !DECL_DECLARES_TYPE_P (val))
1853 if (member_vec && !want_type)
1859 if (tree field_val = fields_linear_search (klass, lookup, want_type))
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/gdb/
H A Dminsyms.c703 minimal_symbol_type want_type = msym_prefer_to_msym_type (prefer); local
817 && MSYMBOL_TYPE (&msymbol[hi]) != want_type
818 && MSYMBOL_TYPE (&msymbol[hi - 1]) == want_type
H A Drust-exp.y253 bool want_type = false);
2207 bool want_type)
2416 if (!want_type
2426 else if (want_type || operation == top)
/netbsd-current/external/gpl3/gdb/dist/gdb/
H A Dminsyms.c750 minimal_symbol_type want_type = msym_prefer_to_msym_type (prefer); local
864 && msymbol[hi].type () != want_type
865 && msymbol[hi - 1].type () == want_type
/netbsd-current/external/bsd/libarchive/dist/test_utils/
H A Dtest_main.c3353 int want_type, int mode)
3368 if ((acls[i].type & want_type) != 0) {
3376 want_type);
3380 while (0 == (r = archive_entry_acl_next(ae, want_type,
3449 if ((want_type & ARCHIVE_ENTRY_ACL_TYPE_ACCESS) != 0 &&
3351 assertion_entry_compare_acls(const char *file, int line, struct archive_entry *ae, struct archive_test_acl_t *acls, int cnt, int want_type, int mode) argument

Completed in 174 milliseconds