Home
last modified time | relevance | path

Searched refs:ERR_ABRT (Results 1 – 12 of 12) sorted by relevance

/third_party/lwip/src/include/lwip/
Derr.h82 ERR_ABRT = -13, enumerator
/third_party/lwip/src/apps/altcp_tls/
Daltcp_tls_mbedtls.c330 if (err == ERR_ABRT) { in altcp_mbedtls_pass_rx_data()
331 return ERR_ABRT; in altcp_mbedtls_pass_rx_data()
402 return ERR_ABRT; in altcp_mbedtls_handle_rx_appldata()
434 if (err == ERR_ABRT) { in altcp_mbedtls_handle_rx_appldata()
436 return ERR_ABRT; in altcp_mbedtls_handle_rx_appldata()
543 if (altcp_mbedtls_handle_rx_appldata(conn, state) == ERR_ABRT) { in altcp_mbedtls_lower_poll()
544 return ERR_ABRT; in altcp_mbedtls_lower_poll()
/third_party/lwip/src/apps/http/
Daltcp_proxyconnect.c170 if (conn->connected(conn->arg, conn, err) == ERR_ABRT) { in altcp_proxyconnect_lower_connected()
171 return ERR_ABRT; in altcp_proxyconnect_lower_connected()
226 return ERR_ABRT; in altcp_proxyconnect_lower_recv()
Dhttp_client.c184 return ERR_ABRT; in httpc_free_state()
Dhttpd.c2499 return ERR_ABRT;
/third_party/lwip/src/core/
Dtcp_in.c423 if ((tcp_process_refused_data(pcb) == ERR_ABRT) ||
441 if (err != ERR_ABRT) {
469 if (err == ERR_ABRT) {
502 if (err == ERR_ABRT) {
542 if (err == ERR_ABRT) {
904 if (err == ERR_ABRT) {
905 return ERR_ABRT;
947 if (err != ERR_ABRT) {
950 return ERR_ABRT;
Dtcp.c622 TCP_EVENT_ERR(last_state, errf, errf_arg, ERR_ABRT); in tcp_abandon()
788 return ERR_ABRT; in tcp_accept_null()
1410 TCP_EVENT_ERR(last_state, err_fn, err_arg, ERR_ABRT); in tcp_slowtmr()
1579 if (err == ERR_ABRT) { in tcp_process_refused_data()
1580 return ERR_ABRT; in tcp_process_refused_data()
1583 } else if (err == ERR_ABRT) { in tcp_process_refused_data()
1588 return ERR_ABRT; in tcp_process_refused_data()
/third_party/lwip/src/api/
Dapi_msg.c118 case ERR_ABRT: in lwip_netconn_err_to_msg()
136 *err = ERR_ABRT; in lwip_netconn_is_err_msg()
548 if (sys_mbox_trypost(&conn->acceptmbox, lwip_netconn_err_to_msg(ERR_ABRT)) == ERR_OK) {
564 if (sys_mbox_trypost(&conn->acceptmbox, lwip_netconn_err_to_msg(ERR_ABRT)) == ERR_OK) {
/third_party/lwip/
DUPGRADING158 make sure you return ERR_ABRT to prevent accessing unallocated memory.
159 (ERR_ABRT now means the applicaiton has called tcp_abort!)
DCHANGELOG779 aborted connections): netconn_accept() returns ERR_ABRT (sockets: ECONNABORTED)
1782 * api_lib.c: netconn_accept: return ERR_ABRT instead of ERR_CLSD if the
2078 ERR_ABRT means the application has called tcp_abort()!
/third_party/lwip/test/unit/tcp/
Dtest_tcp.c1262 EXPECT(counters.last_err == ERR_ABRT); in test_tcp_rto_timeout_impl()
1358 EXPECT(counters.last_err == ERR_ABRT); in test_tcp_rto_timeout_syn_sent_impl()
1487 EXPECT(counters.last_err == ERR_ABRT); in test_tcp_zwp_timeout_impl()
/third_party/lwip/src/apps/mqtt/
Dmqtt.c659 r->cb(r->arg, result < 3 ? ERR_OK : ERR_ABRT); in mqtt_incomming_suback()