| /netbsd-src/sys/nfs/ |
| H A D | nfs_kq.c | 116 struct kevq *ke; in nfs_kqpoll() local 123 SLIST_FOREACH(ke, &kevlist, kev_link) { in nfs_kqpoll() 125 if (nfs_getattrcache(ke->vp, &attr) != ENOENT) in nfs_kqpoll() 132 ke->flags |= KEVQ_BUSY; in nfs_kqpoll() 136 osize = ke->vp->v_size; in nfs_kqpoll() 139 vn_lock(ke->vp, LK_SHARED | LK_RETRY); in nfs_kqpoll() 140 (void) VOP_GETATTR(ke->vp, &attr, l->l_cred); in nfs_kqpoll() 141 VOP_UNLOCK(ke->vp); in nfs_kqpoll() 147 VN_KNOTE(ke->vp, NOTE_WRITE in nfs_kqpoll() 149 ke->omtime = attr.va_mtime; in nfs_kqpoll() [all …]
|
| /netbsd-src/sys/compat/netbsd32/ |
| H A D | netbsd32_compat_100.c | 52 struct kevent *ke) in compat_100_netbsd32_to_kevent() argument 55 memset(ke, 0, sizeof(*ke)); in compat_100_netbsd32_to_kevent() 56 ke->ident = ke32->ident; in compat_100_netbsd32_to_kevent() 57 ke->filter = ke32->filter; in compat_100_netbsd32_to_kevent() 58 ke->flags = ke32->flags; in compat_100_netbsd32_to_kevent() 59 ke->fflags = ke32->fflags; in compat_100_netbsd32_to_kevent() 60 ke->data = ke32->data; in compat_100_netbsd32_to_kevent() 61 ke->udata = NETBSD32PTR64(ke32->udata); in compat_100_netbsd32_to_kevent() 65 compat_100_netbsd32_from_kevent(const struct kevent *ke, in compat_100_netbsd32_from_kevent() argument 70 ke32->ident = ke->ident; in compat_100_netbsd32_from_kevent() [all …]
|
| H A D | netbsd32_conv.h | 806 netbsd32_to_kevent(struct netbsd32_kevent *ke32, struct kevent *ke) in netbsd32_to_kevent() argument 809 memset(ke, 0, sizeof(*ke)); in netbsd32_to_kevent() 810 ke->ident = ke32->ident; in netbsd32_to_kevent() 811 ke->filter = ke32->filter; in netbsd32_to_kevent() 812 ke->flags = ke32->flags; in netbsd32_to_kevent() 813 ke->fflags = ke32->fflags; in netbsd32_to_kevent() 814 ke->data = ke32->data; in netbsd32_to_kevent() 815 ke->udata = NETBSD32PTR64(ke32->udata); in netbsd32_to_kevent() 816 memcpy(&ke->ext, &ke32->ext, sizeof(ke->ext)); in netbsd32_to_kevent() 820 netbsd32_from_kevent(struct kevent *ke, struct netbsd32_kevent *ke32) in netbsd32_from_kevent() argument [all …]
|
| /netbsd-src/external/gpl3/binutils/dist/opcodes/ |
| H A D | cgen-opc.c | 46 const CGEN_KEYWORD_ENTRY *ke; in cgen_keyword_lookup_name() local 52 ke = kt->name_hash_table[hash_keyword_name (kt, name, 0)]; in cgen_keyword_lookup_name() 58 while (ke != NULL) in cgen_keyword_lookup_name() 61 p = ke->name; in cgen_keyword_lookup_name() 69 return ke; in cgen_keyword_lookup_name() 71 ke = ke->next_name; in cgen_keyword_lookup_name() 85 const CGEN_KEYWORD_ENTRY *ke; in cgen_keyword_lookup_value() local 90 ke = kt->value_hash_table[hash_keyword_value (kt, value)]; in cgen_keyword_lookup_value() 92 while (ke != NULL) in cgen_keyword_lookup_value() 94 if (value == ke->value) in cgen_keyword_lookup_value() [all …]
|
| H A D | cgen-asm.c | 201 const CGEN_KEYWORD_ENTRY *ke; in cgen_parse_keyword() local 236 ke = cgen_keyword_lookup_name (keyword_table, buf); in cgen_parse_keyword() 238 if (ke != NULL) in cgen_parse_keyword() 240 *valuep = ke->value; in cgen_parse_keyword() 242 if (ke->name[0] != 0) in cgen_parse_keyword()
|
| H A D | ip2k-dis.c | 72 const CGEN_KEYWORD_ENTRY *ke; in print_fr() local 107 ke = cgen_keyword_lookup_value (& ip2k_cgen_opval_register_names, value); in print_fr() 109 if (ke != NULL) in print_fr() 110 (*info->fprintf_func) (info->stream, "%s", ke->name); in print_fr() 367 const CGEN_KEYWORD_ENTRY *ke; in print_keyword() local 369 ke = cgen_keyword_lookup_value (keyword_table, value); in print_keyword() 370 if (ke != NULL) in print_keyword() 371 (*info->fprintf_func) (info->stream, "%s", ke->name); in print_keyword()
|
| /netbsd-src/external/gpl3/binutils.old/dist/opcodes/ |
| H A D | cgen-opc.c | 46 const CGEN_KEYWORD_ENTRY *ke; in cgen_keyword_lookup_name() local 52 ke = kt->name_hash_table[hash_keyword_name (kt, name, 0)]; in cgen_keyword_lookup_name() 58 while (ke != NULL) in cgen_keyword_lookup_name() 61 p = ke->name; in cgen_keyword_lookup_name() 69 return ke; in cgen_keyword_lookup_name() 71 ke = ke->next_name; in cgen_keyword_lookup_name() 85 const CGEN_KEYWORD_ENTRY *ke; in cgen_keyword_lookup_value() local 90 ke = kt->value_hash_table[hash_keyword_value (kt, value)]; in cgen_keyword_lookup_value() 92 while (ke != NULL) in cgen_keyword_lookup_value() 94 if (value == ke->value) in cgen_keyword_lookup_value() [all …]
|
| H A D | cgen-asm.c | 201 const CGEN_KEYWORD_ENTRY *ke; in cgen_parse_keyword() local 236 ke = cgen_keyword_lookup_name (keyword_table, buf); in cgen_parse_keyword() 238 if (ke != NULL) in cgen_parse_keyword() 240 *valuep = ke->value; in cgen_parse_keyword() 242 if (ke->name[0] != 0) in cgen_parse_keyword()
|
| H A D | ip2k-dis.c | 72 const CGEN_KEYWORD_ENTRY *ke; in print_fr() local 107 ke = cgen_keyword_lookup_value (& ip2k_cgen_opval_register_names, value); in print_fr() 109 if (ke != NULL) in print_fr() 110 (*info->fprintf_func) (info->stream, "%s", ke->name); in print_fr() 367 const CGEN_KEYWORD_ENTRY *ke; in print_keyword() local 369 ke = cgen_keyword_lookup_value (keyword_table, value); in print_keyword() 370 if (ke != NULL) in print_keyword() 371 (*info->fprintf_func) (info->stream, "%s", ke->name); in print_keyword()
|
| /netbsd-src/sys/dist/pf/net/ |
| H A D | pf_table.c | 99 #define KENTRY_NETWORK(ke) ((ke)->pfrke_net < AF_BITS((ke)->pfrke_af)) argument 100 #define KENTRY_RNF_ROOT(ke) \ argument 101 ((((struct radix_node *)(ke))->rn_flags & RNF_ROOT) != 0) 145 struct pfr_kentry *ke); 806 struct pfr_kentry *ke; in pfr_lookup_addr() local 820 ke = (struct pfr_kentry *)rn_lookup(&sa, &mask, head); in pfr_lookup_addr() 822 if (ke && KENTRY_RNF_ROOT(ke)) in pfr_lookup_addr() 823 ke = NULL; in pfr_lookup_addr() 825 ke = (struct pfr_kentry *)rn_match(&sa, head); in pfr_lookup_addr() 826 if (ke && KENTRY_RNF_ROOT(ke)) in pfr_lookup_addr() [all …]
|
| /netbsd-src/tests/kernel/kqueue/ |
| H A D | t_proc3.c | 61 struct kevent ke; in ATF_TC_BODY() local 66 EV_SET(&ke, (uintptr_t)getpid(), EVFILT_PROC, EV_ADD, NOTE_TRACK, 0, 0); in ATF_TC_BODY() 68 RL(kevent(kq, &ke, 1, NULL, 0, NULL)); in ATF_TC_BODY() 82 ke.ident = 0; in ATF_TC_BODY() 83 ke.fflags = 0; in ATF_TC_BODY() 84 ke.flags = EV_ENABLE; in ATF_TC_BODY() 86 RL(kevent(kq, NULL, 0, &ke, 1, &timeout)); in ATF_TC_BODY() 89 ATF_REQUIRE(ke.fflags & NOTE_CHILD); in ATF_TC_BODY() 90 ATF_REQUIRE((ke.fflags & NOTE_TRACKERR) == 0); in ATF_TC_BODY() 91 ATF_REQUIRE_EQ((pid_t)ke.ident, pid); in ATF_TC_BODY()
|
| H A D | t_proc2.c | 94 struct kevent ke; in ATF_TC_BODY() local 109 EV_SET(&ke, (uintptr_t)pid, EVFILT_PROC, EV_ADD, NOTE_FORK|NOTE_TRACK, in ATF_TC_BODY() 112 RL(kevent(kq, &ke, 1, NULL, 0, &timeout)); in ATF_TC_BODY() 116 ke.ident = 0; in ATF_TC_BODY() 117 ke.fflags = 0; in ATF_TC_BODY() 118 ke.flags = EV_ENABLE; in ATF_TC_BODY() 120 RL(kevent(kq, NULL, 0, &ke, 1, &timeout)); in ATF_TC_BODY() 131 ATF_REQUIRE(ke.fflags & NOTE_TRACKERR); in ATF_TC_BODY()
|
| /netbsd-src/crypto/external/bsd/heimdal/dist/lib/krb5/ |
| H A D | crypto-arcfour.c | 135 struct _krb5_key_data ke; in ARCFOUR_subencrypt() local 159 ke.key = &kb; in ARCFOUR_subencrypt() 165 ret = _krb5_internal_hmac(context, c, cdata + 16, len - 16, 0, &ke, &cksum); in ARCFOUR_subencrypt() 169 ke.key = &kb; in ARCFOUR_subencrypt() 175 ret = _krb5_internal_hmac(context, c, data, 16, 0, &ke, &k3_c); in ARCFOUR_subencrypt() 213 struct _krb5_key_data ke; in ARCFOUR_subdecrypt() local 238 ke.key = &kb; in ARCFOUR_subdecrypt() 244 ret = _krb5_internal_hmac(context, c, cdata, 16, 0, &ke, &k3_c); in ARCFOUR_subdecrypt() 264 ke.key = &kb; in ARCFOUR_subdecrypt() 270 ret = _krb5_internal_hmac(context, c, cdata + 16, len - 16, 0, &ke, &cksum); in ARCFOUR_subdecrypt()
|
| /netbsd-src/external/bsd/dhcpcd/dist/src/ |
| H A D | eloop.c | 320 struct kevent ke[2], *kep = &ke[0]; in eloop_event_add() local 381 if (n != 0 && _kevent(eloop->fd, ke, n, NULL, 0, NULL) == -1) { in eloop_event_add() 419 struct kevent ke[2], *kep = &ke[0]; in eloop_event_delete() local 448 if (n != 0 && _kevent(eloop->fd, ke, n, NULL, 0, NULL) == -1) in eloop_event_delete() 783 struct kevent *ke, *kes; in eloop_signal_set_cb() local 790 ke = kes = malloc(MAX(eloop->nsignals, nsignals) * sizeof(*kes)); in eloop_signal_set_cb() 794 EV_SET(ke++, (uintptr_t)eloop->signals[i], in eloop_signal_set_cb() 811 ke = kes; in eloop_signal_set_cb() 813 EV_SET(ke++, (uintptr_t)eloop->signals[i], in eloop_signal_set_cb() 979 struct kevent *ke; in eloop_run_kqueue() local [all …]
|
| /netbsd-src/external/bsd/nvi/dist/cl/ |
| H A D | cl_bsd.c | 38 static char *ke; /* Keypad on. */ variable 185 if (ke != NULL) 186 free(ke); 187 ke = ((p = tigetstr("rmkx")) == (char *)-1) ?
|
| /netbsd-src/external/public-domain/sqlite/dist/tea/win/ |
| H A D | nmakehlp.c | 628 unsigned char *ks, *ke, *vs, *ve; in SubstituteFile() local 631 ke = ks; in SubstituteFile() 632 while (ke && *ke && !isspace(*ke)) ++ke; in SubstituteFile() 633 vs = ke; in SubstituteFile() 637 *ke = 0, *ve = 0; in SubstituteFile()
|
| /netbsd-src/external/gpl2/gettext/dist/gettext-tools/misc/ |
| H A D | ChangeLog | 452 2002-10-25 Karl Eichwalder <ke@suse.de> 462 2002-09-27 Karl Eichwalder <ke@suse.de> 589 2002-04-29 Karl Eichwalder <ke@suse.de> 599 2002-04-27 Karl Eichwalder <ke@suse.de> 616 2002-03-17 Karl Eichwalder <ke@suse.de> 634 2002-03-14 Karl Eichwalder <ke@suse.de> 642 2002-03-11 Karl Eichwalder <ke@suse.de> 649 2002-03-09 Karl Eichwalder <ke@suse.de> 656 2002-02-18 Karl Eichwalder <ke@suse.de> 665 2002-02-11 Karl Eichwalder <ke@suse.de> [all …]
|
| /netbsd-src/external/gpl2/gettext/dist/gettext-tools/po/ |
| H A D | ChangeLog | 71 * de.po: Update from Karl Eichwalder <ke@suse.de>. 109 * de.po: Update from Karl Eichwalder <ke@suse.de>. 207 * de.po: Update from Karl Eichwalder <ke@suse.de>. 231 * de.po: Downgrade to old orthography from Karl Eichwalder <ke@suse.de>. 264 * de.po: Update from Karl Eichwalder <ke@suse.de>. 277 * de.po: Update from Karl Eichwalder <ke@suse.de>. 301 * de.po: Update from Karl Eichwalder <ke@suse.de>. 342 * de.po: Update from Karl Eichwalder <ke@suse.de>. 412 * de.po: Update from Karl Eichwalder <ke@suse.de>. 416 * de.po: Update from Karl Eichwalder <ke@suse.de>. [all …]
|
| /netbsd-src/external/gpl2/gettext/dist/gettext-tools/examples/hello-csharp-forms/po/ |
| H A D | de.po | 5 # Karl Eichwalder <ke@gnu.franken.de>, 2003. 12 "Last-Translator: Karl Eichwalder <ke@gnu.franken.de>\n"
|
| /netbsd-src/external/gpl2/gettext/dist/gettext-tools/examples/hello-java-awt/po/ |
| H A D | de.po | 5 # Karl Eichwalder <ke@gnu.franken.de>, 2003. 12 "Last-Translator: Karl Eichwalder <ke@gnu.franken.de>\n"
|
| /netbsd-src/external/gpl2/gettext/dist/gettext-tools/examples/hello-c++-qt/po/ |
| H A D | de.po | 5 # Karl Eichwalder <ke@gnu.franken.de>, 2003. 12 "Last-Translator: Karl Eichwalder <ke@gnu.franken.de>\n"
|
| /netbsd-src/external/gpl2/gettext/dist/gettext-tools/examples/hello-smalltalk/po/ |
| H A D | de.po | 5 # Karl Eichwalder <ke@gnu.franken.de>, 2003. 12 "Last-Translator: Karl Eichwalder <ke@gnu.franken.de>\n"
|
| /netbsd-src/external/gpl2/gettext/dist/gettext-tools/examples/hello-php/po/ |
| H A D | de.po | 5 # Karl Eichwalder <ke@gnu.franken.de>, 2003. 12 "Last-Translator: Karl Eichwalder <ke@gnu.franken.de>\n"
|
| /netbsd-src/external/gpl2/gettext/dist/gettext-tools/examples/hello-librep/po/ |
| H A D | de.po | 5 # Karl Eichwalder <ke@gnu.franken.de>, 2003. 12 "Last-Translator: Karl Eichwalder <ke@gnu.franken.de>\n"
|
| /netbsd-src/external/gpl2/gettext/dist/gettext-tools/examples/hello-c-gnome/po/ |
| H A D | de.po | 5 # Karl Eichwalder <ke@gnu.franken.de>, 2003. 12 "Last-Translator: Karl Eichwalder <ke@gnu.franken.de>\n"
|