/external/syslinux/core/lwip/src/include/lwip/ |
tcp_impl.h | 314 union tcp_listen_pcbs_t { /* List of all TCP PCBs in LISTEN state. */ 316 struct tcp_pcb *pcbs; member in union:tcp_listen_pcbs_t 320 extern struct tcp_pcb *tcp_active_pcbs; /* List of all TCP PCBs that are in a 323 extern struct tcp_pcb *tcp_tw_pcbs; /* List of all TCP PCBs in TIME-WAIT. */ 330 3) All PCBs in the tcp_listen_pcbs list is in LISTEN state. 331 4) All PCBs in the tcp_tw_pcbs list is in TIME-WAIT state. 339 #define TCP_REG(pcbs, npcb) do {\ 341 for(tcp_tmp_pcb = *(pcbs); \ 346 LWIP_ASSERT("TCP_REG: pcb->state != CLOSED", ((pcbs) == &tcp_bound_pcbs) || ((npcb)->state != CLOSED)); \ 347 (npcb)->next = *(pcbs); \ [all...] |
tcp.h | 162 /* the accept callback for listen- and normal pcbs, if LWIP_CALLBACK_API */ \
|
opt.h | 230 * MEMP_NUM_RAW_PCB: Number of raw connection PCBs [all...] |
/external/syslinux/core/lwip/src/core/ |
raw.c | 3 * Implementation of raw protocol PCBs for low-level handling of 55 /** The list of RAW PCBs */ 90 /* loop through all raw pcbs until the packet is eaten by one */ 91 /* this allows multiple pcbs to match against the packet by design */ 175 * packet will not be passed to other raw PCBs or other protocol layers. 177 * against further PCBs and/or forwarded to another protocol layers.
|
tcp.c | 81 /** List of all TCP PCBs bound but not yet (connected || listening) */ 83 /** List of all TCP PCBs in LISTEN state */ 85 /** List of all TCP PCBs that are in a state in which 88 /** List of all TCP PCBs in TIME-WAIT state */ 94 struct tcp_pcb ** const tcp_pcb_lists[] = {&tcp_listen_pcbs.pcbs, &tcp_bound_pcbs, 126 * Listening pcbs are freed and may not be referenced any more. 127 * Connection pcbs are freed if not yet connected and may not be referenced 184 tcp_pcb_remove(&tcp_listen_pcbs.pcbs, pcb); 240 * Listening pcbs are freed and may not be referenced any more. 241 * Connection pcbs are freed if not yet connected and may not be reference [all...] |
udp.c | 67 /* The list of UDP PCBs */ 75 * finds a corresponding UDP PCB and hands over the pbuf to the pcbs 159 * 'Perfect match' pcbs (connected to the remote port & ip address) are 282 /* pass broadcast- or multicast packets to all multicast pcbs 722 PCB is alread bound to, unless *all* PCBs with that port have tha 760 /* restart scanning all udp pcbs */ 845 /* Insert UDP PCB into the list of active UDP PCBs. */ [all...] |
timers.c | 96 * there are active (or time-wait) PCBs.
|
netif.c | 321 /* TODO: Handling of obsolete pcbs */
|
tcp_in.c | 84 * the segment between the PCBs and passes it on to tcp_process(), which implements 225 /* Finally, if we still did not get a match, we check all PCBs that [all...] |
/external/mesa3d/src/gallium/drivers/ilo/core/ |
ilo_state_urb.h | 49 * URB entry allocation sizes and sizes of constant data extracted from PCBs
|
/external/walt/hardware/ |
README.md | 24 * Blank PCBs can be ordered directly via [this shared project on OSH Park](https://oshpark.com/shared_projects/M5Z8fYCX)
|
/external/syslinux/core/lwip/src/api/ |
api_lib.c | 62 * @param proto the IP protocol for RAW IP pcbs 96 * UDP and RAW connection are completely closed, TCP pcbs might still be in a waitstate
|
api_msg.c | 238 /* Unlike for UDP or RAW pcbs, don't check for available space 558 * @param proto the IP protocol for RAW IP pcbs 707 /* Only tcp pcbs have an acceptmbox, so no need to check conn->type */ [all...] |
/external/syslinux/core/lwip/ |
CHANGELOG | 255 pcbs) by checking if the pcb was bound (local_port != 0). 262 raw pcbs with LWIP_TCPIP_CORE_LOCKING==1. 353 * tcp.c: Fixed bug #30728: tcp_new_port() did not check listen pcbs [all...] |
/external/syslinux/core/lwip/src/core/snmp/ |
msg_out.c | 175 /** @todo do we need separate rx and tx pcbs for threaded case? */
|
mib2.c | [all...] |
/external/libese/libese-teq1/tests/ |
teq1_unittests.cpp | 63 /* The PCBs above are all valid for a sent unchained I block with advancing
|