Lines Matching full:called
61 /** Function prototype for tcp accept callback functions. Called when a new
67 * Only return ERR_ABRT if you have called tcp_abort from within the
72 /** Function prototype for tcp receive callback functions. Called when data has
79 * Only return ERR_ABRT if you have called tcp_abort from within the
85 /** Function prototype for tcp sent callback functions. Called when sent data has
93 * Only return ERR_ABRT if you have called tcp_abort from within the
99 /** Function prototype for tcp poll callback functions. Called periodically as
105 * Only return ERR_ABRT if you have called tcp_abort from within the
110 /** Function prototype for tcp error callback functions. Called when the pcb
113 * @note The corresponding pcb is already freed when this callback is called!
122 /** Function prototype for tcp connected callback functions. Called when a pcb
129 * Only return ERR_ABRT if you have called tcp_abort from within the
132 * @note When a connection attempt fails, the error callback is currently called!
167 /** Function prototype for deallocation of arguments. Called *just before* the
351 /* Function to be called when more send buffer space is available. */
353 /* Function to be called when (in-sequence) data has arrived. */
355 /* Function to be called when a connection has been set up. */
357 /* Function which is called periodically. */
359 /* Function to be called whenever a fatal error occurs. */
446 LWIP_ASSERT("pcb->state == LISTEN (called for wrong pcb?)", (pcb)->state == LISTEN); \