Searched refs:count_protocols (Results 1 – 25 of 26) sorted by relevance
12
/third_party/libwebsockets/lib/core-net/ |
D | vhost.c | 256 (size_t)vhost->count_protocols * sizeof(void *), in lws_protocol_vh_priv_zalloc() 263 while (n < vhost->count_protocols && &vhost->protocols[n] != prot) in lws_protocol_vh_priv_zalloc() 266 if (n == vhost->count_protocols) { in lws_protocol_vh_priv_zalloc() 268 while (n < vhost->count_protocols) { in lws_protocol_vh_priv_zalloc() 275 if (n == vhost->count_protocols) { in lws_protocol_vh_priv_zalloc() 295 while (n < vhost->count_protocols && &vhost->protocols[n] != prot) in lws_protocol_vh_priv_get() 298 if (n == vhost->count_protocols) { in lws_protocol_vh_priv_get() 300 while (n < vhost->count_protocols) { in lws_protocol_vh_priv_get() 307 if (n == vhost->count_protocols) { in lws_protocol_vh_priv_get() 330 for (n = 0; n < vh->count_protocols; n++) { in lws_vhd_find_by_pvo() [all …]
|
D | pollfd.c | 609 protocol >= (vhost->protocols + vhost->count_protocols)) { in lws_callback_on_writable_all_protocol_vhost() 613 (vhost->protocols + vhost->count_protocols)); in lws_callback_on_writable_all_protocol_vhost() 645 for (n = 0; n < vhost->count_protocols; n++) in lws_callback_on_writable_all_protocol() 650 if (n != vhost->count_protocols) in lws_callback_on_writable_all_protocol()
|
D | wsi.c | 157 for (n = 0; n < vh->count_protocols; n++) in lws_vhost_name_to_protocol() 242 for (n = 0; n < wsi->a.vhost->count_protocols; n++) in lws_callback_vhost_protocols() 401 for (n = 0; n < wsi->a.vhost->count_protocols; n++) { in lws_callback_vhost_protocols_vhost() 866 for (n = 0; n < v->count_protocols; n++) { in lws_broadcast() 1239 if (p > vp && p < &vp[wsi->a.vhost->count_protocols]) in lws_bind_protocol() 1242 int n = wsi->a.vhost->count_protocols; in lws_bind_protocol()
|
D | private-lib-core-net.h | 508 int count_protocols; member
|
/third_party/libwebsockets/lib/roles/raw-file/ |
D | ops-raw-file.c | 71 wsi->a.vhost->count_protocols) in rops_adoption_bind_raw_file()
|
/third_party/libwebsockets/plugins/ |
D | protocol_dumb_increment.c | 137 .count_protocols = LWS_ARRAY_SIZE(dumb_increment_protocols),
|
D | protocol_client_loopback_test.c | 190 .count_protocols = LWS_ARRAY_SIZE(client_loopback_test_protocols),
|
D | protocol_lws_raw_test.c | 299 .count_protocols = LWS_ARRAY_SIZE(lws_raw_test_protocols),
|
D | protocol_lws_status.c | 265 .count_protocols = LWS_ARRAY_SIZE(lws_status_protocols),
|
D | protocol_post_demo.c | 310 .count_protocols = LWS_ARRAY_SIZE(post_demo_protocols),
|
D | protocol_fulltext_demo.c | 282 .count_protocols = LWS_ARRAY_SIZE(fulltext_demo_protocols),
|
D | protocol_lws_sshd_demo.c | 475 .count_protocols = LWS_ARRAY_SIZE(lws_sshd_demo_protocols),
|
D | protocol_lws_mirror.c | 500 .count_protocols = LWS_ARRAY_SIZE(lws_mirror_protocols),
|
D | protocol_lws_openmetrics_export.c | 1199 .count_protocols = LWS_ARRAY_SIZE(lws_openmetrics_export_protocols),
|
/third_party/libwebsockets/plugin-standalone/ |
D | protocol_example_standalone.c | 145 .count_protocols = LWS_ARRAY_SIZE(protocols),
|
/third_party/libwebsockets/lib/plat/windows/ |
D | windows-init.c | 66 context->plugin_protocol_count += plpr->count_protocols; in protocol_plugin_cb()
|
D | windows-plugins.c | 144 context->plugin_protocol_count += plpr->count_protocols; in protocol_plugin_cb()
|
/third_party/libwebsockets/include/libwebsockets/ |
D | lws-protocols-plugins.h | 267 int count_protocols; /**< how many protocols */ member
|
/third_party/libwebsockets/lib/plat/unix/ |
D | unix-init.c | 94 plpr->count_protocols); in protocol_plugin_cb()
|
/third_party/libwebsockets/lib/roles/ws/ |
D | client-ws.c | 389 while (n < wsi->a.vhost->count_protocols) { in lws_client_ws_upgrade() 398 if (n == wsi->a.vhost->count_protocols) { /* no match */ in lws_client_ws_upgrade()
|
D | server-ws.c | 550 if (n >= wsi->a.vhost->count_protocols) { in lws_process_ws_upgrade()
|
/third_party/libwebsockets/plugins/raw-proxy/ |
D | protocol_lws_raw_proxy.c | 580 .count_protocols = LWS_ARRAY_SIZE(lws_raw_proxy_protocols),
|
/third_party/libwebsockets/plugins/deaddrop/ |
D | protocol_lws_deaddrop.c | 711 .count_protocols = LWS_ARRAY_SIZE(deaddrop_protocols),
|
/third_party/libwebsockets/lib/roles/h1/ |
D | ops-h1.c | 951 wsi->a.vhost->count_protocols) in rops_adoption_bind_h1()
|
/third_party/libwebsockets/plugins/acme-client/ |
D | protocol_lws_acme_client.c | 1652 .count_protocols = LWS_ARRAY_SIZE(lws_acme_client_protocols),
|
12