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

1234567891011>>

/freebsd-9.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-9.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_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
124 assert((entry = archive_entry_new()) != NULL);
126 archive_entry_copy_pathname(entry, filenam
195 struct archive_entry *entry; local
[all...]
H A Dtest_write_format_tar_ustar.c53 struct archive_entry *entry; local
89 assert((entry = archive_entry_new()) != NULL);
90 archive_entry_set_mtime(entry, 1, 10);
91 archive_entry_set_pathname(entry, "file");
92 archive_entry_set_mode(entry, S_IFREG | 0664);
93 archive_entry_set_size(entry, 10);
94 archive_entry_set_uid(entry, 80);
95 archive_entry_set_gid(entry, 90);
96 archive_entry_set_dev(entry, 12);
97 archive_entry_set_ino(entry, 8
[all...]
H A Dtest_write_format_cpio_newc.c54 struct archive_entry *entry; local
73 assert((entry = archive_entry_new()) != NULL);
74 archive_entry_set_mtime(entry, 1, 10);
75 archive_entry_set_pathname(entry, "file");
76 archive_entry_set_mode(entry, S_IFREG | 0664);
77 archive_entry_set_size(entry, 10);
78 archive_entry_set_uid(entry, 80);
79 archive_entry_set_gid(entry, 90);
80 archive_entry_set_dev(entry, 12);
81 archive_entry_set_ino(entry, 8
[all...]
/freebsd-9.3-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/docsExamples/
H A Drw.d38 syscall::read:entry,
39 syscall::write:entry
/freebsd-9.3-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/
H A Dprov.d2 probe entry();
/freebsd-9.3-release/contrib/libarchive/libarchive/
H A Darchive_entry_stat.c40 archive_entry_stat(struct archive_entry *entry) argument
43 if (entry->stat == NULL) {
44 entry->stat = malloc(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_copy_stat.c36 archive_entry_copy_stat(struct archive_entry *entry, const struct stat *st) argument
39 archive_entry_set_atime(entry, st->st_atime, st->st_atimespec.tv_nsec);
40 archive_entry_set_ctime(entry, st->st_ctime, st->st_ctimespec.tv_nsec);
41 archive_entry_set_mtime(entry, st->st_mtime, st->st_mtimespec.tv_nsec);
43 archive_entry_set_atime(entry, st->st_atime, st->st_atim.tv_nsec);
44 archive_entry_set_ctime(entry, st->st_ctime, st->st_ctim.tv_nsec);
45 archive_entry_set_mtime(entry, st->st_mtime, st->st_mtim.tv_nsec);
47 archive_entry_set_atime(entry, st->st_atime, st->st_atime_n);
48 archive_entry_set_ctime(entry, st->st_ctime, st->st_ctime_n);
49 archive_entry_set_mtime(entry, s
[all...]
H A Darchive_entry.c120 static int acl_special(struct archive_entry *entry,
122 static struct ae_acl *acl_new_entry(struct archive_entry *entry,
131 archive_entry_acl_add_entry_w_len(struct archive_entry *entry, int type,
373 archive_entry_clear(struct archive_entry *entry) argument
375 if (entry == NULL)
377 aes_clean(&entry->ae_fflags_text);
378 aes_clean(&entry->ae_gname);
379 aes_clean(&entry->ae_hardlink);
380 aes_clean(&entry->ae_pathname);
381 aes_clean(&entry
392 archive_entry_clone(struct archive_entry *entry) argument
438 archive_entry_free(struct archive_entry *entry) argument
447 struct archive_entry *entry; local
461 archive_entry_atime(struct archive_entry *entry) argument
467 archive_entry_atime_nsec(struct archive_entry *entry) argument
473 archive_entry_atime_is_set(struct archive_entry *entry) argument
479 archive_entry_birthtime(struct archive_entry *entry) argument
485 archive_entry_birthtime_nsec(struct archive_entry *entry) argument
491 archive_entry_birthtime_is_set(struct archive_entry *entry) argument
497 archive_entry_ctime(struct archive_entry *entry) argument
503 archive_entry_ctime_is_set(struct archive_entry *entry) argument
509 archive_entry_ctime_nsec(struct archive_entry *entry) argument
515 archive_entry_dev(struct archive_entry *entry) argument
525 archive_entry_devmajor(struct archive_entry *entry) argument
534 archive_entry_devminor(struct archive_entry *entry) argument
543 archive_entry_filetype(struct archive_entry *entry) argument
549 archive_entry_fflags(struct archive_entry *entry, unsigned long *set, unsigned long *clear) argument
566 archive_entry_fflags_text(struct archive_entry *entry) argument
589 archive_entry_gid(struct archive_entry *entry) argument
595 archive_entry_gname(struct archive_entry *entry) argument
601 archive_entry_gname_w(struct archive_entry *entry) argument
607 archive_entry_hardlink(struct archive_entry *entry) argument
615 archive_entry_hardlink_w(struct archive_entry *entry) argument
623 archive_entry_ino(struct archive_entry *entry) argument
629 archive_entry_ino64(struct archive_entry *entry) argument
635 archive_entry_mode(struct archive_entry *entry) argument
641 archive_entry_mtime(struct archive_entry *entry) argument
647 archive_entry_mtime_nsec(struct archive_entry *entry) argument
653 archive_entry_mtime_is_set(struct archive_entry *entry) argument
659 archive_entry_nlink(struct archive_entry *entry) argument
665 archive_entry_pathname(struct archive_entry *entry) argument
671 archive_entry_pathname_w(struct archive_entry *entry) argument
677 archive_entry_rdev(struct archive_entry *entry) argument
687 archive_entry_rdevmajor(struct archive_entry *entry) argument
696 archive_entry_rdevminor(struct archive_entry *entry) argument
705 archive_entry_size(struct archive_entry *entry) argument
711 archive_entry_size_is_set(struct archive_entry *entry) argument
717 archive_entry_sourcepath(struct archive_entry *entry) argument
723 archive_entry_symlink(struct archive_entry *entry) argument
731 archive_entry_symlink_w(struct archive_entry *entry) argument
739 archive_entry_uid(struct archive_entry *entry) argument
745 archive_entry_uname(struct archive_entry *entry) argument
751 archive_entry_uname_w(struct archive_entry *entry) argument
761 archive_entry_set_filetype(struct archive_entry *entry, unsigned int type) argument
769 archive_entry_set_fflags(struct archive_entry *entry, unsigned long set, unsigned long clear) argument
778 archive_entry_copy_fflags_text(struct archive_entry *entry, const char *flags) argument
787 archive_entry_copy_fflags_text_w(struct archive_entry *entry, const wchar_t *flags) argument
796 archive_entry_set_gid(struct archive_entry *entry, gid_t g) argument
803 archive_entry_set_gname(struct archive_entry *entry, const char *name) argument
809 archive_entry_copy_gname(struct archive_entry *entry, const char *name) argument
815 archive_entry_copy_gname_w(struct archive_entry *entry, const wchar_t *name) argument
821 archive_entry_update_gname_utf8(struct archive_entry *entry, const char *name) argument
827 archive_entry_set_ino(struct archive_entry *entry, unsigned long ino) argument
834 archive_entry_set_ino64(struct archive_entry *entry, int64_t ino) argument
841 archive_entry_set_hardlink(struct archive_entry *entry, const char *target) argument
851 archive_entry_copy_hardlink(struct archive_entry *entry, const char *target) argument
861 archive_entry_copy_hardlink_w(struct archive_entry *entry, const wchar_t *target) argument
871 archive_entry_update_hardlink_utf8(struct archive_entry *entry, const char *target) argument
881 archive_entry_set_atime(struct archive_entry *entry, time_t t, long ns) argument
890 archive_entry_unset_atime(struct archive_entry *entry) argument
897 archive_entry_set_birthtime(struct archive_entry *entry, time_t m, long ns) argument
906 archive_entry_unset_birthtime(struct archive_entry *entry) argument
913 archive_entry_set_ctime(struct archive_entry *entry, time_t t, long ns) argument
922 archive_entry_unset_ctime(struct archive_entry *entry) argument
929 archive_entry_set_dev(struct archive_entry *entry, dev_t d) argument
937 archive_entry_set_devmajor(struct archive_entry *entry, dev_t m) argument
945 archive_entry_set_devminor(struct archive_entry *entry, dev_t m) argument
954 archive_entry_set_link(struct archive_entry *entry, const char *target) argument
964 archive_entry_copy_link(struct archive_entry *entry, const char *target) argument
974 archive_entry_copy_link_w(struct archive_entry *entry, const wchar_t *target) argument
983 archive_entry_update_link_utf8(struct archive_entry *entry, const char *target) argument
992 archive_entry_set_mode(struct archive_entry *entry, mode_t m) argument
999 archive_entry_set_mtime(struct archive_entry *entry, time_t m, long ns) argument
1008 archive_entry_unset_mtime(struct archive_entry *entry) argument
1015 archive_entry_set_nlink(struct archive_entry *entry, unsigned int nlink) argument
1022 archive_entry_set_pathname(struct archive_entry *entry, const char *name) argument
1028 archive_entry_copy_pathname(struct archive_entry *entry, const char *name) argument
1034 archive_entry_copy_pathname_w(struct archive_entry *entry, const wchar_t *name) argument
1040 archive_entry_update_pathname_utf8(struct archive_entry *entry, const char *name) argument
1046 archive_entry_set_perm(struct archive_entry *entry, mode_t p) argument
1054 archive_entry_set_rdev(struct archive_entry *entry, dev_t m) argument
1062 archive_entry_set_rdevmajor(struct archive_entry *entry, dev_t m) argument
1070 archive_entry_set_rdevminor(struct archive_entry *entry, dev_t m) argument
1078 archive_entry_set_size(struct archive_entry *entry, int64_t s) argument
1086 archive_entry_unset_size(struct archive_entry *entry) argument
1093 archive_entry_copy_sourcepath(struct archive_entry *entry, const char *path) argument
1099 archive_entry_set_symlink(struct archive_entry *entry, const char *linkname) argument
1109 archive_entry_copy_symlink(struct archive_entry *entry, const char *linkname) argument
1119 archive_entry_copy_symlink_w(struct archive_entry *entry, const wchar_t *linkname) argument
1129 archive_entry_update_symlink_utf8(struct archive_entry *entry, const char *linkname) argument
1139 archive_entry_set_uid(struct archive_entry *entry, uid_t u) argument
1146 archive_entry_set_uname(struct archive_entry *entry, const char *name) argument
1152 archive_entry_copy_uname(struct archive_entry *entry, const char *name) argument
1158 archive_entry_copy_uname_w(struct archive_entry *entry, const wchar_t *name) argument
1164 archive_entry_update_uname_utf8(struct archive_entry *entry, const char *name) argument
1179 archive_entry_acl_clear(struct archive_entry *entry) argument
1201 archive_entry_acl_add_entry(struct archive_entry *entry, int type, int permset, int tag, int id, const char *name) argument
1223 archive_entry_acl_add_entry_w(struct archive_entry *entry, int type, int permset, int tag, int id, const wchar_t *name) argument
1230 archive_entry_acl_add_entry_w_len(struct archive_entry *entry, int type, int permset, int tag, int id, const wchar_t *name, size_t len) argument
1253 acl_special(struct archive_entry *entry, int type, int permset, int tag) argument
1279 acl_new_entry(struct archive_entry *entry, int type, int permset, int tag, int id) argument
1326 archive_entry_acl_count(struct archive_entry *entry, int want_type) argument
1350 archive_entry_acl_reset(struct archive_entry *entry, int want_type) argument
1380 archive_entry_acl_next(struct archive_entry *entry, int want_type, int *type, int *permset, int *tag, int *id, const char **name) argument
1446 archive_entry_acl_text_w(struct archive_entry *entry, int flags) argument
1630 __archive_entry_acl_parse_w(struct archive_entry *entry, const wchar_t *text, int default_type) argument
2190 struct archive_entry *entry = archive_entry_new(); local
[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-9.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_map, 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-9.3-release/sys/dev/drm2/
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_map, 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...]
/freebsd-9.3-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/i386/pid/
H A Dtst.badinstr.d33 pid$1:a.out:badfunc:entry
/freebsd-9.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-9.3-release/sys/boot/efi/libefi/
H A Dhandles.c33 struct entry { struct
39 struct entry *entry; variable in typeref:struct:entry
50 sz = nentries * sizeof(struct entry);
51 entry = (entry == NULL) ? malloc(sz) : realloc(entry, sz);
53 entry[idx].handle = handles[unit];
54 entry[idx].dev = sw;
55 entry[id
[all...]
/freebsd-9.3-release/contrib/wpa/src/ap/
H A Dpmksa_cache_auth.c36 void (*free_cb)(struct rsn_pmksa_cache_entry *entry, void *ctx);
44 static void _pmksa_cache_free_entry(struct rsn_pmksa_cache_entry *entry) argument
46 if (entry == NULL)
48 os_free(entry->identity);
50 radius_free_class(&entry->radius_class);
52 os_free(entry);
57 struct rsn_pmksa_cache_entry *entry)
62 pmksa->free_cb(entry, pmksa->ctx);
63 pos = pmksa->pmkid[PMKID_HASH(entry->pmkid)];
66 if (pos == entry) {
56 pmksa_cache_free_entry(struct rsn_pmksa_cache *pmksa, struct rsn_pmksa_cache_entry *entry) argument
103 struct rsn_pmksa_cache_entry *entry = pmksa->pmksa; local
130 pmksa_cache_from_eapol_data(struct rsn_pmksa_cache_entry *entry, struct eapol_state_machine *eapol) argument
154 pmksa_cache_to_eapol_data(struct rsn_pmksa_cache_entry *entry, struct eapol_state_machine *eapol) argument
186 pmksa_cache_link_entry(struct rsn_pmksa_cache *pmksa, struct rsn_pmksa_cache_entry *entry) argument
240 struct rsn_pmksa_cache_entry *entry, *pos; local
288 struct rsn_pmksa_cache_entry *entry; local
327 struct rsn_pmksa_cache_entry *entry, *prev; local
357 struct rsn_pmksa_cache_entry *entry; local
389 struct rsn_pmksa_cache_entry *entry; local
413 pmksa_cache_auth_init(void (*free_cb)(struct rsn_pmksa_cache_entry *entry, void *ctx), void *ctx) argument
[all...]
/freebsd-9.3-release/usr.sbin/bsnmpd/modules/snmp_hostres/
H A Dhostres_storage_tbl.c63 * This structure is used to hold a SNMP table entry
82 * (a_name) to an entry in the hrStorageTblEntry. We are trying to keep the
96 struct storage_entry *entry; member in struct:storage_map_entry
136 * Create a new entry into the storage table and, if neccessary, an
137 * entry into the storage map.
142 struct storage_entry *entry; local
187 if ((entry = malloc(sizeof(*entry))) == NULL) {
191 memset(entry, 0, sizeof(*entry));
211 storage_entry_delete(struct storage_entry *entry) argument
233 struct storage_entry *entry; local
251 struct storage_entry *entry; local
295 struct storage_entry *entry; local
379 struct storage_entry *entry; local
444 struct storage_entry *entry; local
557 struct storage_entry *entry, *entry_tmp; local
595 struct storage_entry *entry; local
[all...]
/freebsd-9.3-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/java_api/
H A Dtst.ProbeDescription.ksh38 java -cp test.jar TestProbeDescription syscall:::entry
40 java -cp test.jar TestProbeDescription isdigit entry
41 java -cp test.jar TestProbeDescription genunix isdigit entry
42 java -cp test.jar TestProbeDescription fbt genunix isdigit entry
43 java -cp test.jar TestProbeDescription fbt:genunix:isdigit:entry
44 java -cp test.jar TestProbeDescription syscall::entry
45 java -cp test.jar TestProbeDescription syscall:entry
/freebsd-9.3-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/predicates/
H A Dtst.argsnotcached.d38 fbt::timeout:entry
44 fbt::schedpaging:entry
51 fbt::schedpaging:entry

Completed in 273 milliseconds

1234567891011>>