Searched refs:entry (Results 51 - 75 of 1421) sorted by relevance

1234567891011>>

/freebsd-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/docsExamples/
H A Duserfunc.d40 pid$1::$2:entry
51 pid$1:::entry,
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pid/
H A Dtst.weak1.d56 pid$1:a.out:go:entry,
57 pid$1:a.out:_go:entry
63 pid$1:a.out:go:entry,
64 pid$1:a.out:_go:entry
71 pid$1:a.out:go:entry,
72 pid$1:a.out:_go:entry
H A Dtst.weak2.d56 pid$1:a.out:go:entry,
57 pid$1:a.out:_go:entry
63 pid$1:a.out:go:entry,
64 pid$1:a.out:_go:entry
71 pid$1:a.out:go:entry,
72 pid$1:a.out:_go:entry
/freebsd-11-stable/contrib/libarchive/libarchive/test/
H A Dtest_write_format_cpio_odc.c48 struct archive_entry *entry; local
67 assert((entry = archive_entry_new()) != NULL);
68 archive_entry_set_mtime(entry, 1, 10);
69 archive_entry_set_pathname(entry, "file");
70 archive_entry_set_mode(entry, S_IFREG | 0664);
71 archive_entry_set_size(entry, 10);
72 archive_entry_set_uid(entry, 80);
73 archive_entry_set_gid(entry, 90);
74 archive_entry_set_dev(entry, 12);
75 archive_entry_set_ino(entry, 8
[all...]
H A Dtest_read_disk_entry_from_file.c47 struct archive_entry *entry; local
66 entry = archive_entry_new();
67 assert(entry != NULL);
68 archive_entry_copy_pathname(entry, "foo");
70 archive_read_disk_entry_from_file(a, entry, -1, NULL));
73 assertEqualString(archive_entry_uname(entry), "FOO");
74 assertEqualString(archive_entry_gname(entry), "FOOGROUP");
75 assertEqualInt(archive_entry_size(entry), 4);
78 archive_entry_free(entry);
/freebsd-11-stable/lib/libc/posix1e/
H A Dacl_from_text_nfs4.c49 * Parse the tag field of ACL entry passed as "str". If qualifier
54 parse_tag(const char *str, acl_entry_t entry, int *need_qualifier) argument
61 return (acl_set_tag_type(entry, ACL_USER_OBJ));
63 return (acl_set_tag_type(entry, ACL_GROUP_OBJ));
65 return (acl_set_tag_type(entry, ACL_EVERYONE));
70 return (acl_set_tag_type(entry, ACL_USER));
72 return (acl_set_tag_type(entry, ACL_GROUP));
80 * Parse the qualifier field of ACL entry passed as "str".
86 parse_qualifier(char *str, acl_entry_t entry, int *need_qualifier) argument
102 error = acl_get_tag_type(entry,
116 parse_access_mask(char *str, acl_entry_t entry) argument
131 parse_flags(char *str, acl_entry_t entry) argument
146 parse_entry_type(const char *str, acl_entry_t entry) argument
164 parse_appended_id(char *str, acl_entry_t entry) argument
205 acl_entry_t entry; local
[all...]
/freebsd-11-stable/sys/x86/iommu/
H A Dintel_gas.c33 #define RB_AUGMENT(entry) dmar_gas_augment_entry(entry)
104 dmar_gas_free_entry(struct dmar_domain *domain, struct dmar_map_entry *entry) argument
107 KASSERT(domain == entry->domain,
108 ("mismatched free domain %p entry %p entry->domain %p", domain,
109 entry, entry->domain));
111 uma_zfree(dmar_map_entry_zone, entry);
118 /* Last entry hav
137 dmar_gas_augment_entry(struct dmar_map_entry *entry) argument
161 dmar_gas_fix_free(struct dmar_domain *domain, struct dmar_map_entry *entry) argument
175 struct dmar_map_entry *entry, *next, *l, *r; local
209 dmar_gas_rb_insert(struct dmar_domain *domain, struct dmar_map_entry *entry) argument
222 dmar_gas_rb_remove(struct dmar_domain *domain, struct dmar_map_entry *entry) argument
265 struct dmar_map_entry *entry, *entry1; local
302 struct dmar_map_entry *entry; member in struct:dmar_gas_match_args
475 dmar_gas_find_space(struct dmar_domain *domain, const struct bus_dma_tag_common *common, dmar_gaddr_t size, int offset, u_int flags, struct dmar_map_entry *entry) argument
511 dmar_gas_alloc_region(struct dmar_domain *domain, struct dmar_map_entry *entry, u_int flags) argument
591 dmar_gas_free_space(struct dmar_domain *domain, struct dmar_map_entry *entry) argument
608 dmar_gas_free_region(struct dmar_domain *domain, struct dmar_map_entry *entry) argument
633 struct dmar_map_entry *entry; local
681 dmar_gas_map_region(struct dmar_domain *domain, struct dmar_map_entry *entry, u_int eflags, u_int flags, vm_page_t *ma) argument
725 struct dmar_map_entry *entry; local
[all...]
/freebsd-11-stable/sys/contrib/ck/include/
H A Dck_stack.h54 ck_stack_push_upmc(struct ck_stack *target, struct ck_stack_entry *entry) argument
59 entry->next = stack;
62 while (ck_pr_cas_ptr_value(&target->head, stack, entry, &stack) == false) {
63 entry->next = stack;
78 ck_stack_trypush_upmc(struct ck_stack *target, struct ck_stack_entry *entry) argument
83 entry->next = stack;
86 return ck_pr_cas_ptr(&target->head, stack, entry);
98 struct ck_stack_entry *entry, *next; local
100 entry = ck_pr_load_ptr(&target->head);
101 if (entry
129 struct ck_stack_entry *entry; local
153 struct ck_stack_entry *entry; local
167 ck_stack_push_mpmc(struct ck_stack *target, struct ck_stack_entry *entry) argument
181 ck_stack_trypush_mpmc(struct ck_stack *target, struct ck_stack_entry *entry) argument
273 ck_stack_push_mpnc(struct ck_stack *target, struct ck_stack_entry *entry) argument
291 ck_stack_push_spnc(struct ck_stack *target, struct ck_stack_entry *entry) argument
[all...]
/freebsd-11-stable/sys/fs/ext2fs/
H A Dext2_extattr.c151 ext2_extattr_check(struct ext2fs_extattr_entry *entry, char *end) argument
155 while (!EXT2_IS_LAST_ENTRY(entry)) {
156 next = EXT2_EXTATTR_NEXT(entry);
160 entry = next;
173 struct ext2fs_extattr_entry *entry; local
207 for (entry = EXT2_IFIRST(header); !EXT2_IS_LAST_ENTRY(entry);
208 entry = EXT2_EXTATTR_NEXT(entry)) {
209 if (ext2_extattr_attrnamespace_to_bsd(entry
247 struct ext2fs_extattr_entry *entry; local
314 struct ext2fs_extattr_entry *entry; local
388 struct ext2fs_extattr_entry *entry; local
449 ext2_extattr_delete_value(char *off, struct ext2fs_extattr_entry *first_entry, struct ext2fs_extattr_entry *entry, char *end) argument
489 ext2_extattr_delete_entry(char *off, struct ext2fs_extattr_entry *first_entry, struct ext2fs_extattr_entry *entry, char *end) argument
516 struct ext2fs_extattr_entry *entry; local
648 struct ext2fs_extattr_entry *entry; local
744 struct ext2fs_extattr_entry *entry; local
764 free_entry(struct ext2fs_extattr_entry *entry) argument
775 struct ext2fs_extattr_entry *entry; local
801 ext2_extattr_set_exist_entry(char *off, struct ext2fs_extattr_entry *first_entry, struct ext2fs_extattr_entry *entry, char *end, struct uio *uio) argument
827 struct ext2fs_extattr_entry *entry; local
879 struct ext2fs_extattr_entry *entry; local
979 ext2_extattr_hash_entry(struct ext2fs_extattr_header *header, struct ext2fs_extattr_entry *entry) argument
1006 ext2_extattr_rehash(struct ext2fs_extattr_header *header, struct ext2fs_extattr_entry *entry) argument
1039 struct ext2fs_extattr_entry *entry; local
[all...]
/freebsd-11-stable/sys/cddl/compat/opensolaris/kern/
H A Dopensolaris_acl.c107 struct acl_entry *entry; local
130 entry = &(aclp->acl_entry[i]);
134 entry->ae_tag = ACL_USER_OBJ;
136 entry->ae_tag = ACL_GROUP_OBJ;
138 entry->ae_tag = ACL_EVERYONE;
140 entry->ae_tag = ACL_GROUP;
142 entry->ae_tag = ACL_USER;
144 if (entry->ae_tag == ACL_USER || entry->ae_tag == ACL_GROUP)
145 entry
177 const struct acl_entry *entry; local
[all...]
/freebsd-11-stable/sys/dev/ath/ath_hal/ar5211/
H A Dar5211_keycache.c44 * Return true if the specific key cache entry is valid.
47 ar5211IsKeyCacheEntryValid(struct ath_hal *ah, uint16_t entry) argument
49 if (entry < AR_KEYTABLE_SIZE) {
50 uint32_t val = OS_REG_READ(ah, AR_KEYTABLE_MAC1(entry));
58 * Clear the specified key cache entry
61 ar5211ResetKeyCacheEntry(struct ath_hal *ah, uint16_t entry) argument
63 if (entry < AR_KEYTABLE_SIZE) {
64 OS_REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), 0);
65 OS_REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), 0);
66 OS_REG_WRITE(ah, AR_KEYTABLE_KEY2(entry),
81 ar5211SetKeyCacheEntryMac(struct ath_hal *ah, uint16_t entry, const uint8_t *mac) argument
115 ar5211SetKeyCacheEntry(struct ath_hal *ah, uint16_t entry, const HAL_KEYVAL *k, const uint8_t *mac, int xorKey) argument
[all...]
/freebsd-11-stable/sbin/restore/
H A Dextern.h33 struct entry *addentry(char *, ino_t, int);
36 void badentry(struct entry *, char *);
45 void delwhiteout(struct entry *);
52 char *flagvalues(struct entry *);
53 void freeentry(struct entry *);
56 char *gentempname(struct entry *);
63 struct entry *lookupino(ino_t);
64 struct entry *lookupname(char *);
67 void mktempname(struct entry *);
68 void moveentry(struct entry *, cha
[all...]
/freebsd-11-stable/lib/libmt/
H A Dmtlib.c63 struct mt_status_entry *entry; local
88 entry = malloc(sizeof(*entry));
89 if (entry == NULL) {
93 sizeof(*entry));
96 bzero(entry, sizeof(*entry));
97 STAILQ_INIT(&entry->nv_list);
98 STAILQ_INIT(&entry->child_entries);
99 entry
189 struct mt_status_entry *entry; local
228 mt_status_tree_sbuf(struct sbuf *sb, struct mt_status_entry *entry, int indent, void (*sbuf_func)(struct sbuf *sb, struct mt_status_entry *entry, void *arg), void *arg) argument
253 mt_status_tree_print(struct mt_status_entry *entry, int indent, void (*print_func)(struct mt_status_entry *entry, void *arg), void *arg) argument
284 mt_entry_find(struct mt_status_entry *entry, char *name) argument
343 struct mt_status_entry *entry, *entry2; local
355 mt_status_entry_free(struct mt_status_entry *entry) argument
383 struct mt_status_entry *entry, *entry2; local
393 mt_entry_sbuf(struct sbuf *sb, struct mt_status_entry *entry, char *fmt) argument
420 mt_param_parent_print(struct mt_status_entry *entry, struct mt_print_params *print_params) argument
434 mt_param_parent_sbuf(struct sbuf *sb, struct mt_status_entry *entry, struct mt_print_params *print_params) argument
448 mt_param_entry_sbuf(struct sbuf *sb, struct mt_status_entry *entry, void *arg) argument
474 mt_param_entry_print(struct mt_status_entry *entry, void *arg) argument
501 struct mt_status_entry *entry; local
522 struct mt_status_entry *entry; local
[all...]
/freebsd-11-stable/sys/dev/ath/ath_hal/ar5212/
H A Dar5212_keycache.c49 * Return true if the specific key cache entry is valid.
52 ar5212IsKeyCacheEntryValid(struct ath_hal *ah, uint16_t entry) argument
54 if (entry < AH_PRIVATE(ah)->ah_caps.halKeyCacheSize) {
55 uint32_t val = OS_REG_READ(ah, AR_KEYTABLE_MAC1(entry));
63 * Clear the specified key cache entry and any associated MIC entry.
66 ar5212ResetKeyCacheEntry(struct ath_hal *ah, uint16_t entry) argument
70 if (entry >= AH_PRIVATE(ah)->ah_caps.halKeyCacheSize) {
71 HALDEBUG(ah, HAL_DEBUG_ANY, "%s: entry %u out of range\n",
72 __func__, entry);
110 ar5212SetKeyCacheEntryMac(struct ath_hal *ah, uint16_t entry, const uint8_t *mac) argument
154 ar5212SetKeyCacheEntry(struct ath_hal *ah, uint16_t entry, const HAL_KEYVAL *k, const uint8_t *mac, int xorKey) argument
[all...]
/freebsd-11-stable/crypto/heimdal/admin/
H A Drename.c42 krb5_keytab_entry entry; local
74 ret = krb5_kt_next_entry(context, keytab, &entry, &cursor);
77 krb5_warn(context, ret, "getting entry from keytab");
82 if(krb5_principal_compare(context, entry.principal, from_princ)) {
83 krb5_free_principal(context, entry.principal);
84 entry.principal = to_princ;
85 ret = krb5_kt_add_entry(context, keytab, &entry);
87 entry.principal = NULL;
88 krb5_kt_free_entry(context, &entry);
89 krb5_warn(context, ret, "adding entry");
[all...]
/freebsd-11-stable/sys/kern/
H A Dkern_rangelock.c106 struct rl_q_entry *entry, *nextentry, *entry1; local
108 for (entry = lock->rl_currdep; entry != NULL; entry = nextentry) {
109 nextentry = TAILQ_NEXT(entry, rl_q_link);
110 if (entry->rl_q_flags & RL_LOCK_READ) {
115 if (ranges_overlap(entry, entry1))
121 entry1 != entry;
123 if (ranges_overlap(entry, entry1))
128 TAILQ_REMOVE(&lock->rl_waiters, entry, rl_q_lin
141 rangelock_unlock_locked(struct rangelock *lock, struct rl_q_entry *entry, struct mtx *ilk) argument
175 struct rl_q_entry *entry; local
203 struct rl_q_entry *entry; local
254 struct rl_q_entry *entry; local
[all...]
/freebsd-11-stable/sys/dev/ath/ath_hal/ar5210/
H A Dar5210_keycache.c43 ar5210IsKeyCacheEntryValid(struct ath_hal *ah, uint16_t entry) argument
45 if (entry < AR_KEYTABLE_SIZE) {
46 uint32_t val = OS_REG_READ(ah, AR_KEYTABLE_MAC1(entry));
54 * Clear the specified key cache entry.
57 ar5210ResetKeyCacheEntry(struct ath_hal *ah, uint16_t entry) argument
59 if (entry < AR_KEYTABLE_SIZE) {
60 OS_REG_WRITE(ah, AR_KEYTABLE_KEY0(entry), 0);
61 OS_REG_WRITE(ah, AR_KEYTABLE_KEY1(entry), 0);
62 OS_REG_WRITE(ah, AR_KEYTABLE_KEY2(entry), 0);
63 OS_REG_WRITE(ah, AR_KEYTABLE_KEY3(entry),
77 ar5210SetKeyCacheEntryMac(struct ath_hal *ah, uint16_t entry, const uint8_t *mac) argument
109 ar5210SetKeyCacheEntry(struct ath_hal *ah, uint16_t entry, const HAL_KEYVAL *k, const uint8_t *mac, int xorKey) argument
[all...]
/freebsd-11-stable/sys/dev/cxgbe/iw_cxgbe/
H A Dresource.c90 u32 entry; local
91 entry = c4iw_id_alloc(id_table);
92 if (entry == (u32)(-1)) {
95 return entry;
98 void c4iw_put_resource(struct c4iw_id_table *id_table, u32 entry) argument
100 CTR2(KTR_IW_CXGBE, "%s entry 0x%x", __func__, entry);
101 c4iw_id_free(id_table, entry);
106 struct c4iw_qid_list *entry; local
112 entry
162 struct c4iw_qid_list *entry; local
176 struct c4iw_qid_list *entry; local
232 struct c4iw_qid_list *entry; local
[all...]
/freebsd-11-stable/usr.sbin/bsnmpd/modules/snmp_hostres/
H A Dhostres_swinstalled_tbl.c65 * This structure is used to hold a SNMP table entry
95 struct swins_entry *entry; member in struct:swins_map_entry
123 * Create a new entry into the hrSWInstalledTable
128 struct swins_entry *entry; local
173 if ((entry = malloc(sizeof(*entry))) == NULL) {
177 memset(entry, 0, sizeof(*entry));
179 if ((entry->name = strdup(map->name)) == NULL) {
181 free(entry);
197 swins_entry_delete(struct swins_entry *entry) argument
221 struct swins_entry *entry; local
258 struct swins_entry *entry; local
297 struct swins_entry *entry; local
399 struct swins_entry *entry, *entry_tmp; local
447 struct swins_entry *entry; local
[all...]
H A Dhostres_partition_tbl.c89 struct partition_entry *entry; member in struct:partition_map_entry
137 const struct partition_entry *entry)
142 if (oid->subs[sub + i] < entry->index[i])
144 if (oid->subs[sub + i] > entry->index[i])
156 * Create a new partition table entry
161 struct partition_entry *entry; local
203 map->entry = NULL;
215 if ((entry = malloc(sizeof(*entry))) == NULL) {
219 memset(entry,
136 partition_idx_cmp(const struct asn_oid *oid, u_int sub, const struct partition_entry *entry) argument
259 partition_entry_delete(struct partition_entry *entry) argument
282 struct partition_entry *entry = NULL; local
297 struct partition_entry *entry = NULL; local
314 struct partition_entry *entry; local
344 struct partition_entry *entry; local
550 struct partition_entry *entry; local
569 struct partition_entry *entry; local
[all...]
/freebsd-11-stable/contrib/binutils/ld/
H A Dldfile.c132 lang_input_statement_type *entry)
134 entry->the_bfd = bfd_openr (attempt, entry->target);
138 if (entry->the_bfd == NULL)
144 if (entry->the_bfd == NULL)
147 einfo (_("%F%P: invalid BFD target `%s'\n"), entry->target);
157 if (entry->search_dirs_flag || !entry->dynamic)
161 if (bfd_check_format (entry->the_bfd, bfd_archive))
162 check = bfd_openr_next_archived_file (entry
131 ldfile_try_open_bfd(const char *attempt, lang_input_statement_type *entry) argument
302 ldfile_open_file_search(const char *arch, lang_input_statement_type *entry, const char *lib, const char *suffix) argument
378 ldfile_open_file(lang_input_statement_type *entry) argument
[all...]
/freebsd-11-stable/contrib/libarchive/libarchive/
H A Darchive_entry_strmode.c40 archive_entry_strmode(struct archive_entry *entry) argument
44 char *bp = entry->strmode;
51 mode = archive_entry_mode(entry);
52 switch (archive_entry_filetype(entry)) {
61 if (archive_entry_hardlink(entry) != NULL) {
83 if (archive_entry_acl_types(entry) != 0)
/freebsd-11-stable/contrib/mdocml/
H A Dtag.c129 struct tag_entry *entry; local
143 entry = ohash_find(&tag_data, slot);
145 if (entry == NULL) {
147 /* Build a new entry. */
150 entry = mandoc_malloc(sizeof(*entry) + len);
151 memcpy(entry->s, s, len);
152 entry->lines = NULL;
153 entry->maxlines = entry
196 struct tag_entry *entry; local
[all...]
/freebsd-11-stable/contrib/libstdc++/include/ext/pb_ds/detail/binary_heap_/
H A Dentry_cmp.hpp75 entry; typedef in struct:pb_ds::detail::entry_cmp
89 operator()(entry p_lhs, entry p_rhs) const
/freebsd-11-stable/contrib/wpa/wpa_supplicant/dbus/
H A Ddbus_dict_helpers.c188 * Add a string entry to the dict.
208 * Add a boolean entry to the dict.
226 * Add a 16-bit signed integer entry to the dict.
245 * Add a 16-bit unsigned integer entry to the dict.
283 * Add a 32-bit unsigned integer entry to the dict.
302 * Add a DBus object path entry to the dict.
323 * Add a byte array entry to the dict.
346 * Begin an array entry in the dict
404 * Add a single string element to a string array dict entry
409 * @param elem The string element to be added to the dict entry'
615 _wpa_dbus_dict_entry_get_byte_array( DBusMessageIter *iter, struct wpa_dbus_dict_entry *entry) argument
672 _wpa_dbus_dict_entry_get_string_array( DBusMessageIter *iter, int array_type, struct wpa_dbus_dict_entry *entry) argument
743 _wpa_dbus_dict_entry_get_binarray( DBusMessageIter *iter, struct wpa_dbus_dict_entry *entry) argument
820 _wpa_dbus_dict_entry_get_array( DBusMessageIter *iter_dict_val, struct wpa_dbus_dict_entry *entry) argument
854 _wpa_dbus_dict_fill_value_from_variant( struct wpa_dbus_dict_entry *entry, DBusMessageIter *iter) argument
950 wpa_dbus_dict_get_entry(DBusMessageIter *iter_dict, struct wpa_dbus_dict_entry * entry) argument
1028 wpa_dbus_dict_entry_clear(struct wpa_dbus_dict_entry *entry) argument
[all...]

Completed in 601 milliseconds

1234567891011>>