Home
last modified time | relevance | path

Searched refs:wsi_eff (Results 1 – 4 of 4) sorted by relevance

/third_party/libwebsockets/lib/plat/optee/
Dnetwork.c55 struct lws *wsi_eff; in lws_send_pipe_choked() local
58 wsi_eff = lws_get_network_wsi(wsi); in lws_send_pipe_choked()
60 wsi_eff = wsi; in lws_send_pipe_choked()
64 wsi_eff->could_have_pending = 0; in lws_send_pipe_choked()
67 if (lws_has_buffered_out(wsi_eff) in lws_send_pipe_choked()
/third_party/libwebsockets/lib/plat/freertos/
Dfreertos-sockets.c38 struct lws *wsi_eff = wsi; in lws_send_pipe_choked() local
43 wsi_eff = lws_get_network_wsi(wsi); in lws_send_pipe_choked()
47 wsi_eff->could_have_pending = 0; in lws_send_pipe_choked()
59 FD_SET(wsi_eff->desc.sockfd, &writefds); in lws_send_pipe_choked()
61 n = select(wsi_eff->desc.sockfd + 1, NULL, &writefds, NULL, &tv); in lws_send_pipe_choked()
/third_party/libwebsockets/lib/plat/windows/
Dwindows-sockets.c41 { struct lws *wsi_eff; in lws_send_pipe_choked() local
44 wsi_eff = lws_get_network_wsi(wsi); in lws_send_pipe_choked()
46 wsi_eff = wsi; in lws_send_pipe_choked()
49 wsi_eff->could_have_pending = 0; in lws_send_pipe_choked()
52 if (lws_has_buffered_out(wsi_eff) in lws_send_pipe_choked()
60 return (int)wsi_eff->sock_send_blocking; in lws_send_pipe_choked()
/third_party/libwebsockets/lib/plat/unix/
Dunix-sockets.c55 struct lws *wsi_eff; in lws_send_pipe_choked() local
63 wsi_eff = lws_get_network_wsi(wsi); in lws_send_pipe_choked()
65 wsi_eff = wsi; in lws_send_pipe_choked()
69 wsi_eff->could_have_pending = 0; in lws_send_pipe_choked()
72 if (lws_has_buffered_out(wsi_eff) in lws_send_pipe_choked()
80 fds.fd = wsi_eff->desc.sockfd; in lws_send_pipe_choked()