Searched refs:fdset (Results 1 – 5 of 5) sorted by relevance
/hal_espressif-3.6.0/components/esp_http_server/src/ |
D | httpd_sess.c | 33 fd_set *fdset; member 91 FD_SET(session->fd, ctx->fdset); in enum_function() 327 void httpd_sess_set_descriptors(struct httpd_data *hd, fd_set *fdset, int *maxfd) in httpd_sess_set_descriptors() argument 332 .fdset = fdset in httpd_sess_set_descriptors()
|
D | httpd_main.c | 20 fd_set *fdset; member 176 if (FD_ISSET(fd, ctx->fdset) || httpd_sess_pending(ctx->hd, session)) { in httpd_process_session() 225 .fdset = &read_set, in httpd_server()
|
D | esp_httpd_priv.h | 227 void httpd_sess_set_descriptors(struct httpd_data *hd, fd_set *fdset, int *maxfd);
|
/hal_espressif-3.6.0/examples/protocols/sockets/non_blocking/main/ |
D | non_blocking_socket_example.c | 145 fd_set fdset; in tcp_client_task() local 146 FD_ZERO(&fdset); in tcp_client_task() 147 FD_SET(sock, &fdset); in tcp_client_task() 150 res = select(sock+1, NULL, &fdset, NULL, NULL); in tcp_client_task()
|
/hal_espressif-3.6.0/components/esp-tls/ |
D | esp_tls.c | 291 fd_set fdset; in tcp_connect() local 303 FD_ZERO(&fdset); in tcp_connect() 304 FD_SET(fd, &fdset); in tcp_connect() 306 int res = select(fd+1, NULL, &fdset, NULL, &tv); in tcp_connect()
|