Home
last modified time | relevance | path

Searched refs:entry (Results 201 – 225 of 1059) sorted by relevance

12345678910>>...43

/dragonfly/lib/libc/stdlib/
H A Dcxa_thread_atexit_impl.c43 LIST_ENTRY(thread_dtorfn) entry;
63 LIST_FOREACH_MUTABLE(fnp, &dtors, entry, tdtor) { in _thread_finalize()
64 LIST_REMOVE(fnp, entry); in _thread_finalize()
85 LIST_INSERT_HEAD(&dtors, fnp, entry); in __cxa_thread_atexit_impl()
/dragonfly/lib/libc/gen/
H A Dgetpwent.c733 DBT key, entry; in pwdbopen() local
806 DBT key, entry; in files_passwd() local
907 rv = pwdb_versions[st->version].match(entry.data, entry.size, in files_passwd()
916 memcpy(buffer, entry.data, entry.size); in files_passwd()
942 eom = &entry[entrysize]; in pwdb_match_entry_v3()
1012 eom = &entry[entrysize]; in pwdb_match_entry_v4()
1741 DBT key, entry; in compat_passwd() local
1886 memcpy(buffer, entry.data, entry.size); in compat_passwd()
1922 rv = pwdb_versions[st->version].match(entry.data, entry.size, in compat_passwd()
1933 memcpy(buffer, entry.data, entry.size); in compat_passwd()
[all …]
/dragonfly/sys/dev/drm/i915/
H A Dintel_uncore.c669 if (offset < entry->start) in fw_range_cmp()
671 else if (offset > entry->end) in fw_range_cmp()
701 entry = BSEARCH(offset, in find_fw_domain()
706 if (!entry) in find_fw_domain()
713 return entry->domains; in find_fw_domain()
1343 struct reg_whitelist const *entry; in i915_reg_read_ioctl() local
1348 entry = reg_read_whitelist; in i915_reg_read_ioctl()
1354 GEM_BUG_ON(entry->size > 8); in i915_reg_read_ioctl()
1360 entry++; in i915_reg_read_ioctl()
1367 flags = reg->offset & (entry->size - 1); in i915_reg_read_ioctl()
[all …]
/dragonfly/usr.bin/ktrdump/
H A Dktrdump.c468 (uintmax_t)entry->ktr_timestamp); in print_entry()
474 entry->ktr_caller2, entry->ktr_caller1); in print_entry()
483 info = kvm_ktrinfo(entry->ktr_info, &infoctx); in print_entry()
492 entry->ktr_line); in print_entry()
501 (char *)&entry->ktr_data, in print_entry()
510 *last_timestamp = entry->ktr_timestamp; in print_entry()
519 print_entry(fo, n, row, entry, last_ts); in print_callback()
657 ev.ts = entry->ktr_timestamp; in dump_callback()
659 ev.line = entry->ktr_line; in dump_callback()
660 ev.file = kvm_string(entry->ktr_file, &pctx); in dump_callback()
[all …]
/dragonfly/contrib/gcc-8.0/libstdc++-v3/include/ext/pb_ds/detail/binary_heap_/
H A Dbinary_heap_.hpp116 entry; typedef in __gnu_pbds::detail::binary_heap
118 typedef typename _Alloc::template rebind<entry>::other
123 typedef binary_heap_point_const_iterator_<value_type, entry,
129 typedef binary_heap_const_iterator_<value_type, entry,
294 trace_entry(const entry&, false_type) const;
297 trace_entry(const entry&, true_type) const;
/dragonfly/sys/kern/
H A Dkern_timeout.c223 sc->next = TAILQ_NEXT(c, entry); in _callout_update_spinlocked()
224 TAILQ_REMOVE(&wheel->list, c, entry); in _callout_update_spinlocked()
241 sc->next = TAILQ_NEXT(c, entry); in _callout_update_spinlocked()
242 TAILQ_REMOVE(&wheel->list, c, entry); in _callout_update_spinlocked()
271 sc->next = TAILQ_NEXT(c, entry); in _callout_update_spinlocked()
272 TAILQ_REMOVE(&wheel->list, c, entry); in _callout_update_spinlocked()
527 sc->next = TAILQ_NEXT(c, entry); in softclock_handler()
560 TAILQ_REMOVE(&wheel->list, c, entry); in softclock_handler()
656 TAILQ_REMOVE(&sc->freelist, c, entry); in softclock_handler()
1006 sc->next = TAILQ_NEXT(c, entry); in _callout_cancel_quick()
[all …]
/dragonfly/sys/sys/
H A Dimgact_elf.h57 Elf_Size entry; member
89 int __elfN(brand_inuse) (Elf_Brandinfo *entry);
90 int __elfN(insert_brand_entry) (Elf_Brandinfo *entry);
91 int __elfN(remove_brand_entry) (Elf_Brandinfo *entry);
/dragonfly/contrib/binutils-2.27/binutils/
H A Dreadelf.c5185 for (entry = symtab_shndx_list; entry != NULL; entry = entry->next) in get_32bit_elf_symbols()
5298 for (entry = symtab_shndx_list; entry != NULL; entry = entry->next) in get_64bit_elf_symbols()
5798 elf_section_list * entry = xmalloc (sizeof * entry); in process_section_headers() local
6362 if (entry) in process_section_groups()
6369 entry, i, in process_section_groups()
9051 ++entry) in process_dynamic_section()
9096 ++entry) in process_dynamic_section()
9144 ++entry) in process_dynamic_section()
9482 dynamic_info[entry->d_tag] = entry->d_un.d_val; in process_dynamic_section()
9504 dynamic_info[entry->d_tag] = entry->d_un.d_val; in process_dynamic_section()
[all …]
/dragonfly/usr.sbin/nscd/
H A Dprotocol.h44 char *entry; member
60 char *entry; member
82 char *entry; // ignored if entry_length is 0 member
94 char *entry; member
112 char *entry; member
/dragonfly/contrib/libarchive/libarchive/
H A Darchive_read_support_format_raw.c109 struct archive_entry *entry) in archive_read_format_raw_read_header() argument
119 archive_entry_set_pathname(entry, "data"); in archive_read_format_raw_read_header()
120 archive_entry_set_filetype(entry, AE_IFREG); in archive_read_format_raw_read_header()
121 archive_entry_set_perm(entry, 0644); in archive_read_format_raw_read_header()
125 return __archive_read_header(a, entry); in archive_read_format_raw_read_header()
H A Darchive_write_set_format_warc.c104 static int _warc_header(struct archive_write *a, struct archive_entry *entry);
182 _warc_header(struct archive_write *a, struct archive_entry *entry) in _warc_header() argument
221 if (archive_entry_pathname(entry) == NULL) { in _warc_header()
227 w->typ = archive_entry_filetype(entry); in _warc_header()
240 rh.tgturi = archive_entry_pathname(entry); in _warc_header()
242 rh.mtime = archive_entry_mtime(entry); in _warc_header()
243 rh.cntlen = (size_t)archive_entry_size(entry); in _warc_header()
264 &a->archive, entry, "WARC"); in _warc_header()
H A Darchive_read_disk_posix.c494 archive_entry_free(a->entry); in _archive_read_free()
848 struct archive_entry *entry) in next_entry() argument
936 a->excluded_cb_data, entry); in next_entry()
1025 archive_entry_copy_stat(entry, st); in next_entry()
1050 a->excluded_cb_data, entry); in next_entry()
1076 a->excluded_cb_data, entry); in next_entry()
1086 a->metadata_filter_data, entry)) in next_entry()
1118 *entryp = a->entry; in _archive_read_next_header()
1139 archive_entry_clear(entry); in _archive_read_next_header2()
1142 r = next_entry(a, t, entry); in _archive_read_next_header2()
[all …]
/dragonfly/tools/tools/ath/athregs/
H A Ddumpregs.c664 int entry; in ath_hal_dumpkeycache() local
668 for (entry = 0; entry < nkeys; entry++) { in ath_hal_dumpkeycache()
672 macHi = OS_REG_READ(ah, AR_KEYTABLE_MAC1(entry)); in ath_hal_dumpkeycache()
686 type = OS_REG_READ(ah, AR_KEYTABLE_TYPE(entry)); in ath_hal_dumpkeycache()
688 setbit(ismic, entry+64); in ath_hal_dumpkeycache()
689 key0 = OS_REG_READ(ah, AR_KEYTABLE_KEY0(entry)); in ath_hal_dumpkeycache()
690 key1 = OS_REG_READ(ah, AR_KEYTABLE_KEY1(entry)); in ath_hal_dumpkeycache()
691 key2 = OS_REG_READ(ah, AR_KEYTABLE_KEY2(entry)); in ath_hal_dumpkeycache()
692 key3 = OS_REG_READ(ah, AR_KEYTABLE_KEY3(entry)); in ath_hal_dumpkeycache()
693 key4 = OS_REG_READ(ah, AR_KEYTABLE_KEY4(entry)); in ath_hal_dumpkeycache()
[all …]
/dragonfly/sys/dev/drm/amd/amdgpu/
H A Damdgpu_vm.c329 entry->priority = 0; in amdgpu_vm_get_pd_bo()
330 entry->tv.bo = &entry->robj->tbo; in amdgpu_vm_get_pd_bo()
1052 if (entry->huge) in amdgpu_vm_update_pde()
1093 if (!entry->base.bo) in amdgpu_vm_invalidate_level()
1243 *parent = *entry; in amdgpu_vm_get_entry()
1244 *entry = &(*entry)->entries[addr >> shift]; in amdgpu_vm_get_entry()
1249 *entry = NULL; in amdgpu_vm_get_entry()
1280 if (entry->huge) { in amdgpu_vm_handle_huge_pages()
1288 entry->huge = true; in amdgpu_vm_handle_huge_pages()
1328 if (!entry) in amdgpu_vm_update_ptes()
[all …]
/dragonfly/contrib/wpa_supplicant/src/eap_peer/
H A Deap_fast.c847 entry->pac_opaque = pos; in eap_fast_parse_pac_tlv()
852 entry->pac_info = pos; in eap_fast_parse_pac_tlv()
894 if (!pac_key_found || !entry->pac_opaque || !entry->pac_info) { in eap_fast_process_pac_tlv()
935 entry->a_id = pos; in eap_fast_parse_pac_info()
936 entry->a_id_len = len; in eap_fast_parse_pac_info()
941 entry->i_id = pos; in eap_fast_parse_pac_info()
942 entry->i_id_len = len; in eap_fast_parse_pac_info()
947 entry->a_id_info = pos; in eap_fast_parse_pac_info()
996 pos = entry->pac_info; in eap_fast_process_pac_info()
1019 if (entry->a_id == NULL || entry->a_id_info == NULL) { in eap_fast_process_pac_info()
[all …]
/dragonfly/sys/vfs/hammer/
H A Dhammer_transaction.c206 ocp, entry); in hammer_alloc_objid()
225 ocp, entry); in hammer_alloc_objid()
234 TAILQ_REMOVE(&hmp->objid_cache_list, ocp, entry); in hammer_alloc_objid()
257 TAILQ_INSERT_TAIL(&hmp->objid_cache_list, ocp, entry); in hammer_alloc_objid()
300 TAILQ_REMOVE(&dip->hmp->objid_cache_list, ocp, entry); in hammer_clear_objid()
301 TAILQ_INSERT_HEAD(&dip->hmp->objid_cache_list, ocp, entry); in hammer_clear_objid()
311 TAILQ_REMOVE(&hmp->objid_cache_list, ocp, entry); in hammer_destroy_objid_cache()
/dragonfly/sbin/hammer/
H A Dcache.c87 TAILQ_INSERT_HEAD(&CacheList, cache, entry); in hammer_cache_add()
94 TAILQ_REMOVE(&CacheList, cache, entry); in hammer_cache_del()
101 TAILQ_REMOVE(&CacheList, cache, entry); in hammer_cache_used()
102 TAILQ_INSERT_TAIL(&CacheList, cache, entry); in hammer_cache_used()
/dragonfly/contrib/mdocml/
H A Ddba_array.c77 dba_array_set(struct dba_array *array, int32_t ie, void *entry) in dba_array_set() argument
85 entry = mandoc_strdup(entry); in dba_array_set()
86 array->ep[ie] = entry; in dba_array_set()
91 dba_array_add(struct dba_array *array, void *entry) in dba_array_add() argument
101 dba_array_set(array, array->eu, entry); in dba_array_add()
/dragonfly/sys/dev/drm/include/linux/
H A Dwait.h47 struct list_head entry; member
209 .entry = LIST_HEAD_INIT((name).entry), \
219 list_add(&new->entry, &head->head); in __add_wait_queue()
239 list_del(&old->entry); in __remove_wait_queue()
253 list_add_tail(&wq->entry, &wqh->head); in __add_wait_queue_entry_tail()
/dragonfly/contrib/gcc-4.7/libstdc++-v3/include/ext/pb_ds/detail/binary_heap_/
H A Dbinary_heap_.hpp116 entry; typedef in __gnu_pbds::detail::binary_heap
118 typedef typename _Alloc::template rebind<entry>::other
123 typedef binary_heap_point_const_iterator_<value_type, entry,
129 typedef binary_heap_const_iterator_<value_type, entry,
309 trace_entry(const entry&, false_type) const;
312 trace_entry(const entry&, true_type) const;
/dragonfly/contrib/gcc-4.7/gcc/c-family/
H A Dc-pragma.c75 align_stack * entry; in push_alignment() local
79 entry->alignment = alignment; in push_alignment()
80 entry->id = id; in push_alignment()
89 alignment_stack = entry; in push_alignment()
98 align_stack * entry; in pop_alignment() local
107 for (entry = alignment_stack; entry; entry = entry->prev) in pop_alignment()
108 if (entry->id == id) in pop_alignment()
110 alignment_stack = entry; in pop_alignment()
113 if (entry == NULL) in pop_alignment()
121 maximum_field_alignment = entry ? entry->alignment : default_alignment; in pop_alignment()
[all …]
/dragonfly/sys/dev/netif/iwm/
H A Dif_iwm_notif_wait.c124 STAILQ_FOREACH(wait_entry, &notif_data->list, entry) { in iwm_notification_wait_notify()
161 STAILQ_FOREACH(wait_entry, &notif_data->list, entry) { in iwm_abort_notification_waits()
184 STAILQ_INSERT_TAIL(&notif_data->list, wait_entry, entry); in iwm_init_notification_wait()
200 entry); in iwm_wait_notification()
212 entry); in iwm_remove_notification()
/dragonfly/sys/dev/drm/amd/display/include/
H A Dlogger_interface.h152 #define DISPLAY_STATS_BEGIN(entry) (void)(entry) argument
156 #define DISPLAY_STATS_END(entry) (void)(entry) argument
/dragonfly/contrib/gcc-4.7/gcc/
H A Dgraphite-scop-detection.c120 basic_block entry; member
496 open_scop.entry = bb; in scopdet_basic_block_info()
733 open_scop.entry = NULL; in build_scops_1()
747 open_scop.entry = current; in build_scops_1()
791 edge entry = NULL; in find_single_entry_edge() local
796 if (entry) in find_single_entry_edge()
798 entry = NULL; in find_single_entry_edge()
803 entry = e; in find_single_entry_edge()
806 return entry; in find_single_entry_edge()
888 if (region->entry->loop_father->header != region->entry in create_single_entry_edge()
[all …]
/dragonfly/usr.sbin/cron/doc/
H A DMakefile.vixie92 SOURCES = cron.c crontab.c database.c do_command.c entry.c \
95 LINT_CRON = cron.c database.c user.c entry.c compat.c \
97 LINT_CRONTAB = crontab.c misc.c entry.c env.c compat.c
98 CRON_OBJ = cron.o database.o user.o entry.o job.o do_command.o \
100 CRONTAB_OBJ = crontab.o misc.o entry.o env.o compat.o

12345678910>>...43