Home
last modified time | relevance | path

Searched refs:udp_pcbs (Results 1 – 5 of 5) sorted by relevance

/third_party/lwip/src/core/
Dudp.c81 struct udp_pcb *udp_pcbs; variable
121 for (pcb = udp_pcbs; pcb != NULL; pcb = pcb->next) { in udp_new_port()
267 for (pcb = udp_pcbs; pcb != NULL; pcb = pcb->next) {
315 pcb->next = udp_pcbs;
316 udp_pcbs = pcb;
401 for (mpcb = udp_pcbs; mpcb != NULL; mpcb = mpcb->next) {
1005 for (ipcb = udp_pcbs; ipcb != NULL; ipcb = ipcb->next) {
1034 for (ipcb = udp_pcbs; ipcb != NULL; ipcb = ipcb->next) {
1074 pcb->next = udp_pcbs;
1075 udp_pcbs = pcb;
[all …]
/third_party/lwip/
D0064-fix-udp-send-recv-in-multiple-queue.patch48 +PER_THREAD struct udp_pcb *udp_pcbs;
50 struct udp_pcb *udp_pcbs;
158 /* udp_pcbs export for external reference (e.g. SNMP agent) */
160 +extern PER_THREAD struct udp_pcb *udp_pcbs;
162 extern struct udp_pcb *udp_pcbs;
/third_party/lwip/src/apps/snmp/
Dsnmp_mib2_udp.c148 pcb = udp_pcbs; in udp_endpointTable_get_cell_value()
181 pcb = udp_pcbs; in udp_endpointTable_get_next_cell_instance_and_value()
263 pcb = udp_pcbs; in udp_Table_get_cell_value()
289 pcb = udp_pcbs; in udp_Table_get_next_cell_instance_and_value()
/third_party/lwip/src/include/lwip/
Dudp.h115 extern struct udp_pcb *udp_pcbs;
/third_party/lwip/test/unit/udp/
Dtest_udp.c26 struct udp_pcb *pcb = udp_pcbs; in udp_remove_all()