Searched refs:entry (Results 276 - 300 of 3165) sorted by relevance

<<11121314151617181920>>

/netbsd-current/external/gpl3/gdb.old/dist/ld/testsuite/ld-powerpc/
H A Dtocopt5.s26 # no need for got entry, optimise to nop,addi
29 # must keep got entry, optimise to nop,addi,ld
34 # no need for toc entry, optimise to nop,addi
37 # must keep toc entry, optimise to nop,addi,ld
39 # the toc entry and optimise to nop,nop,addi
/netbsd-current/external/gpl3/gdb/dist/gnulib/import/
H A Dreaddir.c1 /* Read the next entry of a directory.
42 "If entries for dot or dot-dot exist, one entry shall be returned
43 for dot and one entry shall be returned for dot-dot; otherwise,
54 if (!FindNextFile (dirp->current, &dirp->entry))
74 if (dirp->entry.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)
76 else if (dirp->entry.dwFileAttributes & FILE_ATTRIBUTE_REPARSE_POINT)
78 else if ((dirp->entry.dwFileAttributes
95 /* Reuse the memory of dirp->entry for the result. */
98 ((char *) dirp->entry.cFileName - offsetof (struct dirent, d_name[0]));
/netbsd-current/external/bsd/libarchive/dist/libarchive/
H A Darchive_write_set_format.c84 struct archive_entry *entry, const char *format)
88 switch (archive_entry_filetype(entry)) {
117 archive_entry_pathname(entry), format, name);
121 archive_entry_pathname(entry), format,
122 (unsigned long)archive_entry_mode(entry));
83 __archive_write_entry_filetype_unsupported(struct archive *a, struct archive_entry *entry, const char *format) argument
H A Darchive_read_support_format_cpio.c219 struct cpio *cpio, struct archive_entry *entry);
361 struct archive_entry *entry)
382 r = (cpio->read_header(a, cpio, entry, &namelength, &name_pad));
391 if (archive_entry_copy_pathname_l(entry,
408 if (archive_entry_filetype(entry) == AE_IFLNK) {
418 if (archive_entry_copy_symlink_l(entry, (const char *)hl,
437 * ACL description for the following entry. Read this body
450 if (record_hardlink(a, cpio, entry) != ARCHIVE_OK) {
593 struct archive_entry *entry, size_t *namelength, size_t *name_pad)
621 archive_entry_set_devmajor(entry,
360 archive_read_format_cpio_read_header(struct archive_read *a, struct archive_entry *entry) argument
592 header_newc(struct archive_read *a, struct cpio *cpio, struct archive_entry *entry, size_t *namelength, size_t *name_pad) argument
767 header_odc(struct archive_read *a, struct cpio *cpio, struct archive_entry *entry, size_t *namelength, size_t *name_pad) argument
834 header_afiol(struct archive_read *a, struct cpio *cpio, struct archive_entry *entry, size_t *namelength, size_t *name_pad) argument
876 header_bin_le(struct archive_read *a, struct cpio *cpio, struct archive_entry *entry, size_t *namelength, size_t *name_pad) argument
921 header_bin_be(struct archive_read *a, struct cpio *cpio, struct archive_entry *entry, size_t *namelength, size_t *name_pad) argument
1045 record_hardlink(struct archive_read *a, struct cpio *cpio, struct archive_entry *entry) argument
[all...]
H A Darchive_write_set_format_cpio_binary.c278 synthesize_ino_value(struct cpio *cpio, struct archive_entry *entry) argument
280 int64_t ino = archive_entry_ino64(entry);
294 if (archive_entry_nlink(entry) < 2) {
350 archive_write_binary_header(struct archive_write *a, struct archive_entry *entry) argument
355 if (archive_entry_filetype(entry) == 0 && archive_entry_hardlink(entry) == NULL) {
360 if (archive_entry_pathname_l(entry, &path, &len, get_sconv(a)) != 0
371 if (!archive_entry_size_is_set(entry) || archive_entry_size(entry) < 0) {
375 return write_header(a, entry);
379 write_header(struct archive_write *a, struct archive_entry *entry) argument
[all...]
/netbsd-current/tests/include/sys/
H A Dt_list.c52 LIST_HEAD(listhead, entry) old_head, new_head, old_copy;
53 struct entry {
54 LIST_ENTRY(entry) entries;
60 n1 = malloc(sizeof(struct entry));
64 n2 = malloc(sizeof(struct entry));
/netbsd-current/external/bsd/libarchive/dist/tar/
H A Dread.c83 struct archive_entry *entry; member in struct:progress_data
125 struct archive_entry *entry = progress_data->entry; local
147 if (entry != NULL) {
149 archive_entry_pathname(entry));
151 tar_i64toa(archive_entry_size(entry)));
164 struct archive_entry *entry; local
259 r = archive_read_next_header(a, &entry);
260 progress_data.entry = entry;
[all...]
/netbsd-current/external/bsd/pkg_install/dist/lib/
H A Dpkg_signature.c170 struct archive_entry **entry,
179 if (*entry == NULL &&
180 (r = archive_read_next_header(archive, entry)) != ARCHIVE_OK) {
187 *entry = NULL;
190 if (strcmp(archive_entry_pathname(*entry), "//") == 0) {
192 *entry = NULL;
196 if (strcmp(fname, archive_entry_pathname(*entry)) != 0)
199 if (archive_entry_size(*entry) > SSIZE_MAX - 1) {
204 *len = archive_entry_size(*entry);
216 *entry
169 read_file_from_archive(const char *archive_name, struct archive *archive, struct archive_entry **entry, const char *fname, char **content, size_t *len) argument
317 pkg_verify_signature(const char *archive_name, struct archive **archive, struct archive_entry **entry, char **pkgname) argument
422 struct archive_entry *entry = NULL; local
445 struct archive_entry *entry; local
526 struct archive_entry *entry, *hash_entry, *sign_entry; local
619 struct archive_entry *entry, *hash_entry, *sign_entry; local
[all...]
/netbsd-current/external/bsd/ntp/dist/sntp/libevent/
H A Devent_rpcgen.py59 def AddEntry(self, entry):
60 if self._tags.has_key(entry.Tag()):
63 'around line %d' % (entry.Name(), entry.Tag(),
64 self._tags[entry.Tag()], line_count))
65 self._entries.append(entry)
66 self._tags[entry.Tag()] = entry.Name()
67 declare(' Added entry: %s' % entry
[all...]
/netbsd-current/external/bsd/libevent/dist/
H A Devent_rpcgen.py72 def AddEntry(self, entry):
73 if entry.Tag() in self._tags:
77 % (entry.Name(), entry.Tag(), self._tags[entry.Tag()], LINE_COUNT)
79 self._entries.append(entry)
80 self._tags[entry.Tag()] = entry.Name()
81 declare(" Added entry: %s" % entry
[all...]
/netbsd-current/bin/setfacl/
H A Dmerge.c45 static int merge_user_group(acl_entry_t *entry, acl_entry_t *entry_new,
49 merge_user_group(acl_entry_t *entry, acl_entry_t *entry_new, int acl_brand) argument
59 id = acl_get_qualifier(*entry);
67 if (acl_get_permset(*entry, &permset) == -1)
73 if (acl_get_entry_type_np(*entry, &entry_type))
77 if (acl_get_flagset_np(*entry, &flagset))
97 acl_entry_t entry, entry_new; local
111 "entry to be merged is %s", filename,
122 while (acl_get_entry(acl, entry_id, &entry) == 1) {
128 if (acl_get_tag_type(entry,
248 acl_entry_t entry, entry_new; local
[all...]
/netbsd-current/lib/libc/posix1e/
H A Dacl_to_text_nfs4.c53 format_who(char *str, size_t size, const acl_entry_t entry, int numeric) argument
61 error = acl_get_tag_type(entry, &tag);
71 id = (uid_t *)acl_get_qualifier(entry);
90 id = (uid_t *)acl_get_qualifier(entry);
116 format_entry_type(char *str, size_t size, const acl_entry_t entry) argument
121 error = acl_get_entry_type_np(entry, &entry_type);
146 format_additional_id(char *str, size_t size, const acl_entry_t entry) argument
152 error = acl_get_tag_type(entry, &tag);
164 id = (uid_t *)acl_get_qualifier(entry);
174 format_entry(char *str, size_t size, const acl_entry_t entry, in argument
240 acl_entry_t entry; local
[all...]
/netbsd-current/external/mpl/dhcp/bind/dist/lib/dns/
H A Dgeoip2.c58 * same address, we can reuse the MMDB entry without repeating the lookup.
74 MMDB_entry_s entry; member in struct:geoip_state
81 MMDB_lookup_result_s mmresult, MMDB_entry_s entry) {
85 geoip_state.entry = entry;
105 set_state(db, addr, match, match.entry);
255 ret = MMDB_get_value(&state->entry, &value, "country",
264 ret = MMDB_get_value(&state->entry, &value, "country", "names",
273 ret = MMDB_get_value(&state->entry, &value, "continent", "code",
282 ret = MMDB_get_value(&state->entry,
80 set_state(const MMDB_s *db, const isc_netaddr_t *addr, MMDB_lookup_result_s mmresult, MMDB_entry_s entry) argument
[all...]
/netbsd-current/external/mpl/bind/dist/lib/dns/
H A Dgeoip2.c51 * same address, we can reuse the MMDB entry without repeating the lookup.
67 MMDB_entry_s entry; member in struct:geoip_state
74 MMDB_lookup_result_s mmresult, MMDB_entry_s entry) {
78 geoip_state.entry = entry;
98 set_state(db, addr, match, match.entry);
248 ret = MMDB_get_value(&state->entry, &value, "country",
257 ret = MMDB_get_value(&state->entry, &value, "country", "names",
266 ret = MMDB_get_value(&state->entry, &value, "continent", "code",
275 ret = MMDB_get_value(&state->entry,
73 set_state(const MMDB_s *db, const isc_netaddr_t *addr, MMDB_lookup_result_s mmresult, MMDB_entry_s entry) argument
[all...]
/netbsd-current/usr.bin/find/
H A Dfunction.c228 f_amin(PLAN *plan, FTSENT *entry) argument
230 COMPARE((now - entry->fts_statp->st_atime +
257 f_anewer(PLAN *plan, FTSENT *entry) argument
260 return timespeccmp(&entry->fts_statp->st_atim, &plan->ts_data, >);
286 f_asince(PLAN *plan, FTSENT *entry) argument
288 COMPARE(entry->fts_statp->st_atime, plan->t_data);
313 f_atime(PLAN *plan, FTSENT *entry) argument
315 COMPARE((now - entry->fts_statp->st_atime +
341 f_cmin(PLAN *plan, FTSENT *entry) argument
343 COMPARE((now - entry
370 f_cnewer(PLAN *plan, FTSENT *entry) argument
399 f_csince(PLAN *plan, FTSENT *entry) argument
426 f_ctime(PLAN *plan, FTSENT *entry) argument
453 f_delete(PLAN *plan __unused, FTSENT *entry) argument
513 f_always_true(PLAN *plan, FTSENT *entry) argument
533 f_empty(PLAN *plan, FTSENT *entry) argument
590 f_exec(PLAN *plan, FTSENT *entry) argument
836 f_execdir(PLAN *plan, FTSENT *entry) argument
946 f_false(PLAN *plan, FTSENT *entry) argument
963 f_flags(PLAN *plan, FTSENT *entry) argument
1020 f_fprint(PLAN *plan, FTSENT *entry) argument
1054 f_fstype(PLAN *plan, FTSENT *entry) argument
1155 f_group(PLAN *plan, FTSENT *entry) argument
1195 f_inum(PLAN *plan, FTSENT *entry) argument
1221 f_links(PLAN *plan, FTSENT *entry) argument
1247 f_ls(PLAN *plan, FTSENT *entry) argument
1271 f_maxdepth(PLAN *plan, FTSENT *entry) argument
1299 f_mindepth(PLAN *plan, FTSENT *entry) argument
1323 f_mmin(PLAN *plan, FTSENT *entry) argument
1351 f_mtime(PLAN *plan, FTSENT *entry) argument
1379 f_name(PLAN *plan, FTSENT *entry) argument
1404 f_iname(PLAN *plan, FTSENT *entry) argument
1429 f_newer(PLAN *plan, FTSENT *entry) argument
1459 f_nogroup(PLAN *plan, FTSENT *entry) argument
1480 f_nouser(PLAN *plan, FTSENT *entry) argument
1501 f_path(PLAN *plan, FTSENT *entry) argument
1527 f_perm(PLAN *plan, FTSENT *entry) argument
1572 f_print(PLAN *plan, FTSENT *entry) argument
1580 f_print0(PLAN *plan, FTSENT *entry) argument
1589 f_printx(PLAN *plan, FTSENT *entry) argument
1639 f_prune(PLAN *plan, FTSENT *entry) argument
1661 f_regex(PLAN *plan, FTSENT *entry) argument
1720 f_since(PLAN *plan, FTSENT *entry) argument
1751 f_size(PLAN *plan, FTSENT *entry) argument
1786 f_type(PLAN *plan, FTSENT *entry) argument
1850 f_user(PLAN *plan, FTSENT *entry) argument
1904 f_expr(PLAN *plan, FTSENT *entry) argument
1940 f_not(PLAN *plan, FTSENT *entry) argument
1965 f_or(PLAN *plan, FTSENT *entry) argument
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/bfd/
H A Delf32-frv.c415 /* A 24-bit pc-relative relocation referencing the TLS PLT entry for
544 /* A 12-bit signed operand with the GOT offset for the TLSOFF entry
560 /* The upper 16 bits of the GOT offset for the TLSOFF entry for a
576 /* The lower 16 bits of the GOT offset for the TLSOFF entry for a
626 symbol+addend whose TLS resolver entry point is given by the sum
643 symbol+addend whose TLS offset GOT entry is given by the sum of
757 an entry point, and the second resolves to a special argument.
758 If the symbol turns out to be in static TLS, the entry point is a
760 for the symbol. If it's in dynamic TLS, the entry point is a TLS
814 /* Location of the first non-lazy PLT entry,
1091 const struct frvfdpic_relocs_info *entry = entry_; local
1114 frvfdpic_relocs_info_find(struct htab *ht, bfd *abfd, const struct frvfdpic_relocs_info *entry, enum insert_option insert) argument
1153 struct frvfdpic_relocs_info entry; local
1172 struct frvfdpic_relocs_info entry; local
1221 _frvfdpic_add_dyn_reloc(bfd *output_bfd, asection *sreloc, bfd_vma offset, int reloc_type, long dynindx, bfd_vma addend, struct frvfdpic_relocs_info *entry) argument
1257 _frvfdpic_add_rofixup(bfd *output_bfd, asection *rofixup, bfd_vma offset, struct frvfdpic_relocs_info *entry) argument
1322 _frvfdpic_emit_got_relocs_plt_entries(struct frvfdpic_relocs_info *entry, bfd *output_bfd, struct bfd_link_info *info, asection *sec, Elf_Internal_Sym *sym, bfd_vma addend) argument
4392 _frvfdpic_count_nontls_entries(struct frvfdpic_relocs_info *entry, struct _frvfdpic_dynamic_got_info *dinfo) argument
4456 _frvfdpic_count_tls_entries(struct frvfdpic_relocs_info *entry, struct _frvfdpic_dynamic_got_info *dinfo, bfd_boolean subtract) argument
4501 _frvfdpic_count_relocs_fixups(struct frvfdpic_relocs_info *entry, struct _frvfdpic_dynamic_got_info *dinfo, bfd_boolean subtract) argument
4572 _frvfdpic_relax_tls_entries(struct frvfdpic_relocs_info *entry, struct _frvfdpic_dynamic_got_info *dinfo, bfd_boolean relaxing) argument
4689 struct frvfdpic_relocs_info *entry = *entryp; local
4963 struct frvfdpic_relocs_info *entry = *entryp; local
5041 struct frvfdpic_relocs_info *entry = *entryp; local
5143 struct frvfdpic_relocs_info *entry = *entryp; local
5166 struct frvfdpic_relocs_info *entry = *entryp; local
5606 struct frvfdpic_relocs_info *entry = *entryp; local
[all...]
/netbsd-current/external/gpl3/gdb/dist/bfd/
H A Delf32-frv.c415 /* A 24-bit pc-relative relocation referencing the TLS PLT entry for
544 /* A 12-bit signed operand with the GOT offset for the TLSOFF entry
560 /* The upper 16 bits of the GOT offset for the TLSOFF entry for a
576 /* The lower 16 bits of the GOT offset for the TLSOFF entry for a
626 symbol+addend whose TLS resolver entry point is given by the sum
643 symbol+addend whose TLS offset GOT entry is given by the sum of
757 an entry point, and the second resolves to a special argument.
758 If the symbol turns out to be in static TLS, the entry point is a
760 for the symbol. If it's in dynamic TLS, the entry point is a TLS
814 /* Location of the first non-lazy PLT entry,
1091 const struct frvfdpic_relocs_info *entry = entry_; local
1114 frvfdpic_relocs_info_find(struct htab *ht, bfd *abfd, const struct frvfdpic_relocs_info *entry, enum insert_option insert) argument
1153 struct frvfdpic_relocs_info entry; local
1172 struct frvfdpic_relocs_info entry; local
1221 _frvfdpic_add_dyn_reloc(bfd *output_bfd, asection *sreloc, bfd_vma offset, int reloc_type, long dynindx, bfd_vma addend, struct frvfdpic_relocs_info *entry) argument
1257 _frvfdpic_add_rofixup(bfd *output_bfd, asection *rofixup, bfd_vma offset, struct frvfdpic_relocs_info *entry) argument
1322 _frvfdpic_emit_got_relocs_plt_entries(struct frvfdpic_relocs_info *entry, bfd *output_bfd, struct bfd_link_info *info, asection *sec, Elf_Internal_Sym *sym, bfd_vma addend) argument
4392 _frvfdpic_count_nontls_entries(struct frvfdpic_relocs_info *entry, struct _frvfdpic_dynamic_got_info *dinfo) argument
4456 _frvfdpic_count_tls_entries(struct frvfdpic_relocs_info *entry, struct _frvfdpic_dynamic_got_info *dinfo, bool subtract) argument
4501 _frvfdpic_count_relocs_fixups(struct frvfdpic_relocs_info *entry, struct _frvfdpic_dynamic_got_info *dinfo, bool subtract) argument
4572 _frvfdpic_relax_tls_entries(struct frvfdpic_relocs_info *entry, struct _frvfdpic_dynamic_got_info *dinfo, bool relaxing) argument
4689 struct frvfdpic_relocs_info *entry = *entryp; local
4963 struct frvfdpic_relocs_info *entry = *entryp; local
5041 struct frvfdpic_relocs_info *entry = *entryp; local
5143 struct frvfdpic_relocs_info *entry = *entryp; local
5166 struct frvfdpic_relocs_info *entry = *entryp; local
5605 struct frvfdpic_relocs_info *entry = *entryp; local
[all...]
/netbsd-current/external/gpl3/binutils.old/dist/bfd/
H A Delf32-frv.c415 /* A 24-bit pc-relative relocation referencing the TLS PLT entry for
544 /* A 12-bit signed operand with the GOT offset for the TLSOFF entry
560 /* The upper 16 bits of the GOT offset for the TLSOFF entry for a
576 /* The lower 16 bits of the GOT offset for the TLSOFF entry for a
626 symbol+addend whose TLS resolver entry point is given by the sum
643 symbol+addend whose TLS offset GOT entry is given by the sum of
757 an entry point, and the second resolves to a special argument.
758 If the symbol turns out to be in static TLS, the entry point is a
760 for the symbol. If it's in dynamic TLS, the entry point is a TLS
814 /* Location of the first non-lazy PLT entry,
1091 const struct frvfdpic_relocs_info *entry = entry_; local
1114 frvfdpic_relocs_info_find(struct htab *ht, bfd *abfd, const struct frvfdpic_relocs_info *entry, enum insert_option insert) argument
1153 struct frvfdpic_relocs_info entry; local
1172 struct frvfdpic_relocs_info entry; local
1221 _frvfdpic_add_dyn_reloc(bfd *output_bfd, asection *sreloc, bfd_vma offset, int reloc_type, long dynindx, bfd_vma addend, struct frvfdpic_relocs_info *entry) argument
1257 _frvfdpic_add_rofixup(bfd *output_bfd, asection *rofixup, bfd_vma offset, struct frvfdpic_relocs_info *entry) argument
1322 _frvfdpic_emit_got_relocs_plt_entries(struct frvfdpic_relocs_info *entry, bfd *output_bfd, struct bfd_link_info *info, asection *sec, Elf_Internal_Sym *sym, bfd_vma addend) argument
4392 _frvfdpic_count_nontls_entries(struct frvfdpic_relocs_info *entry, struct _frvfdpic_dynamic_got_info *dinfo) argument
4456 _frvfdpic_count_tls_entries(struct frvfdpic_relocs_info *entry, struct _frvfdpic_dynamic_got_info *dinfo, bool subtract) argument
4501 _frvfdpic_count_relocs_fixups(struct frvfdpic_relocs_info *entry, struct _frvfdpic_dynamic_got_info *dinfo, bool subtract) argument
4572 _frvfdpic_relax_tls_entries(struct frvfdpic_relocs_info *entry, struct _frvfdpic_dynamic_got_info *dinfo, bool relaxing) argument
4689 struct frvfdpic_relocs_info *entry = *entryp; local
4963 struct frvfdpic_relocs_info *entry = *entryp; local
5041 struct frvfdpic_relocs_info *entry = *entryp; local
5143 struct frvfdpic_relocs_info *entry = *entryp; local
5166 struct frvfdpic_relocs_info *entry = *entryp; local
5605 struct frvfdpic_relocs_info *entry = *entryp; local
[all...]
/netbsd-current/external/gpl3/binutils/dist/bfd/
H A Delf32-frv.c415 /* A 24-bit pc-relative relocation referencing the TLS PLT entry for
544 /* A 12-bit signed operand with the GOT offset for the TLSOFF entry
560 /* The upper 16 bits of the GOT offset for the TLSOFF entry for a
576 /* The lower 16 bits of the GOT offset for the TLSOFF entry for a
626 symbol+addend whose TLS resolver entry point is given by the sum
643 symbol+addend whose TLS offset GOT entry is given by the sum of
757 an entry point, and the second resolves to a special argument.
758 If the symbol turns out to be in static TLS, the entry point is a
760 for the symbol. If it's in dynamic TLS, the entry point is a TLS
814 /* Location of the first non-lazy PLT entry,
1091 const struct frvfdpic_relocs_info *entry = entry_; local
1114 frvfdpic_relocs_info_find(struct htab *ht, bfd *abfd, const struct frvfdpic_relocs_info *entry, enum insert_option insert) argument
1153 struct frvfdpic_relocs_info entry; local
1172 struct frvfdpic_relocs_info entry; local
1221 _frvfdpic_add_dyn_reloc(bfd *output_bfd, asection *sreloc, bfd_vma offset, int reloc_type, long dynindx, bfd_vma addend, struct frvfdpic_relocs_info *entry) argument
1257 _frvfdpic_add_rofixup(bfd *output_bfd, asection *rofixup, bfd_vma offset, struct frvfdpic_relocs_info *entry) argument
1322 _frvfdpic_emit_got_relocs_plt_entries(struct frvfdpic_relocs_info *entry, bfd *output_bfd, struct bfd_link_info *info, asection *sec, Elf_Internal_Sym *sym, bfd_vma addend) argument
4392 _frvfdpic_count_nontls_entries(struct frvfdpic_relocs_info *entry, struct _frvfdpic_dynamic_got_info *dinfo) argument
4456 _frvfdpic_count_tls_entries(struct frvfdpic_relocs_info *entry, struct _frvfdpic_dynamic_got_info *dinfo, bool subtract) argument
4501 _frvfdpic_count_relocs_fixups(struct frvfdpic_relocs_info *entry, struct _frvfdpic_dynamic_got_info *dinfo, bool subtract) argument
4572 _frvfdpic_relax_tls_entries(struct frvfdpic_relocs_info *entry, struct _frvfdpic_dynamic_got_info *dinfo, bool relaxing) argument
4689 struct frvfdpic_relocs_info *entry = *entryp; local
4963 struct frvfdpic_relocs_info *entry = *entryp; local
5041 struct frvfdpic_relocs_info *entry = *entryp; local
5143 struct frvfdpic_relocs_info *entry = *entryp; local
5166 struct frvfdpic_relocs_info *entry = *entryp; local
5605 struct frvfdpic_relocs_info *entry = *entryp; local
[all...]
/netbsd-current/sys/arch/mvme68k/stand/libsa/
H A Dexec_mvme.c52 kentry_t entry; local
73 entry = (kentry_t)marks[MARK_ENTRY];
75 (*entry)(flag, bugargs.ctrl_addr, bugargs.ctrl_lun, bugargs.dev_lun,
/netbsd-current/sys/arch/mvmeppc/stand/libsa/
H A Dexec_mvme.c82 kentry_t entry; local
105 entry = (kentry_t) marks[MARK_ENTRY];
107 (*entry)(marks[MARK_SYM], marks[MARK_END], &bootinfo);
/netbsd-current/external/gpl3/gdb.old/dist/sim/igen/
H A Dtable.h111 extern void table_expand_field (table_entry *entry, int field_nr);
114 /* Given a code entry, write the code to FILE. Since any
118 extern void table_print_code (lf *file, table_entry *entry);
127 (lf *file, char *prefix, const table_entry *entry, char *suffix);
/netbsd-current/external/gpl3/gdb/dist/sim/igen/
H A Dtable.h112 extern void table_expand_field (table_entry *entry, int field_nr);
115 /* Given a code entry, write the code to FILE. Since any
119 extern void table_print_code (lf *file, const table_entry *entry);
128 (lf *file, const char *prefix, const table_entry *entry, const char *suffix);
/netbsd-current/external/mpl/dhcp/bind/dist/lib/isc/unix/
H A Ddir.c40 dir->entry.name[0] = '\0';
41 dir->entry.length = 0;
101 struct dirent *entry; local
108 entry = readdir(dir->handle);
110 if (entry == NULL) {
117 if (sizeof(dir->entry.name) <= strlen(entry->d_name)) {
121 strlcpy(dir->entry.name, entry->d_name, sizeof(dir->entry
[all...]
/netbsd-current/external/mpl/bind/dist/lib/isc/
H A Ddir.c40 dir->entry.name[0] = '\0';
41 dir->entry.length = 0;
101 struct dirent *entry; local
108 entry = readdir(dir->handle);
110 if (entry == NULL) {
117 if (sizeof(dir->entry.name) <= strlen(entry->d_name)) {
121 strlcpy(dir->entry.name, entry->d_name, sizeof(dir->entry
[all...]

Completed in 528 milliseconds

<<11121314151617181920>>