Home
last modified time | relevance | path

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

/third_party/e2fsprogs/lib/et/
Dcom_err.c65 typedef void (*errf) (const char *, errcode_t, const char *, va_list) typedef
68 errf com_err_hook = default_com_err_proc;
89 errf set_com_err_hook(errf new_proc) in set_com_err_hook()
91 errf x = com_err_hook; in set_com_err_hook()
101 errf reset_com_err_hook(void) { in reset_com_err_hook()
102 errf x = com_err_hook; in reset_com_err_hook()
/third_party/lwip/src/include/lwip/priv/
Dtcp_priv.h182 #define TCP_EVENT_ERR(last_state,errf,arg,err) do { if (last_state != SYN_RCVD) { \ argument
233 #define TCP_EVENT_ERR(last_state,errf,arg,err) \ argument
236 if((errf) != NULL) \
237 (errf)((arg),(err)); \
/third_party/lwip/src/core/
Dtcp.c567 tcp_err_fn errf; in tcp_abandon() local
591 errf = pcb->errf; in tcp_abandon()
622 TCP_EVENT_ERR(last_state, errf, errf_arg, ERR_ABRT); in tcp_abandon()
1383 tcp_err_fn err_fn = pcb->errf; in tcp_slowtmr()
2065 pcb->errf = err; in tcp_err()
Dtcp_in.c447 TCP_EVENT_ERR(pcb->state, pcb->errf, pcb->callback_arg, ERR_RST);
611 TCP_EVENT_ERR(pcb->state, pcb->errf, pcb->callback_arg, ERR_CLSD);
/third_party/lwip/src/include/lwip/
Dtcp.h360 tcp_err_fn errf; member