HomeSort by relevance Sort by last modified time
    Searched refs:shut_tx (Results 1 - 6 of 6) sorted by null

  /external/syslinux/core/lwip/src/api/
api_lib.c 662 netconn_shutdown(struct netconn *conn, u8_t shut_rx, u8_t shut_tx)
664 return netconn_close_shutdown(conn, (shut_rx ? NETCONN_SHUT_RD : 0) | (shut_tx ? NETCONN_SHUT_WR : 0));
api_msg.c 738 u8_t shut, shut_rx, shut_tx, close; local
748 shut_tx = shut & NETCONN_SHUT_WR;
764 if (shut_tx) {
793 if (shut_tx) {
    [all...]
sockets.c 1358 u8_t shut_rx = 0, shut_tx = 0; local
    [all...]
  /external/syslinux/core/lwip/src/include/lwip/
api.h 236 err_t netconn_shutdown(struct netconn *conn, u8_t shut_rx, u8_t shut_tx);
tcp.h 350 err_t tcp_shutdown(struct tcp_pcb *pcb, int shut_rx, int shut_tx);
  /external/syslinux/core/lwip/src/core/
tcp.c 273 * @param shut_tx shut down send side if this is != 0
278 tcp_shutdown(struct tcp_pcb *pcb, int shut_rx, int shut_tx)
292 if (shut_tx) {
    [all...]

Completed in 320 milliseconds