Searched refs:err_code (Results 1 – 8 of 8) sorted by relevance
| /lib/zstd/common/ |
| A D | error_private.h | 127 size_t const err_code = (err); \ 128 if (ERR_isError(err_code)) { \ 130 __FILE__, __LINE__, ERR_QUOTE(err), ERR_getErrorName(err_code)); \ 134 return err_code; \
|
| /lib/lwip/lwip/src/netif/ppp/ |
| A D | ppp.c | 339 pcb->err_code = PPPERR_USER; in ppp_close() 349 pcb->link_status_cb(pcb, pcb->err_code, pcb->ctx_cb); in ppp_close() 443 *(int *)arg = (int)(pcb->err_code); in ppp_ioctl() 761 pcb->err_code = PPPERR_OPEN; in ppp_link_failed() 762 pcb->link_status_cb(pcb, pcb->err_code, pcb->ctx_cb); in ppp_link_failed() 769 if (pcb->err_code == PPPERR_NONE) { in ppp_link_end() 770 pcb->err_code = PPPERR_CONNECT; in ppp_link_end() 772 pcb->link_status_cb(pcb, pcb->err_code, pcb->ctx_cb); in ppp_link_end() 1175 pcb->err_code = PPPERR_NONE; in sifup() 1179 pcb->link_status_cb(pcb, pcb->err_code, pcb->ctx_cb); in sifup() [all …]
|
| A D | auth.c | 798 pcb->err_code = PPPERR_AUTHFAIL; in link_established() 1039 pcb->err_code = PPPERR_AUTHFAIL; in auth_peer_fail() 1130 pcb->err_code = PPPERR_AUTHFAIL; in auth_withpeer_fail() 1344 pcb->err_code = PPPERR_IDLETIMEOUT; in check_idle() 1362 pcb->err_code = PPPERR_CONNECTTIME; in connect_time_expired()
|
| A D | lcp.c | 1568 pcb->err_code = PPPERR_LOOPBACK; in lcp_nakci() 2648 pcb->err_code = PPPERR_PEERDEAD; in LcpLinkFailure()
|
| /lib/lwip/lwip/contrib/examples/ppp/ |
| A D | pppos_example.c | 71 ppp_link_status_cb(ppp_pcb *pcb, int err_code, void *ctx) in ppp_link_status_cb() argument 76 switch(err_code) { in ppp_link_status_cb() 153 printf("ppp_link_status_cb: unknown errCode %d\n", err_code); in ppp_link_status_cb()
|
| /lib/lwip/lwip/test/unit/ppp/ |
| A D | test_pppos.c | 21 static void ppp_link_status_cb(ppp_pcb *pcb, int err_code, void *ctx) in ppp_link_status_cb() argument 24 LWIP_UNUSED_ARG(err_code); in ppp_link_status_cb()
|
| /lib/lwip/lwip/src/include/netif/ppp/ |
| A D | ppp.h | 196 typedef void (*ppp_link_status_cb_fn)(ppp_pcb *pcb, int err_code, void *ctx); 320 void (*link_status_cb)(ppp_pcb *pcb, int err_code, void *ctx); /* Status change callback */ 327 u8_t err_code; /* Code indicating why interface is down. */ member
|
| /lib/lwip/lwip/doc/ |
| A D | ppp.txt | 75 static void status_cb(ppp_pcb *pcb, int err_code, void *ctx) { 79 switch(err_code) { 150 printf("status_cb: Unknown error code %d\n", err_code); 160 if (err_code == PPPERR_NONE) { 165 if (err_code == PPPERR_USER) {
|
Completed in 27 milliseconds