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

1234567891011>>

/freebsd-10.3-release/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-10.3-release/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
342 struct archive_entry *entry; local
389 struct archive_entry *entry; local
437 struct archive_entry *entry; local
485 struct archive_entry *entry; local
535 struct archive_entry *entry; local
[all...]
H A Dtest_gnutar_filename_encoding.c34 struct archive_entry *entry; local
58 entry = archive_entry_new2(a);
60 archive_entry_set_pathname(entry, "\xD0\xBF\xD1\x80\xD0\xB8");
61 archive_entry_set_filetype(entry, AE_IFREG);
62 archive_entry_set_size(entry, 0);
63 assertEqualInt(ARCHIVE_OK, archive_write_header(a, entry));
64 archive_entry_free(entry);
76 struct archive_entry *entry; local
100 entry = archive_entry_new2(a);
102 archive_entry_set_pathname(entry, "\xD
118 struct archive_entry *entry; local
160 struct archive_entry *entry; local
206 struct archive_entry *entry; local
247 struct archive_entry *entry; local
283 struct archive_entry *entry; local
324 struct archive_entry *entry; local
365 struct archive_entry *entry; local
[all...]
H A Dtest_ustar_filename_encoding.c34 struct archive_entry *entry; local
58 entry = archive_entry_new2(a);
60 archive_entry_set_pathname(entry, "\xD0\xBF\xD1\x80\xD0\xB8");
61 archive_entry_set_filetype(entry, AE_IFREG);
62 archive_entry_set_size(entry, 0);
63 assertEqualInt(ARCHIVE_OK, archive_write_header(a, entry));
64 archive_entry_free(entry);
76 struct archive_entry *entry; local
100 entry = archive_entry_new2(a);
102 archive_entry_set_pathname(entry, "\xD
118 struct archive_entry *entry; local
160 struct archive_entry *entry; local
206 struct archive_entry *entry; local
247 struct archive_entry *entry; local
283 struct archive_entry *entry; local
324 struct archive_entry *entry; local
365 struct archive_entry *entry; local
[all...]
H A Dtest_write_format_tar_ustar.c53 struct archive_entry *entry; local
92 assert((entry = archive_entry_new()) != NULL);
93 archive_entry_set_mtime(entry, 1, 10);
94 archive_entry_set_pathname(entry, "file");
95 archive_entry_set_mode(entry, S_IFREG | 0664);
96 archive_entry_set_size(entry, 10);
97 archive_entry_set_uid(entry, 80);
98 archive_entry_set_gid(entry, 90);
99 archive_entry_set_dev(entry, 12);
100 archive_entry_set_ino(entry, 8
[all...]
/freebsd-10.3-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/docsExamples/
H A Drw.d38 syscall::read:entry,
39 syscall::write:entry
/freebsd-10.3-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/
H A Dprov.d2 probe entry();
/freebsd-10.3-release/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 = OFF_TO_IDX(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-10.3-release/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, int64_t *offset, 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.c154 archive_entry_clear(struct archive_entry *entry) argument
156 if (entry == NULL)
158 archive_mstring_clean(&entry->ae_fflags_text);
159 archive_mstring_clean(&entry->ae_gname);
160 archive_mstring_clean(&entry->ae_hardlink);
161 archive_mstring_clean(&entry->ae_pathname);
162 archive_mstring_clean(&entry->ae_sourcepath);
163 archive_mstring_clean(&entry->ae_symlink);
164 archive_mstring_clean(&entry->ae_uname);
165 archive_entry_copy_mac_metadata(entry, NUL
175 archive_entry_clone(struct archive_entry *entry) argument
231 archive_entry_free(struct archive_entry *entry) argument
246 struct archive_entry *entry; local
261 archive_entry_atime(struct archive_entry *entry) argument
267 archive_entry_atime_nsec(struct archive_entry *entry) argument
273 archive_entry_atime_is_set(struct archive_entry *entry) argument
279 archive_entry_birthtime(struct archive_entry *entry) argument
285 archive_entry_birthtime_nsec(struct archive_entry *entry) argument
291 archive_entry_birthtime_is_set(struct archive_entry *entry) argument
297 archive_entry_ctime(struct archive_entry *entry) argument
303 archive_entry_ctime_is_set(struct archive_entry *entry) argument
309 archive_entry_ctime_nsec(struct archive_entry *entry) argument
315 archive_entry_dev(struct archive_entry *entry) argument
325 archive_entry_dev_is_set(struct archive_entry *entry) argument
331 archive_entry_devmajor(struct archive_entry *entry) argument
340 archive_entry_devminor(struct archive_entry *entry) argument
349 archive_entry_filetype(struct archive_entry *entry) argument
355 archive_entry_fflags(struct archive_entry *entry, unsigned long *set, unsigned long *clear) argument
372 archive_entry_fflags_text(struct archive_entry *entry) argument
402 archive_entry_gid(struct archive_entry *entry) argument
408 archive_entry_gname(struct archive_entry *entry) argument
419 archive_entry_gname_w(struct archive_entry *entry) argument
430 _archive_entry_gname_l(struct archive_entry *entry, const char **p, size_t *len, struct archive_string_conv *sc) argument
437 archive_entry_hardlink(struct archive_entry *entry) argument
451 archive_entry_hardlink_w(struct archive_entry *entry) argument
465 _archive_entry_hardlink_l(struct archive_entry *entry, const char **p, size_t *len, struct archive_string_conv *sc) argument
477 archive_entry_ino(struct archive_entry *entry) argument
483 archive_entry_ino_is_set(struct archive_entry *entry) argument
489 archive_entry_ino64(struct archive_entry *entry) argument
495 archive_entry_mode(struct archive_entry *entry) argument
501 archive_entry_mtime(struct archive_entry *entry) argument
507 archive_entry_mtime_nsec(struct archive_entry *entry) argument
513 archive_entry_mtime_is_set(struct archive_entry *entry) argument
519 archive_entry_nlink(struct archive_entry *entry) argument
525 archive_entry_pathname(struct archive_entry *entry) argument
537 archive_entry_pathname_w(struct archive_entry *entry) argument
549 _archive_entry_pathname_l(struct archive_entry *entry, const char **p, size_t *len, struct archive_string_conv *sc) argument
556 archive_entry_perm(struct archive_entry *entry) argument
562 archive_entry_rdev(struct archive_entry *entry) argument
572 archive_entry_rdevmajor(struct archive_entry *entry) argument
581 archive_entry_rdevminor(struct archive_entry *entry) argument
590 archive_entry_size(struct archive_entry *entry) argument
596 archive_entry_size_is_set(struct archive_entry *entry) argument
602 archive_entry_sourcepath(struct archive_entry *entry) argument
614 archive_entry_sourcepath_w(struct archive_entry *entry) argument
624 archive_entry_symlink(struct archive_entry *entry) argument
638 archive_entry_symlink_w(struct archive_entry *entry) argument
652 _archive_entry_symlink_l(struct archive_entry *entry, const char **p, size_t *len, struct archive_string_conv *sc) argument
664 archive_entry_uid(struct archive_entry *entry) argument
670 archive_entry_uname(struct archive_entry *entry) argument
681 archive_entry_uname_w(struct archive_entry *entry) argument
692 _archive_entry_uname_l(struct archive_entry *entry, const char **p, size_t *len, struct archive_string_conv *sc) argument
703 archive_entry_set_filetype(struct archive_entry *entry, unsigned int type) argument
711 archive_entry_set_fflags(struct archive_entry *entry, unsigned long set, unsigned long clear) argument
720 archive_entry_copy_fflags_text(struct archive_entry *entry, const char *flags) argument
729 archive_entry_copy_fflags_text_w(struct archive_entry *entry, const wchar_t *flags) argument
738 archive_entry_set_gid(struct archive_entry *entry, int64_t g) argument
745 archive_entry_set_gname(struct archive_entry *entry, const char *name) argument
751 archive_entry_copy_gname(struct archive_entry *entry, const char *name) argument
757 archive_entry_copy_gname_w(struct archive_entry *entry, const wchar_t *name) argument
763 archive_entry_update_gname_utf8(struct archive_entry *entry, const char *name) argument
774 _archive_entry_copy_gname_l(struct archive_entry *entry, const char *name, size_t len, struct archive_string_conv *sc) argument
781 archive_entry_set_ino(struct archive_entry *entry, int64_t ino) argument
789 archive_entry_set_ino64(struct archive_entry *entry, int64_t ino) argument
797 archive_entry_set_hardlink(struct archive_entry *entry, const char *target) argument
807 archive_entry_copy_hardlink(struct archive_entry *entry, const char *target) argument
817 archive_entry_copy_hardlink_w(struct archive_entry *entry, const wchar_t *target) argument
827 archive_entry_update_hardlink_utf8(struct archive_entry *entry, const char *target) argument
842 _archive_entry_copy_hardlink_l(struct archive_entry *entry, const char *target, size_t len, struct archive_string_conv *sc) argument
857 archive_entry_set_atime(struct archive_entry *entry, time_t t, long ns) argument
867 archive_entry_unset_atime(struct archive_entry *entry) argument
874 archive_entry_set_birthtime(struct archive_entry *entry, time_t t, long ns) argument
884 archive_entry_unset_birthtime(struct archive_entry *entry) argument
891 archive_entry_set_ctime(struct archive_entry *entry, time_t t, long ns) argument
901 archive_entry_unset_ctime(struct archive_entry *entry) argument
908 archive_entry_set_dev(struct archive_entry *entry, dev_t d) argument
917 archive_entry_set_devmajor(struct archive_entry *entry, dev_t m) argument
926 archive_entry_set_devminor(struct archive_entry *entry, dev_t m) argument
936 archive_entry_set_link(struct archive_entry *entry, const char *target) argument
946 archive_entry_copy_link(struct archive_entry *entry, const char *target) argument
956 archive_entry_copy_link_w(struct archive_entry *entry, const wchar_t *target) argument
965 archive_entry_update_link_utf8(struct archive_entry *entry, const char *target) argument
982 _archive_entry_copy_link_l(struct archive_entry *entry, const char *target, size_t len, struct archive_string_conv *sc) argument
997 archive_entry_set_mode(struct archive_entry *entry, mode_t m) argument
1004 archive_entry_set_mtime(struct archive_entry *entry, time_t t, long ns) argument
1014 archive_entry_unset_mtime(struct archive_entry *entry) argument
1021 archive_entry_set_nlink(struct archive_entry *entry, unsigned int nlink) argument
1028 archive_entry_set_pathname(struct archive_entry *entry, const char *name) argument
1034 archive_entry_copy_pathname(struct archive_entry *entry, const char *name) argument
1040 archive_entry_copy_pathname_w(struct archive_entry *entry, const wchar_t *name) argument
1046 archive_entry_update_pathname_utf8(struct archive_entry *entry, const char *name) argument
1057 _archive_entry_copy_pathname_l(struct archive_entry *entry, const char *name, size_t len, struct archive_string_conv *sc) argument
1065 archive_entry_set_perm(struct archive_entry *entry, mode_t p) argument
1073 archive_entry_set_rdev(struct archive_entry *entry, dev_t m) argument
1081 archive_entry_set_rdevmajor(struct archive_entry *entry, dev_t m) argument
1089 archive_entry_set_rdevminor(struct archive_entry *entry, dev_t m) argument
1097 archive_entry_set_size(struct archive_entry *entry, int64_t s) argument
1105 archive_entry_unset_size(struct archive_entry *entry) argument
1112 archive_entry_copy_sourcepath(struct archive_entry *entry, const char *path) argument
1118 archive_entry_copy_sourcepath_w(struct archive_entry *entry, const wchar_t *path) argument
1124 archive_entry_set_symlink(struct archive_entry *entry, const char *linkname) argument
1134 archive_entry_copy_symlink(struct archive_entry *entry, const char *linkname) argument
1144 archive_entry_copy_symlink_w(struct archive_entry *entry, const wchar_t *linkname) argument
1154 archive_entry_update_symlink_utf8(struct archive_entry *entry, const char *linkname) argument
1169 _archive_entry_copy_symlink_l(struct archive_entry *entry, const char *linkname, size_t len, struct archive_string_conv *sc) argument
1184 archive_entry_set_uid(struct archive_entry *entry, int64_t u) argument
1191 archive_entry_set_uname(struct archive_entry *entry, const char *name) argument
1197 archive_entry_copy_uname(struct archive_entry *entry, const char *name) argument
1203 archive_entry_copy_uname_w(struct archive_entry *entry, const wchar_t *name) argument
1209 archive_entry_update_uname_utf8(struct archive_entry *entry, const char *name) argument
1220 _archive_entry_copy_uname_l(struct archive_entry *entry, const char *name, size_t len, struct archive_string_conv *sc) argument
1228 archive_entry_mac_metadata(struct archive_entry *entry, size_t *s) argument
1235 archive_entry_copy_mac_metadata(struct archive_entry *entry, const void *p, size_t s) argument
1261 archive_entry_acl(struct archive_entry *entry) argument
1267 archive_entry_acl_clear(struct archive_entry *entry) argument
1276 archive_entry_acl_add_entry(struct archive_entry *entry, int type, int permset, int tag, int id, const char *name) argument
1286 archive_entry_acl_add_entry_w(struct archive_entry *entry, int type, int permset, int tag, int id, const wchar_t *name) argument
1297 archive_entry_acl_count(struct archive_entry *entry, int want_type) argument
1308 archive_entry_acl_reset(struct archive_entry *entry, int want_type) argument
1318 archive_entry_acl_next(struct archive_entry *entry, int want_type, int *type, int *permset, int *tag, int *id, const char **name) argument
1334 archive_entry_acl_text_w(struct archive_entry *entry, int flags) argument
1344 archive_entry_acl_text(struct archive_entry *entry, int flags) argument
1354 _archive_entry_acl_text_l(struct archive_entry *entry, int flags, const char **acl_text, size_t *len, struct archive_string_conv *sc) argument
1700 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_n);
49 archive_entry_set_ctime(entry, st->st_ctime, st->st_ctime_n);
50 archive_entry_set_mtime(entry, s
[all...]
H A Darchive_entry_xattr.c73 archive_entry_xattr_clear(struct archive_entry *entry) argument
77 while (entry->xattr_head != NULL) {
78 xp = entry->xattr_head->next;
79 free(entry->xattr_head->name);
80 free(entry->xattr_head->value);
81 free(entry->xattr_head);
82 entry->xattr_head = xp;
85 entry->xattr_head = NULL;
89 archive_entry_xattr_add_entry(struct archive_entry *entry, argument
94 for (xp = entry
117 archive_entry_xattr_count(struct archive_entry *entry) argument
129 archive_entry_xattr_reset(struct archive_entry * entry) argument
137 archive_entry_xattr_next(struct archive_entry * entry, const char **name, const void **value, size_t *size) argument
[all...]
/freebsd-10.3-release/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-10.3-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/i386/pid/
H A Dtst.badinstr.d33 pid$1:a.out:badfunc:entry
/freebsd-10.3-release/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-10.3-release/contrib/wpa/src/ap/
H A Dpmksa_cache_auth.c30 void (*free_cb)(struct rsn_pmksa_cache_entry *entry, void *ctx);
38 static void _pmksa_cache_free_entry(struct rsn_pmksa_cache_entry *entry) argument
40 if (entry == NULL)
42 os_free(entry->identity);
43 wpabuf_free(entry->cui);
45 radius_free_class(&entry->radius_class);
47 os_free(entry);
52 struct rsn_pmksa_cache_entry *entry)
57 pmksa->free_cb(entry, pmksa->ctx);
58 pos = pmksa->pmkid[PMKID_HASH(entry
51 pmksa_cache_free_entry(struct rsn_pmksa_cache *pmksa, struct rsn_pmksa_cache_entry *entry) argument
123 pmksa_cache_from_eapol_data(struct rsn_pmksa_cache_entry *entry, struct eapol_state_machine *eapol) argument
150 pmksa_cache_to_eapol_data(struct rsn_pmksa_cache_entry *entry, struct eapol_state_machine *eapol) argument
187 pmksa_cache_link_entry(struct rsn_pmksa_cache *pmksa, struct rsn_pmksa_cache_entry *entry) argument
243 struct rsn_pmksa_cache_entry *entry, *pos; local
291 struct rsn_pmksa_cache_entry *entry; local
332 struct rsn_pmksa_cache_entry *entry, *prev; local
362 struct rsn_pmksa_cache_entry *entry; local
394 struct rsn_pmksa_cache_entry *entry; local
418 pmksa_cache_auth_init(void (*free_cb)(struct rsn_pmksa_cache_entry *entry, void *ctx), void *ctx) argument
[all...]
/freebsd-10.3-release/sys/boot/efi/libefi/
H A Dhandles.c33 struct entry { struct
41 struct entry *entry; variable in typeref:struct:entry
53 sz = nentries * sizeof(struct entry);
54 entry = (entry == NULL) ? malloc(sz) : realloc(entry, sz);
56 entry[idx].handle = handles[unit];
58 entry[idx].alias = aliases[unit];
60 entry[id
[all...]

Completed in 111 milliseconds

1234567891011>>