Searched refs:sys_arch_mbox_fetch (Results 1 – 5 of 5) sorted by relevance
/third_party/lwip/src/include/lwip/ |
D | sys.h | 336 u32_t sys_arch_mbox_fetch(sys_mbox_t *mbox, void **msg, u32_t timeout); 370 #define sys_mbox_fetch(mbox, msg) sys_arch_mbox_fetch(mbox, msg, 0)
|
/third_party/lwip/src/api/ |
D | tcpip.c | 94 sys_arch_mbox_fetch(mbox, msg, 0); in tcpip_timeouts_mbox_fetch() 104 res = sys_arch_mbox_fetch(mbox, msg, sleeptime); in tcpip_timeouts_mbox_fetch()
|
D | api_lib.c | 510 … if (sys_arch_mbox_fetch(&conn->acceptmbox, &accept_ptr, conn->recv_timeout) == SYS_ARCH_TIMEOUT) { in netconn_accept() 516 sys_arch_mbox_fetch(&conn->acceptmbox, &accept_ptr, 0); in netconn_accept() 615 if (sys_arch_mbox_fetch(&conn->recvmbox, &buf, conn->recv_timeout) == SYS_ARCH_TIMEOUT) { in netconn_recv_data() 620 sys_arch_mbox_fetch(&conn->recvmbox, &buf, 0); in netconn_recv_data()
|
/third_party/lwip/test/unit/arch/ |
D | sys_arch.c | 293 sys_arch_mbox_fetch(sys_mbox_t *q, void **msg, u32_t timeout) in sys_arch_mbox_fetch() function
|
/third_party/lwip/ |
D | CHANGELOG | 132 * sys: deprecate sys_arch_sem_wait and sys_arch_mbox_fetch returning the 3614 used for LWIP_SO_RCVTIMEO option) and use sys_arch_mbox_fetch() instead of
|