Searched refs:entry (Results 1 - 25 of 1421) sorted by relevance

1234567891011>>

/freebsd-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pid/
H A Derr.D_PDESC_ZERO.badproc1.d36 pidgin:::entry
H A Derr.D_PROC_BADPID.badproc2.d36 pid0:::entry
H A Derr.D_PDESC_ZERO.badlib.d36 pid$1:libbmc_sucks.so.1::entry
H A Derr.D_PROC_FUNC.badfunc.d38 pid$1:a.out:ahl_r00lz:entry
/freebsd-11-stable/contrib/libarchive/libarchive/test/
H A Dtest_entry_strmode.c30 struct archive_entry *entry; local
32 assert((entry = archive_entry_new()) != NULL);
34 archive_entry_set_mode(entry, AE_IFREG | 0642);
35 assertEqualString(archive_entry_strmode(entry), "-rw-r---w- ");
38 archive_entry_set_mode(entry, AE_IFREG | 0644);
39 archive_entry_set_hardlink(entry, "link");
40 assertEqualString(archive_entry_strmode(entry), "-rw-r--r-- ");
42 archive_entry_set_mode(entry, 0640);
43 archive_entry_set_hardlink(entry, "link");
44 assertEqualString(archive_entry_strmode(entry), "hr
[all...]
H A Dtest_link_resolver.c30 struct archive_entry *entry, *e2; local
38 /* Create an entry with only 1 link and try to linkify it. */
39 assert(NULL != (entry = archive_entry_new()));
40 archive_entry_set_pathname(entry, "test1");
41 archive_entry_set_ino(entry, 1);
42 archive_entry_set_dev(entry, 2);
43 archive_entry_set_nlink(entry, 1);
44 archive_entry_set_size(entry, 10);
45 archive_entry_linkify(resolver, &entry, &e2);
49 assertEqualInt(10, archive_entry_size(entry));
95 struct archive_entry *entry, *e2; local
130 struct archive_entry *entry, *e2; local
[all...]
H A Dtest_write_format_tar_v7tar.c54 struct archive_entry *entry; local
87 assert((entry = archive_entry_new()) != NULL);
88 archive_entry_set_mtime(entry, 1, 10);
89 archive_entry_set_pathname(entry, "file");
90 archive_entry_set_mode(entry, S_IFREG | 0664);
91 archive_entry_set_size(entry, 10);
92 archive_entry_set_uid(entry, 80);
93 archive_entry_set_gid(entry, 90);
94 archive_entry_set_dev(entry, 12);
95 archive_entry_set_ino(entry, 8
[all...]
H A Dtest_pax_filename_encoding.c53 struct archive_entry *entry; local
65 * First entry in this test archive has an invalid UTF-8 sequence
70 assertEqualInt(ARCHIVE_WARN, archive_read_next_header(a, &entry));
71 assertEqualString(filename, archive_entry_pathname(entry));
73 * Second entry is identical except that it does have
78 assertEqualInt(ARCHIVE_OK, archive_read_next_header(a, &entry));
79 assertEqualString(filename, archive_entry_pathname(entry));
93 struct archive_entry *entry; local
123 assert((entry = archive_entry_new()) != NULL);
125 archive_entry_copy_pathname(entry, filenam
341 struct archive_entry *entry; local
387 struct archive_entry *entry; local
434 struct archive_entry *entry; local
481 struct archive_entry *entry; local
530 struct archive_entry *entry; local
[all...]
H A Dtest_gnutar_filename_encoding.c33 struct archive_entry *entry; local
57 entry = archive_entry_new2(a);
59 archive_entry_set_pathname(entry, "\xD0\xBF\xD1\x80\xD0\xB8");
60 archive_entry_set_filetype(entry, AE_IFREG);
61 archive_entry_set_size(entry, 0);
62 assertEqualInt(ARCHIVE_OK, archive_write_header(a, entry));
63 archive_entry_free(entry);
74 struct archive_entry *entry; local
98 entry = archive_entry_new2(a);
100 archive_entry_set_pathname(entry, "\xD
115 struct archive_entry *entry; local
156 struct archive_entry *entry; local
201 struct archive_entry *entry; local
241 struct archive_entry *entry; local
276 struct archive_entry *entry; local
316 struct archive_entry *entry; local
356 struct archive_entry *entry; local
[all...]
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/docsExamples/
H A Drw.d38 syscall::read:entry,
39 syscall::write:entry
/freebsd-11-stable/contrib/expat/tests/
H A Dmemcheck.c57 AllocationEntry *entry = malloc(sizeof(AllocationEntry)); local
59 if (entry == NULL) {
63 entry->num_bytes = size;
64 entry->allocation = malloc(size);
65 if (entry->allocation == NULL) {
66 free(entry);
69 entry->next = NULL;
73 entry->prev = NULL;
74 alloc_head = alloc_tail = entry;
76 entry
86 AllocationEntry *entry; local
99 AllocationEntry *entry; local
127 AllocationEntry *entry; local
179 AllocationEntry *entry; local
[all...]
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/
H A Dprov.d2 probe entry();
/freebsd-11-stable/sys/contrib/ck/include/
H A Dck_hp_stack.h40 ck_hp_stack_push_mpmc(struct ck_stack *target, struct ck_stack_entry *entry) argument
43 ck_stack_push_upmc(target, entry);
48 ck_hp_stack_trypush_mpmc(struct ck_stack *target, struct ck_stack_entry *entry) argument
51 return ck_stack_trypush_upmc(target, entry);
57 struct ck_stack_entry *entry, *update; local
60 entry = ck_pr_load_ptr(&target->head);
61 if (entry == NULL)
64 ck_hp_set_fence(record, 0, entry);
65 } while (entry != ck_pr_load_ptr(&target->head));
67 while (ck_pr_cas_ptr_value(&target->head, entry, entr
89 struct ck_stack_entry *entry; local
[all...]
/freebsd-11-stable/contrib/mdocml/
H A Dtest-dirent-namlen.c7 struct dirent entry; local
9 return sizeof(entry.d_namlen) == 0;
/freebsd-11-stable/sys/dev/drm/
H A Ddrm_scatter.c39 struct drm_sg_mem *entry; local
48 entry = malloc(sizeof(*entry), DRM_MEM_DRIVER, M_WAITOK | M_ZERO);
51 entry->pages = atop(size);
52 entry->busaddr = malloc(entry->pages * sizeof(*entry->busaddr),
55 entry->vaddr = kmem_alloc_attr(kernel_arena, size, M_WAITOK | M_ZERO,
57 if (entry->vaddr == 0) {
58 drm_sg_cleanup(entry);
96 drm_sg_cleanup(struct drm_sg_mem *entry) argument
114 struct drm_sg_mem *entry; local
[all...]
H A Ddrm_linux_list.h65 list_add_tail(struct list_head *entry, struct list_head *head) { argument
66 (entry)->prev = (head)->prev;
67 (entry)->next = head;
68 (head)->prev->next = entry;
69 (head)->prev = entry;
73 list_del(struct list_head *entry) { argument
74 (entry)->next->prev = (entry)->prev;
75 (entry)->prev->next = (entry)
79 list_del_init(struct list_head *entry) argument
[all...]
/freebsd-11-stable/contrib/libarchive/libarchive/
H A Darchive_entry_sparse.c40 archive_entry_sparse_clear(struct archive_entry *entry) argument
44 while (entry->sparse_head != NULL) {
45 sp = entry->sparse_head->next;
46 free(entry->sparse_head);
47 entry->sparse_head = sp;
49 entry->sparse_tail = NULL;
53 archive_entry_sparse_add_entry(struct archive_entry *entry, argument
62 offset + length > archive_entry_size(entry))
65 if ((sp = entry->sparse_tail) != NULL) {
88 if (entry
103 archive_entry_sparse_count(struct archive_entry *entry) argument
129 archive_entry_sparse_reset(struct archive_entry * entry) argument
137 archive_entry_sparse_next(struct archive_entry * entry, la_int64_t *offset, la_int64_t *length) argument
[all...]
H A Darchive_entry_stat.c40 archive_entry_stat(struct archive_entry *entry) argument
43 if (entry->stat == NULL) {
44 entry->stat = calloc(1, sizeof(*st));
45 if (entry->stat == NULL)
47 entry->stat_valid = 0;
58 if (entry->stat_valid)
59 return (entry->stat);
61 st = entry->stat;
66 st->st_atime = archive_entry_atime(entry);
68 st->st_birthtime = archive_entry_birthtime(entry);
[all...]
H A Darchive_entry.c155 archive_entry_clear(struct archive_entry *entry) argument
157 if (entry == NULL)
159 archive_mstring_clean(&entry->ae_fflags_text);
160 archive_mstring_clean(&entry->ae_gname);
161 archive_mstring_clean(&entry->ae_hardlink);
162 archive_mstring_clean(&entry->ae_pathname);
163 archive_mstring_clean(&entry->ae_sourcepath);
164 archive_mstring_clean(&entry->ae_symlink);
165 archive_mstring_clean(&entry->ae_uname);
166 archive_entry_copy_mac_metadata(entry, NUL
177 archive_entry_clone(struct archive_entry *entry) argument
252 archive_entry_free(struct archive_entry *entry) argument
267 struct archive_entry *entry; local
282 archive_entry_atime(struct archive_entry *entry) argument
288 archive_entry_atime_nsec(struct archive_entry *entry) argument
294 archive_entry_atime_is_set(struct archive_entry *entry) argument
300 archive_entry_birthtime(struct archive_entry *entry) argument
306 archive_entry_birthtime_nsec(struct archive_entry *entry) argument
312 archive_entry_birthtime_is_set(struct archive_entry *entry) argument
318 archive_entry_ctime(struct archive_entry *entry) argument
324 archive_entry_ctime_is_set(struct archive_entry *entry) argument
330 archive_entry_ctime_nsec(struct archive_entry *entry) argument
336 archive_entry_dev(struct archive_entry *entry) argument
346 archive_entry_dev_is_set(struct archive_entry *entry) argument
352 archive_entry_devmajor(struct archive_entry *entry) argument
361 archive_entry_devminor(struct archive_entry *entry) argument
370 archive_entry_filetype(struct archive_entry *entry) argument
376 archive_entry_fflags(struct archive_entry *entry, unsigned long *set, unsigned long *clear) argument
393 archive_entry_fflags_text(struct archive_entry *entry) argument
423 archive_entry_gid(struct archive_entry *entry) argument
429 archive_entry_gname(struct archive_entry *entry) argument
440 archive_entry_gname_utf8(struct archive_entry *entry) argument
452 archive_entry_gname_w(struct archive_entry *entry) argument
463 _archive_entry_gname_l(struct archive_entry *entry, const char **p, size_t *len, struct archive_string_conv *sc) argument
470 archive_entry_hardlink(struct archive_entry *entry) argument
484 archive_entry_hardlink_utf8(struct archive_entry *entry) argument
498 archive_entry_hardlink_w(struct archive_entry *entry) argument
512 _archive_entry_hardlink_l(struct archive_entry *entry, const char **p, size_t *len, struct archive_string_conv *sc) argument
524 archive_entry_ino(struct archive_entry *entry) argument
530 archive_entry_ino_is_set(struct archive_entry *entry) argument
536 archive_entry_ino64(struct archive_entry *entry) argument
542 archive_entry_mode(struct archive_entry *entry) argument
548 archive_entry_mtime(struct archive_entry *entry) argument
554 archive_entry_mtime_nsec(struct archive_entry *entry) argument
560 archive_entry_mtime_is_set(struct archive_entry *entry) argument
566 archive_entry_nlink(struct archive_entry *entry) argument
572 archive_entry_pathname(struct archive_entry *entry) argument
584 archive_entry_pathname_utf8(struct archive_entry *entry) argument
596 archive_entry_pathname_w(struct archive_entry *entry) argument
608 _archive_entry_pathname_l(struct archive_entry *entry, const char **p, size_t *len, struct archive_string_conv *sc) argument
615 archive_entry_perm(struct archive_entry *entry) argument
621 archive_entry_rdev(struct archive_entry *entry) argument
631 archive_entry_rdevmajor(struct archive_entry *entry) argument
640 archive_entry_rdevminor(struct archive_entry *entry) argument
649 archive_entry_size(struct archive_entry *entry) argument
655 archive_entry_size_is_set(struct archive_entry *entry) argument
661 archive_entry_sourcepath(struct archive_entry *entry) argument
673 archive_entry_sourcepath_w(struct archive_entry *entry) argument
683 archive_entry_symlink(struct archive_entry *entry) argument
697 archive_entry_symlink_type(struct archive_entry *entry) argument
703 archive_entry_symlink_utf8(struct archive_entry *entry) argument
717 archive_entry_symlink_w(struct archive_entry *entry) argument
731 _archive_entry_symlink_l(struct archive_entry *entry, const char **p, size_t *len, struct archive_string_conv *sc) argument
743 archive_entry_uid(struct archive_entry *entry) argument
749 archive_entry_uname(struct archive_entry *entry) argument
760 archive_entry_uname_utf8(struct archive_entry *entry) argument
771 archive_entry_uname_w(struct archive_entry *entry) argument
782 _archive_entry_uname_l(struct archive_entry *entry, const char **p, size_t *len, struct archive_string_conv *sc) argument
789 archive_entry_is_data_encrypted(struct archive_entry *entry) argument
795 archive_entry_is_metadata_encrypted(struct archive_entry *entry) argument
801 archive_entry_is_encrypted(struct archive_entry *entry) argument
811 archive_entry_set_filetype(struct archive_entry *entry, unsigned int type) argument
819 archive_entry_set_fflags(struct archive_entry *entry, unsigned long set, unsigned long clear) argument
828 archive_entry_copy_fflags_text(struct archive_entry *entry, const char *flags) argument
837 archive_entry_copy_fflags_text_w(struct archive_entry *entry, const wchar_t *flags) argument
846 archive_entry_set_gid(struct archive_entry *entry, la_int64_t g) argument
853 archive_entry_set_gname(struct archive_entry *entry, const char *name) argument
859 archive_entry_set_gname_utf8(struct archive_entry *entry, const char *name) argument
865 archive_entry_copy_gname(struct archive_entry *entry, const char *name) argument
871 archive_entry_copy_gname_w(struct archive_entry *entry, const wchar_t *name) argument
877 archive_entry_update_gname_utf8(struct archive_entry *entry, const char *name) argument
888 _archive_entry_copy_gname_l(struct archive_entry *entry, const char *name, size_t len, struct archive_string_conv *sc) argument
895 archive_entry_set_ino(struct archive_entry *entry, la_int64_t ino) argument
903 archive_entry_set_ino64(struct archive_entry *entry, la_int64_t ino) argument
911 archive_entry_set_hardlink(struct archive_entry *entry, const char *target) argument
921 archive_entry_set_hardlink_utf8(struct archive_entry *entry, const char *target) argument
931 archive_entry_copy_hardlink(struct archive_entry *entry, const char *target) argument
941 archive_entry_copy_hardlink_w(struct archive_entry *entry, const wchar_t *target) argument
951 archive_entry_update_hardlink_utf8(struct archive_entry *entry, const char *target) argument
966 _archive_entry_copy_hardlink_l(struct archive_entry *entry, const char *target, size_t len, struct archive_string_conv *sc) argument
981 archive_entry_set_atime(struct archive_entry *entry, time_t t, long ns) argument
991 archive_entry_unset_atime(struct archive_entry *entry) argument
998 archive_entry_set_birthtime(struct archive_entry *entry, time_t t, long ns) argument
1008 archive_entry_unset_birthtime(struct archive_entry *entry) argument
1015 archive_entry_set_ctime(struct archive_entry *entry, time_t t, long ns) argument
1025 archive_entry_unset_ctime(struct archive_entry *entry) argument
1032 archive_entry_set_dev(struct archive_entry *entry, dev_t d) argument
1041 archive_entry_set_devmajor(struct archive_entry *entry, dev_t m) argument
1050 archive_entry_set_devminor(struct archive_entry *entry, dev_t m) argument
1060 archive_entry_set_link(struct archive_entry *entry, const char *target) argument
1069 archive_entry_set_link_utf8(struct archive_entry *entry, const char *target) argument
1079 archive_entry_copy_link(struct archive_entry *entry, const char *target) argument
1089 archive_entry_copy_link_w(struct archive_entry *entry, const wchar_t *target) argument
1098 archive_entry_update_link_utf8(struct archive_entry *entry, const char *target) argument
1115 _archive_entry_copy_link_l(struct archive_entry *entry, const char *target, size_t len, struct archive_string_conv *sc) argument
1130 archive_entry_set_mode(struct archive_entry *entry, mode_t m) argument
1137 archive_entry_set_mtime(struct archive_entry *entry, time_t t, long ns) argument
1147 archive_entry_unset_mtime(struct archive_entry *entry) argument
1154 archive_entry_set_nlink(struct archive_entry *entry, unsigned int nlink) argument
1161 archive_entry_set_pathname(struct archive_entry *entry, const char *name) argument
1167 archive_entry_set_pathname_utf8(struct archive_entry *entry, const char *name) argument
1173 archive_entry_copy_pathname(struct archive_entry *entry, const char *name) argument
1179 archive_entry_copy_pathname_w(struct archive_entry *entry, const wchar_t *name) argument
1185 archive_entry_update_pathname_utf8(struct archive_entry *entry, const char *name) argument
1196 _archive_entry_copy_pathname_l(struct archive_entry *entry, const char *name, size_t len, struct archive_string_conv *sc) argument
1204 archive_entry_set_perm(struct archive_entry *entry, mode_t p) argument
1212 archive_entry_set_rdev(struct archive_entry *entry, dev_t m) argument
1220 archive_entry_set_rdevmajor(struct archive_entry *entry, dev_t m) argument
1228 archive_entry_set_rdevminor(struct archive_entry *entry, dev_t m) argument
1236 archive_entry_set_size(struct archive_entry *entry, la_int64_t s) argument
1244 archive_entry_unset_size(struct archive_entry *entry) argument
1251 archive_entry_copy_sourcepath(struct archive_entry *entry, const char *path) argument
1257 archive_entry_copy_sourcepath_w(struct archive_entry *entry, const wchar_t *path) argument
1263 archive_entry_set_symlink(struct archive_entry *entry, const char *linkname) argument
1273 archive_entry_set_symlink_type(struct archive_entry *entry, int type) argument
1279 archive_entry_set_symlink_utf8(struct archive_entry *entry, const char *linkname) argument
1289 archive_entry_copy_symlink(struct archive_entry *entry, const char *linkname) argument
1299 archive_entry_copy_symlink_w(struct archive_entry *entry, const wchar_t *linkname) argument
1309 archive_entry_update_symlink_utf8(struct archive_entry *entry, const char *linkname) argument
1324 _archive_entry_copy_symlink_l(struct archive_entry *entry, const char *linkname, size_t len, struct archive_string_conv *sc) argument
1339 archive_entry_set_uid(struct archive_entry *entry, la_int64_t u) argument
1346 archive_entry_set_uname(struct archive_entry *entry, const char *name) argument
1352 archive_entry_set_uname_utf8(struct archive_entry *entry, const char *name) argument
1358 archive_entry_copy_uname(struct archive_entry *entry, const char *name) argument
1364 archive_entry_copy_uname_w(struct archive_entry *entry, const wchar_t *name) argument
1370 archive_entry_update_uname_utf8(struct archive_entry *entry, const char *name) argument
1381 archive_entry_set_is_data_encrypted(struct archive_entry *entry, char is_encrypted) argument
1391 archive_entry_set_is_metadata_encrypted(struct archive_entry *entry, char is_encrypted) argument
1401 _archive_entry_copy_uname_l(struct archive_entry *entry, const char *name, size_t len, struct archive_string_conv *sc) argument
1409 archive_entry_mac_metadata(struct archive_entry *entry, size_t *s) argument
1416 archive_entry_copy_mac_metadata(struct archive_entry *entry, const void *p, size_t s) argument
1434 archive_entry_digest(struct archive_entry *entry, int type) argument
1455 archive_entry_set_digest(struct archive_entry *entry, int type, const unsigned char *digest) argument
1498 archive_entry_acl(struct archive_entry *entry) argument
1504 archive_entry_acl_clear(struct archive_entry *entry) argument
1513 archive_entry_acl_add_entry(struct archive_entry *entry, int type, int permset, int tag, int id, const char *name) argument
1523 archive_entry_acl_add_entry_w(struct archive_entry *entry, int type, int permset, int tag, int id, const wchar_t *name) argument
1534 archive_entry_acl_types(struct archive_entry *entry) argument
1543 archive_entry_acl_count(struct archive_entry *entry, int want_type) argument
1554 archive_entry_acl_reset(struct archive_entry *entry, int want_type) argument
1564 archive_entry_acl_next(struct archive_entry *entry, int want_type, int *type, int *permset, int *tag, int *id, const char **name) argument
1580 archive_entry_acl_to_text_w(struct archive_entry *entry, la_ssize_t *len, int flags) argument
1588 archive_entry_acl_to_text(struct archive_entry *entry, la_ssize_t *len, int flags) argument
1595 _archive_entry_acl_to_text_l(struct archive_entry *entry, ssize_t *len, int flags, struct archive_string_conv *sc) argument
1605 archive_entry_acl_from_text_w(struct archive_entry *entry, const wchar_t *wtext, int type) argument
1612 archive_entry_acl_from_text(struct archive_entry *entry, const char *text, int type) argument
1619 _archive_entry_acl_from_text_l(struct archive_entry *entry, const char *text, int type, struct archive_string_conv *sc) argument
1647 archive_entry_acl_text_w(struct archive_entry *entry, int flags) argument
1659 archive_entry_acl_text(struct archive_entry *entry, int flags) argument
1672 _archive_entry_acl_text_l(struct archive_entry *entry, int flags, const char **acl_text, size_t *len, struct archive_string_conv *sc) argument
2123 struct archive_entry *entry = archive_entry_new(); local
[all...]
H A Darchive_entry_copy_stat.c37 archive_entry_copy_stat(struct archive_entry *entry, const struct stat *st) argument
40 archive_entry_set_atime(entry, st->st_atime, st->st_atimespec.tv_nsec);
41 archive_entry_set_ctime(entry, st->st_ctime, st->st_ctimespec.tv_nsec);
42 archive_entry_set_mtime(entry, st->st_mtime, st->st_mtimespec.tv_nsec);
44 archive_entry_set_atime(entry, st->st_atime, st->st_atim.tv_nsec);
45 archive_entry_set_ctime(entry, st->st_ctime, st->st_ctim.tv_nsec);
46 archive_entry_set_mtime(entry, st->st_mtime, st->st_mtim.tv_nsec);
48 archive_entry_set_atime(entry, st->st_atime, st->st_atime_nsec);
49 archive_entry_set_ctime(entry, st->st_ctime, st->st_ctime_nsec);
50 archive_entry_set_mtime(entry, s
[all...]
/freebsd-11-stable/contrib/netbsd-tests/include/sys/
H A Dt_pslist.c52 struct pslist_entry entry; member in struct:element
54 { .i = 0, .entry = PSLIST_ENTRY_INITIALIZER },
71 PSLIST_ENTRY_DESTROY(&elements[0], entry);
74 PSLIST_ENTRY_INIT(&elements[i], entry);
76 PSLIST_WRITER_INSERT_HEAD(&h, &elements[4], entry);
77 PSLIST_WRITER_INSERT_BEFORE(&elements[4], &elements[2], entry);
78 PSLIST_WRITER_INSERT_BEFORE(&elements[4], &elements[3], entry);
79 PSLIST_WRITER_INSERT_BEFORE(&elements[2], &elements[1], entry);
80 PSLIST_WRITER_INSERT_HEAD(&h, &elements[0], entry);
81 PSLIST_WRITER_INSERT_AFTER(&elements[4], &elements[5], entry);
[all...]
/freebsd-11-stable/sys/dev/drm2/
H A Ddrm_scatter.c44 void drm_sg_cleanup(struct drm_sg_mem * entry) argument
46 if (entry == NULL)
49 if (entry->vaddr != 0)
50 kmem_free(kernel_arena, entry->vaddr, IDX_TO_OFF(entry->pages));
52 free(entry->busaddr, DRM_MEM_SGLISTS);
53 free(entry, DRM_MEM_DRIVER);
58 struct drm_sg_mem *entry; local
70 entry = malloc(sizeof(*entry), DRM_MEM_DRIVE
120 struct drm_sg_mem *entry; local
[all...]
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/i386/pid/
H A Dtst.badinstr.d33 pid$1:a.out:badfunc:entry
/freebsd-11-stable/sys/dev/drm2/ttm/
H A Dttm_execbuf_util.c38 struct ttm_validate_buffer *entry; local
40 list_for_each_entry(entry, list, head) {
41 struct ttm_buffer_object *bo = entry->bo;
42 if (!entry->reserved)
45 if (entry->removed) {
47 entry->removed = false;
50 entry->reserved = false;
58 struct ttm_validate_buffer *entry; local
60 list_for_each_entry(entry, list, head) {
61 struct ttm_buffer_object *bo = entry
74 struct ttm_validate_buffer *entry; local
88 struct ttm_validate_buffer *entry; local
116 struct ttm_validate_buffer *entry; local
207 struct ttm_validate_buffer *entry; local
[all...]
/freebsd-11-stable/contrib/wpa/src/ap/
H A Dpmksa_cache_auth.c31 void (*free_cb)(struct rsn_pmksa_cache_entry *entry, void *ctx);
39 static void _pmksa_cache_free_entry(struct rsn_pmksa_cache_entry *entry) argument
41 os_free(entry->vlan_desc);
42 os_free(entry->identity);
43 wpabuf_free(entry->cui);
45 radius_free_class(&entry->radius_class);
47 bin_clear_free(entry, sizeof(*entry));
52 struct rsn_pmksa_cache_entry *entry)
58 pmksa->free_cb(entry, pmks
51 pmksa_cache_free_entry(struct rsn_pmksa_cache *pmksa, struct rsn_pmksa_cache_entry *entry) argument
141 pmksa_cache_from_eapol_data(struct rsn_pmksa_cache_entry *entry, struct eapol_state_machine *eapol) argument
180 pmksa_cache_to_eapol_data(struct hostapd_data *hapd, struct rsn_pmksa_cache_entry *entry, struct eapol_state_machine *eapol) argument
222 pmksa_cache_link_entry(struct rsn_pmksa_cache *pmksa, struct rsn_pmksa_cache_entry *entry) argument
285 struct rsn_pmksa_cache_entry *entry; local
320 struct rsn_pmksa_cache_entry *entry; local
365 pmksa_cache_auth_add_entry(struct rsn_pmksa_cache *pmksa, struct rsn_pmksa_cache_entry *entry) argument
398 struct rsn_pmksa_cache_entry *entry; local
445 struct rsn_pmksa_cache_entry *entry, *prev; local
477 struct rsn_pmksa_cache_entry *entry; local
513 struct rsn_pmksa_cache_entry *entry; local
535 pmksa_cache_auth_init(void (*free_cb)(struct rsn_pmksa_cache_entry *entry, void *ctx), void *ctx) argument
550 das_attr_match(struct rsn_pmksa_cache_entry *entry, struct radius_das_attrs *attr) argument
599 struct rsn_pmksa_cache_entry *entry, *prev; local
634 struct rsn_pmksa_cache_entry *entry; local
685 struct rsn_pmksa_cache_entry *entry; local
[all...]

Completed in 517 milliseconds

1234567891011>>