| /src/sys/kern/ |
| exec_ecoff.c | 154 struct ecoff_aouthdr *eap = &execp->a; local 156 epp->ep_taddr = ECOFF_SEGMENT_ALIGN(execp, eap->text_start); 157 epp->ep_tsize = eap->tsize; 158 epp->ep_daddr = ECOFF_SEGMENT_ALIGN(execp, eap->data_start); 159 epp->ep_dsize = eap->dsize + eap->bsize; 160 epp->ep_entry = eap->entry; 164 eap->tsize + eap->dsize, epp->ep_taddr, vp, 169 if (eap->bsize > 0 185 struct ecoff_aouthdr *eap = &execp->a; local 225 struct ecoff_aouthdr *eap = &execp->a; local [all...] |
| /src/libexec/utmp_update/ |
| utmp_update.c | 57 va_list sap, eap; local 66 va_copy(eap, sap); 69 verrx(1, fmt, eap); 70 va_end(eap);
|
| /src/usr.sbin/bootp/bootptest/ |
| getether.c | 46 getether(char *ifname, char *eap) 61 bcopy(&phys.current_pa[0], eap, EALEN); 81 /* eap: Ether address (output) */ 82 getether(char *ifname, char *eap) 107 bcopy(&ifrnit.ifr_addr.sa_data[0], eap, EALEN); 127 /* eap: Ether address (output) */ 129 getether(char *ifname, char *eap) 158 bcopy(LLADDR((struct sockaddr_dl *) &ifrp->ifr_addr), eap, EALEN); 193 /* eap: Ether address (output) */ 194 getether(char *ifname, char *eap) 156 bcopy(LLADDR((struct sockaddr_dl *) &ifrp->ifr_addr), eap, EALEN); local [all...] |
| /src/sys/ufs/ffs/ |
| ffs_extattr.c | 385 struct extattr *eap, *eaend; local 390 eap = (struct extattr *)ptr; 392 for (; eap < eaend; eap = EXTATTR_NEXT(eap)) { 394 if (EXTATTR_NEXT(eap) > eaend) 396 if (eap->ea_namespace != nspace || eap->ea_namelength != nlen 397 || memcmp(eap->ea_name, name, nlen) != 0) 400 *eapp = eap; 721 struct extattr *eap; local 847 struct extattr *eap, *eaend; local 911 struct extattr *eap; local 959 bcopy(EXTATTR_NEXT(eap), eap, easize - i); local [all...] |
| /src/usr.bin/getent/ |
| getent.c | 207 struct ether_addr ea, *eap; local 213 #define ETHERSPRINT (void)printf("%-17s %s\n", ether_ntoa(eap), hp) 221 if ((eap = ether_aton(argv[i])) == NULL) { 222 eap = &ea; 224 if (ether_hostton(hp, eap) != 0) { 230 if (ether_ntohost(hp, eap) != 0) {
|
| /src/sbin/restore/ |
| tape.c | 837 struct extattr *eap, *eaend; local 845 for (eap = buf; eap < eaend; eap = EXTATTR_NEXT(eap)) { 849 if (EXTATTR_NEXT(eap) > eaend || eap->ea_length <= 0) { 851 eap == buf ? "" : "remainder "); 854 if (eap->ea_namespace == EXTATTR_NAMESPACE_EMPTY) 857 (int)eap->ea_namelength, eap->ea_name) [all...] |