Home
last modified time | relevance | path

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

/third_party/lwip/src/include/lwip/
Dsys.h336 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/
Dtcpip.c94 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()
Dapi_lib.c510 … 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/
Dsys_arch.c293 sys_arch_mbox_fetch(sys_mbox_t *q, void **msg, u32_t timeout) in sys_arch_mbox_fetch() function
/third_party/lwip/
DCHANGELOG132 * 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