| /netbsd-src/sys/kern/ |
| H A D | exec_ecoff.c | 154 struct ecoff_aouthdr *eap = &execp->a; in exec_ecoff_prep_omagic() 156 epp->ep_taddr = ECOFF_SEGMENT_ALIGN(execp, eap->text_start); in exec_ecoff_prep_omagic() 157 epp->ep_tsize = eap->tsize; in exec_ecoff_prep_omagic() 158 epp->ep_daddr = ECOFF_SEGMENT_ALIGN(execp, eap->data_start); in exec_ecoff_prep_omagic() 159 epp->ep_dsize = eap->dsize + eap->bsize; in exec_ecoff_prep_omagic() 160 epp->ep_entry = eap->entry; in exec_ecoff_prep_omagic() 164 eap->tsize + eap->dsize, epp->ep_taddr, vp, in exec_ecoff_prep_omagic() 169 if (eap in exec_ecoff_prep_omagic() 151 struct ecoff_aouthdr *eap = &execp->a; exec_ecoff_prep_omagic() local 182 struct ecoff_aouthdr *eap = &execp->a; exec_ecoff_prep_nmagic() local 222 struct ecoff_aouthdr *eap = &execp->a; exec_ecoff_prep_zmagic() local [all...] |
| /netbsd-src/sys/ufs/ufs/ |
| H A D | extattr.h | 98 #define EXTATTR_NEXT(eap) \ argument 99 ((struct extattr *)(((u_char *)(eap)) + (eap)->ea_length)) 100 #define EXTATTR_CONTENT(eap) \ argument 101 (void *)(((u_char *)(eap)) + EXTATTR_BASE_LENGTH(eap)) 102 #define EXTATTR_CONTENT_SIZE(eap) \ argument 103 ((eap)->ea_length - EXTATTR_BASE_LENGTH(eap) - (eap)->ea_contentpadlen) 105 #define EXTATTR_BASE_LENGTH(eap) \ argument 106 roundup2((sizeof(struct extattr) - 1 + (eap)->ea_namelength), 8)
|
| /netbsd-src/sys/ufs/ffs/ |
| H A D | ffs_extattr.c | 385 struct extattr *eap, *eaend; in ffs_findextattr() local 390 eap = (struct extattr *)ptr; in ffs_findextattr() 392 for (; eap < eaend; eap = EXTATTR_NEXT(eap)) { in ffs_findextattr() 394 if (EXTATTR_NEXT(eap) > eaend) in ffs_findextattr() 396 if (eap->ea_namespace != nspace || eap->ea_namelength != nlen in ffs_findextattr() 397 || memcmp(eap->ea_name, name, nlen) != 0) in ffs_findextattr() 400 *eapp = eap; in ffs_findextattr() 402 *eac = EXTATTR_CONTENT(eap); in ffs_findextattr() 403 return (EXTATTR_CONTENT_SIZE(eap)); in ffs_findextattr() 721 struct extattr *eap; in ffs_setextattr() local [all …]
|
| /netbsd-src/usr.sbin/bootp/bootptest/ |
| H A D | getether.c | 46 getether(char *ifname, char *eap) in getether() argument 61 bcopy(&phys.current_pa[0], eap, EALEN); in getether() 81 /* eap: Ether address (output) */ in getether() argument 82 getether(char *ifname, char *eap) in getether() 107 bcopy(&ifrnit.ifr_addr.sa_data[0], eap, EALEN); in getether() 127 /* eap: Ether address (output) */ in getether() argument 129 getether(char *ifname, char *eap) in getether() 158 bcopy(LLADDR((struct sockaddr_dl *) &ifrp->ifr_addr), eap, EALEN); in getether() 193 /* eap: Ether address (output) */ in getether() 194 getether(char *ifname, char *eap) in getether() 191 getether(char * ifname,char * eap) getether() argument 342 getether(char * ifname,char * eap) getether() argument 370 getether(char * ifname,char * eap) getether() argument [all...] |
| /netbsd-src/external/bsd/wpa/dist/wpa_supplicant/wpa_gui-qt4/ |
| H A D | networkconfig.cpp | 114 bool eap = sel == AUTH_IEEE8021X || sel == AUTH_WPA_EAP || in authChanged() local 116 eapSelect->setEnabled(eap); in authChanged() 117 identityEdit->setEnabled(eap); in authChanged() 118 passwordEdit->setEnabled(eap); in authChanged() 119 cacertEdit->setEnabled(eap); in authChanged() 120 phase2Select->setEnabled(eap); in authChanged() 121 if (eap) in authChanged() 301 const char *eap = in addNetwork() local 303 setNetworkParam(id, "eap", eap, false); in addNetwork() 304 if (strcmp(eap, "SIM") == 0 || strcmp(eap, "AKA") == 0) in addNetwork() [all …]
|
| /netbsd-src/sbin/restore/ |
| H A D | tape.c | 836 struct extattr *eap, *eaend; in set_extattr() local 844 for (eap = buf; eap < eaend; eap = EXTATTR_NEXT(eap)) { in set_extattr() 848 if (EXTATTR_NEXT(eap) > eaend || eap->ea_length <= 0) { in set_extattr() 850 eap == buf ? "" : "remainder "); in set_extattr() 853 if (eap->ea_namespace == EXTATTR_NAMESPACE_EMPTY) in set_extattr() 856 (int)eap->ea_namelength, eap->ea_name); in set_extattr() 858 namespace_names[eap->ea_namespace], eap->ea_length, in set_extattr() 867 res = extattr_set_fd(fd, eap->ea_namespace, in set_extattr() 868 eaname, EXTATTR_CONTENT(eap), in set_extattr() 869 EXTATTR_CONTENT_SIZE(eap)); in set_extattr() [all …]
|
| /netbsd-src/libexec/utmp_update/ |
| H A D | utmp_update.c | 57 va_list sap, eap; in logerr() local 66 va_copy(eap, sap); in logerr() 69 verrx(1, fmt, eap); in logerr() 70 va_end(eap); in logerr()
|
| /netbsd-src/sys/dev/dec/ |
| H A D | if_le_dec.c | 127 dec_le_common_attach(struct am7990_softc *sc, uint8_t *eap) in dec_le_common_attach() argument 143 sc->lsc.sc_enaddr[i] = *eap; in dec_le_common_attach() 144 eap += 4; in dec_le_common_attach()
|
| /netbsd-src/usr.bin/getent/ |
| H A D | getent.c | 207 struct ether_addr ea, *eap; in ethers() local 213 #define ETHERSPRINT (void)printf("%-17s %s\n", ether_ntoa(eap), hp) in ethers() 221 if ((eap = ether_aton(argv[i])) == NULL) { in ethers() 222 eap = &ea; in ethers() 224 if (ether_hostton(hp, eap) != 0) { in ethers() 230 if (ether_ntohost(hp, eap) != 0) { in ethers()
|
| /netbsd-src/external/bsd/ppp/dist/ |
| H A D | README.eap-srp | 20 The SRP-SHA1 method is based on draft-ietf-pppext-eap-srp-03.txt, 40 ftp://playground.sun.com/carlsonj/eap/ppp-2.4.1-eap-1.tar.gz 106 refuse-eap - refuse to authenticate with EAP 123 require-eap - require client to use EAP
|
| /netbsd-src/external/bsd/wpa/dist/wpa_supplicant/examples/ |
| H A D | ieee8021x.conf | 8 eap=PEAP
|
| H A D | wpa2-eap-ccmp.conf | 11 eap=TLS
|
| H A D | openCryptoki.conf | 25 eap=TLS
|
| /netbsd-src/sys/rump/dev/lib/libpci_eap/ |
| H A D | PCI_EAP.ioconf | 11 eap* at pci?
|
| H A D | Makefile | 14 SRCS+= eap.c
|
| /netbsd-src/external/bsd/wpa/dist/src/eap_common/ |
| H A D | eap_sake_common.h | 91 int peer, const u8 *eap, size_t eap_len,
|
| /netbsd-src/external/bsd/wpa/dist/wpa_supplicant/ |
| H A D | todo.txt | 35 - rfc4284.txt (network selection for eap) 46 - consider moving SIM card functionality (IMSI fetching) away from eap.c;
|
| /netbsd-src/external/bsd/tcpdump/bin/ |
| H A D | Makefile | 61 print-eap.c \
|
| /netbsd-src/sys/arch/algor/conf/ |
| H A D | P4032 | 132 #eap* at pci? dev ? function ? # Ensoniq AudioPCI 174 #audio* at eap?
|
| H A D | P6032 | 120 #eap* at pci? dev ? function ? # Ensoniq AudioPCI 162 #audio* at eap?
|
| H A D | P5064 | 128 #eap* at pci? dev ? function ? # Ensoniq AudioPCI 170 #audio* at eap?
|
| /netbsd-src/doc/ |
| H A D | RESPONSIBLE | 148 eap pooka
|
| /netbsd-src/sys/dev/pci/ |
| H A D | files.pci | 478 device eap { }: audiobus, ac97, midibus 479 attach eap at pci 480 file dev/pci/eap.c eap 482 attach joy at eap with joy_eap
|
| /netbsd-src/sys/arch/cats/conf/ |
| H A D | INSTALL | 328 #eap* at pci? dev ? function ? # Ensoniq AudioPCI 332 #audio* at eap?
|
| /netbsd-src/share/man/man4/ |
| H A D | Makefile | 25 eap.4 ebus.4 edc.4 elmc.4 emuxki.4 ena.4 envsys.4 ep.4 \
|