Lines Matching full:called
51 /** Function prototype for tcp accept callback functions. Called when a new
57 * Only return ERR_ABRT if you have called tcp_abort from within the
62 /** Function prototype for tcp receive callback functions. Called when data has
69 * Only return ERR_ABRT if you have called tcp_abort from within the
75 /** Function prototype for tcp sent callback functions. Called when sent data has
83 * Only return ERR_ABRT if you have called tcp_abort from within the
89 /** Function prototype for tcp poll callback functions. Called periodically as
95 * Only return ERR_ABRT if you have called tcp_abort from within the
100 /** Function prototype for tcp error callback functions. Called when the pcb
103 * @note The corresponding pcb is already freed when this callback is called!
112 /** Function prototype for tcp connected callback functions. Called when a pcb
119 * Only return ERR_ABRT if you have called tcp_abort from within the
122 * @note When a connection attempt fails, the error callback is currently called!
251 /* Function to be called when more send buffer space is available. */
253 /* Function to be called when (in-sequence) data has arrived. */
255 /* Function to be called when a connection has been set up. */
257 /* Function which is called periodically. */
259 /* Function to be called whenever a fatal error occurs. */
334 LWIP_ASSERT("pcb->state == LISTEN (called for wrong pcb?)", pcb->state == LISTEN); \
337 #define tcp_accepted(pcb) LWIP_ASSERT("pcb->state == LISTEN (called for wrong pcb?)", \