| /lib/efi_loader/ |
| A D | efi_boottime.c | 601 *handler = protocol; in efi_search_protocol() 1193 if (!guidcmp(protocol, &event->protocol)) { in efi_add_protocol() 1238 if (!handle || !protocol || in efi_install_protocol_interface() 1282 if (protocol && guidcmp(&handler->guid, protocol)) in efi_get_drivers() 1304 if (protocol && guidcmp(&handler->guid, protocol)) in efi_get_drivers() 1501 guidcpy(&item->protocol, protocol); in efi_register_protocol_notify() 1597 if (!protocol) in efi_locate_handle() 2651 if (guidcmp(&event->protocol, protocol)) in efi_locate_protocol() 2707 if (!protocol) in efi_install_multiple_protocol_interfaces_int() 2840 if (!protocol) in efi_uninstall_multiple_protocol_interfaces_int() [all …]
|
| A D | Kconfig | 373 menu "UEFI protocol support" 376 bool "Device path to text protocol" 379 The device path to text protocol converts device nodes and paths to 383 bool "Device path utilities protocol" 386 The device path utilities protocol creates and manipulates device 390 bool "Device tree fixup protocol" 394 The EFI device-tree fix-up protocol provides a function to let the 409 bool "Unicode collation protocol" 455 measured using the EFI TCG2 protocol. Do not enable this feature if 466 as initial RAM disk, a Linux specific Load File2 protocol will be [all …]
|
| A D | efi_net.c | 599 struct efi_mac_address *dest_addr, u16 *protocol) in efi_net_transmit() argument 606 buffer, src_addr, dest_addr, protocol); in efi_net_transmit() 638 if (!dest_addr || !protocol || in efi_net_transmit() 648 header->et_protlen = htons(*protocol); in efi_net_transmit() 694 struct efi_mac_address *dest_addr, u16 *protocol) in efi_net_receive() argument 703 buffer_size, buffer, src_addr, dest_addr, protocol); in efi_net_receive() 744 if (protocol) in efi_net_receive() 745 *protocol = protlen; in efi_net_receive()
|
| /lib/lwip/lwip/src/netif/ppp/ |
| A D | ppp.c | 585 protocol = PPP_COMP; in ppp_netif_output() 780 u16_t protocol; in ppp_input() local 820 || protocol == PPP_LQR in ppp_input() 823 || protocol == PPP_PAP in ppp_input() 826 || protocol == PPP_CHAP in ppp_input() 829 || protocol == PPP_EAP in ppp_input() 844 if (pcb->settings.require_mppe && protocol != PPP_COMP && protocol < 0x8000) { in ppp_input() 874 protocol = pl[0]; in ppp_input() 883 switch (protocol) { in ppp_input() 937 if (protp->protocol == protocol) { in ppp_input() [all …]
|
| A D | mppe.c | 193 mppe_compress(ppp_pcb *pcb, ppp_mppe_state *state, struct pbuf **pb, u16_t protocol) in mppe_compress() argument 204 np = pbuf_alloc(PBUF_RAW, MPPE_OVHD + sizeof(protocol) + (*pb)->tot_len, PBUF_RAM); in mppe_compress() 210 pbuf_remove_header(np, MPPE_OVHD + sizeof(protocol)); in mppe_compress() 218 pbuf_add_header(np, MPPE_OVHD + sizeof(protocol)); in mppe_compress() 245 pl[0] = protocol >> 8; in mppe_compress() 246 pl[1] = protocol; in mppe_compress()
|
| A D | demand.c | 135 sifnpmode(pcb, protp->protocol & ~0x8000, NPMODE_QUEUE); in demand_block() 152 sifnpmode(pcb, protp->protocol & ~0x8000, NPMODE_ERROR); in demand_discard() 178 sifnpmode(pcb, protp->protocol & ~0x8000, NPMODE_PASS); in demand_unblock() 456 if (protp->protocol < 0xC000 && (protp->protocol & ~0x8000) == proto) {
|
| A D | auth.c | 753 if (protp->protocol != PPP_LCP in link_established() 947 || protp->protocol == PPP_ECP in start_networks() 950 || protp->protocol == PPP_CCP in start_networks() 979 if (protp->protocol < 0xC000 in continue_networks() 981 && protp->protocol != PPP_CCP in continue_networks() 984 && protp->protocol != PPP_ECP in continue_networks() 1031 void auth_peer_fail(ppp_pcb *pcb, int protocol) { in auth_peer_fail() argument 1032 LWIP_UNUSED_ARG(protocol); in auth_peer_fail() 1054 switch (protocol) { in auth_peer_success() 1119 LWIP_UNUSED_ARG(protocol); in auth_withpeer_fail() [all …]
|
| A D | fsm.c | 329 FSMDEBUG(("fsm_input(%x): Rcvd short header.", f->protocol)); in fsm_input() 336 FSMDEBUG(("fsm_input(%x): Rcvd illegal length.", f->protocol)); in fsm_input() 340 FSMDEBUG(("fsm_input(%x): Rcvd short packet.", f->protocol)); in fsm_input() 347 f->protocol, f->state)); in fsm_input() 748 MAKEHEADER(outp, f->protocol); in fsm_sconfreq() 792 MAKEHEADER(outp, f->protocol); in fsm_sdata()
|
| A D | pppos.c | 59 static err_t pppos_netif_output(ppp_pcb *ppp, void *ctx, struct pbuf *pb, u16_t protocol); 254 pppos_netif_output(ppp_pcb *ppp, void *ctx, struct pbuf *pb, u16_t protocol) in pppos_netif_output() argument 290 if (!pppos->pcomp || protocol > 0xFF) { in pppos_netif_output() 291 err = pppos_output_append(pppos, err, nb, (protocol >> 8) & 0xFF, 1, &fcs_out); in pppos_netif_output() 293 err = pppos_output_append(pppos, err, nb, protocol & 0xFF, 1, &fcs_out); in pppos_netif_output() 307 … ("pppos_netif_output[%d]: proto=0x%"X16_F", len = %d\n", ppp->netif->num, protocol, pb->tot_len)); in pppos_netif_output() 309 …_output[%d]: output failed proto=0x%"X16_F", len = %d\n", ppp->netif->num, protocol, pb->tot_len)); in pppos_netif_output()
|
| A D | ecp.c | 165 f->protocol = PPP_ECP;
|
| /lib/efi_driver/ |
| A D | efi_uclass.c | 86 controller_handle, bp->ops->protocol, in efi_uc_supported() 102 r = efi_close_protocol(controller_handle, bp->ops->protocol, in efi_uc_supported() 134 controller_handle, bp->ops->protocol, in efi_uc_start() 155 r = efi_close_protocol(controller_handle, bp->ops->protocol, in efi_uc_start() 235 controller_handle, bp->ops->protocol, in efi_uc_stop() 254 ret = efi_close_protocol(controller_handle, bp->ops->protocol, in efi_uc_stop() 274 if (!ops->protocol) { in efi_add_driver()
|
| /lib/lwip/lwip/contrib/apps/LwipMibCompiler/Mibs/ |
| A D | SNMPv2-MIB | 655 passed from the SNMP protocol entity to the 667 delivered to the SNMP protocol entity and for 680 delivered to the SNMP protocol entity and for 691 delivered to the SNMP protocol entity and for 730 retrieved successfully by the SNMP protocol entity 752 protocol entity." 845 have been generated by the SNMP protocol entity." 854 been generated by the SNMP protocol entity." 863 have been generated by the SNMP protocol entity." 872 have been generated by the SNMP protocol entity." [all …]
|
| A D | SNMPv2-TC | 120 instance. If not, the management protocol set operation 126 management protocol set operation succeeds, the variable- 132 any value may be supplied via the management protocol. 148 protocol or hardware." 410 response to the management protocol set operation, the 438 the management station issues a management protocol get 463 management protocol set operations to create an 475 management protocol set operation which creates the 487 protocol retrieval operation to determine if this was 573 management protocol set operations to create an [all …]
|
| A D | RFC1213-MIB | 326 the network layer in the protocol stack." 422 delivered to a higher-layer protocol." 432 delivered to a higher-layer protocol." 455 higher-layer protocol." 465 unsupported protocol." 689 by the transport layer protocol." 752 unknown or unsupported protocol." 1047 management protocol in use." 2469 protocol entity." 2489 protocol entity." [all …]
|
| A D | INET-ADDRESS-MIB | 305 layer protocol. Port numbers are assigned by IANA. A 324 protocol and common metrics to route packets within the AS, 325 and using an exterior gateway protocol to route packets to 400 "A value representing a version of the IP protocol. 403 protocol. 407 ipv4(1) The IPv4 protocol as defined in RFC 791 (STD 5). 409 ipv6(2) The IPv6 protocol as defined in RFC 2460.
|
| /lib/lwip/lwip/src/include/netif/ppp/ |
| A D | ppp_impl.h | 159 err_t (*netif_output)(ppp_pcb *pcb, void *ctx, struct pbuf *p, u_short protocol); 284 u_short protocol; /* PPP protocol number */ member 566 void auth_peer_fail(ppp_pcb *pcb, int protocol); 568 void auth_peer_success(ppp_pcb *pcb, int protocol, int prot_flavor, const char *name, int namelen); 571 void auth_withpeer_fail(ppp_pcb *pcb, int protocol); 573 void auth_withpeer_success(ppp_pcb *pcb, int protocol, int prot_flavor);
|
| A D | fsm.h | 84 u16_t protocol; /* Data Link Layer Protocol field value */ member
|
| /lib/lwip/lwip/ |
| A D | README | 3 lwIP is a small independent implementation of the TCP/IP protocol suite. 33 TCP-based protocol (ported to mbedTLS) (see changelog for more info) 34 * PPPoS and PPPoE (Point-to-point protocol over Serial/Ethernet) 43 * SNTP (Simple network time protocol)
|
| /lib/lwip/lwip/src/core/ |
| A D | raw.c | 167 if ((pcb->protocol == proto) && raw_input_local_match(pcb, broadcast) && in raw_input() 513 …u16_t chksum = ip6_chksum_pseudo(p, pcb->protocol, p->tot_len, ip_2_ip6(src_ip), ip_2_ip6(dst_ip)); in raw_sendto_if_src() 527 err = ip_output_if(q, src_ip, dst_ip, ttl, pcb->tos, pcb->protocol, netif); in raw_sendto_if_src() 608 pcb->protocol = proto; in raw_new()
|
| /lib/lwip/lwip/contrib/apps/LwipMibCompiler/Mibs/IANA/ |
| A D | IANA-RTPROTO-MIB | 72 "The multicast routing protocol. Inclusion of values for 78 netmgmt(3), -- set via net.mgmt protocol
|
| /lib/lwip/lwip/src/ |
| A D | FILES | 7 core/ - The core of the TPC/IP stack; protocol implementations,
|
| /lib/lwip/lwip/src/netif/ |
| A D | FILES | 17 protocol. It requires a sio (serial I/O) module to work.
|
| /lib/efi_selftest/ |
| A D | efi_selftest_controllers.c | 42 efi_guid_t *protocol, in count_child_controllers() argument 50 ret = boottime->open_protocol_information(handle, protocol, in count_child_controllers()
|
| /lib/lwip/lwip/src/include/lwip/ |
| A D | sockets.h | 615 int lwip_socket(int domain, int type, int protocol); 665 #define socket(domain,type,protocol) lwip_socket(domain,type,protocol) argument
|
| A D | raw.h | 81 u8_t protocol; member
|