/src/sys/netipsec/ |
esp.h | 1 /* $NetBSD: esp.h,v 1.4 2018/04/19 08:27:38 maxv Exp $ */ 2 /* $FreeBSD: esp.h,v 1.1.4.1 2003/01/24 05:11:35 sam Exp $ */ 3 /* $KAME: esp.h,v 1.16 2000/10/18 21:28:00 itojun Exp $ */ 41 struct esp { struct 42 u_int32_t esp_spi; /* ESP */ 53 u_int32_t esp_spi; /* ESP */
|
ipsec_netbsd.c | 73 #include <netipsec/esp.h> 129 /* assumes that ip header and esp header are contiguous on mbuf */ 134 struct esp *esp; local in function:esp4_ctlinput 149 esp = (struct esp *)((char *)ip + (ip->ip_hl << 2)); 151 IPPROTO_ESP, esp->esp_spi, 0, 0); 256 struct newesp esp; local in function:esp6_ctlinput 300 if (m->m_pkthdr.len < off + sizeof(esp)) 303 if (m->m_len < off + sizeof(esp)) { [all...] |
xform_esp.c | 73 #include <netipsec/esp.h> 149 * + sizeof(esp trailer) 153 size = sizeof(struct esp); 167 * + sizeof(esp trailer) 298 * ESP input processing, called (eventually) through the protocol switch. 307 struct newesp *esp; local in function:esp_input 322 M_REGION_GET(esp, struct newesp *, m, skip, sizeof(struct newesp)); 323 if (esp == NULL) { 332 /* Determine the ESP header length */ 334 hlen = sizeof(struct esp) + sav->ivlen [all...] |
/src/sys/arch/amiga/amiga/ |
pmap_bootstrap.c | 112 struct boot_memseg *sp, *esp; local in function:pmap_bootstrap 136 esp = sp + memlist->m_nseg; 138 for (; noncontig_enable && sp < esp; sp++) {
|
amiga_init.c | 292 struct boot_memseg *sp, *esp; local in function:start_c 295 esp = sp + ml->m_nseg; 296 for (; sp < esp; sp++) {
|
/src/sbin/iscsictl/ |
iscsic_driverif.c | 369 char *esp; local in function:do_ioctl 383 snprintf(esp = es, sizeof(es), "Recovered Error"); 386 snprintf(esp = es, sizeof(es), "Not Ready"); 389 snprintf(esp = es, sizeof(es), "Medium Error"); 392 snprintf(esp = es, sizeof(es), "Hardware Error"); 395 snprintf(esp = es, sizeof(es), "Illegal Request"); 398 snprintf(esp = es, sizeof(es), "Unit Attention"); 401 snprintf(esp = es, sizeof(es), "Data Protect"); 404 snprintf(esp = es, sizeof(es), "Blank Check"); 407 snprintf(esp = (char *)&buf[256], sizeof(buf) - 256, "Sense key 0x%x" [all...] |
/src/sys/dev/pci/ |
if_epic_pci.c | 129 const struct epic_pci_subsys_info *esp; local in function:epic_pci_subsys_lookup 133 for (esp = epic_pci_subsys_info; esp->subsysid != 0xffffffff; esp++) 134 if (esp->subsysid == reg) 135 return esp; 161 const struct epic_pci_subsys_info *esp; local in function:epic_pci_attach 232 esp = epic_pci_subsys_lookup(pa); 233 if (esp) 234 sc->sc_hwflags = esp->flags [all...] |
/src/sys/compat/linux/arch/i386/ |
linux_ptrace.c | 73 long esp; member in struct:linux_reg 104 always found in the esp register. */ 239 linux_regs->esp = regs->r_esp; 259 regs->r_esp = linux_regs->esp;
|
/src/sys/external/mit/xen-include-public/dist/xen/include/public/hvm/ |
hvm_vcpu.h | 33 uint32_t esp; member in struct:vcpu_hvm_x86_32
|
/src/sys/external/bsd/gnu-efi/dist/inc/ia64/ |
salproc.h | 51 UINT32 esp; member in struct:tagIA32_BIOS_REGISTER_STATE
|
/src/sbin/nvmectl/ |
logpage.c | 548 uint8_t *wsp, *esp; local in function:print_hgst_info_subpage_gen 555 esp = wsp + size; 556 while (wsp < esp) {
|