Home
last modified time | relevance | path

Searched refs:stash (Results 1 – 25 of 39) sorted by relevance

12

/third_party/libwebsockets/lib/core-net/client/
Dconnect.c41 struct client_info_stash *stash = wsi->stash; in lws_http_client_connect_via_info2() local
44 lwsl_wsi_debug(wsi, "stash %p", stash); in lws_http_client_connect_via_info2()
46 if (!stash) in lws_http_client_connect_via_info2()
49 wsi->a.opaque_user_data = wsi->stash->opaque_user_data; in lws_http_client_connect_via_info2()
51 if (stash->cis[CIS_METHOD] && (!strcmp(stash->cis[CIS_METHOD], "RAW") || in lws_http_client_connect_via_info2()
52 !strcmp(stash->cis[CIS_METHOD], "MQTT"))) in lws_http_client_connect_via_info2()
61 if (hnames[n] && stash->cis[n] && in lws_http_client_connect_via_info2()
62 lws_hdr_simple_create(wsi, hnames[n], stash->cis[n])) in lws_http_client_connect_via_info2()
67 lws_free_set_NULL(wsi->stash); in lws_http_client_connect_via_info2()
76 lws_free_set_NULL(wsi->stash); in lws_http_client_connect_via_info2()
[all …]
Dconnect4.c88 if (wsi->stash) in lws_client_connect_4_established()
89 wsi->stash->cis[CIS_ADDRESS] = in lws_client_connect_4_established()
Dconnect2.c286 if (wsi->stash)
287 iface = wsi->stash->cis[CIS_IFACE];
/third_party/libwebsockets/lib/roles/http/
Dcookie.c285 struct client_info_stash *stash; in lws_cookie_write_nsc() local
299 stash = wsi->stash ? wsi->stash : lws_get_network_wsi(wsi)->stash; in lws_cookie_write_nsc()
300 if (!stash || !stash->cis[CIS_ADDRESS] || in lws_cookie_write_nsc()
301 !stash->cis[CIS_PATH]) in lws_cookie_write_nsc()
323 c->f[CE_DOMAIN] = stash->cis[CIS_ADDRESS]; in lws_cookie_write_nsc()
328 c->f[CE_PATH] = stash->cis[CIS_PATH]; in lws_cookie_write_nsc()
403 struct client_info_stash *stash; in lws_cookie_attach_cookies() local
412 stash = wsi->stash ? wsi->stash : lws_get_network_wsi(wsi)->stash; in lws_cookie_attach_cookies()
413 if (!stash || !stash->cis[CIS_ADDRESS] || in lws_cookie_attach_cookies()
414 !stash->cis[CIS_PATH]) in lws_cookie_attach_cookies()
[all …]
/third_party/libwebsockets/lib/tls/
Dtls-sessions.c48 if (!wsi->stash) in lws_tls_session_tag_from_wsi()
51 host = wsi->stash->cis[CIS_HOST]; in lws_tls_session_tag_from_wsi()
53 host = wsi->stash->cis[CIS_ADDRESS]; in lws_tls_session_tag_from_wsi()
Dtls-jit-trust.c99 if (wsi->stash && wsi->stash->cis[CIS_HOST]) in lws_tls_jit_trust_sort_kids()
100 host = wsi->stash->cis[CIS_HOST]; in lws_tls_jit_trust_sort_kids()
/third_party/libwebsockets/lib/tls/mbedtls/
Dmbedtls-client.c79 if (wsi->stash) in lws_ssl_client_bio_create()
80 lws_strncpy(hostname, wsi->stash->cis[CIS_HOST], sizeof(hostname)); in lws_ssl_client_bio_create()
129 if (wsi->stash) { in lws_ssl_client_bio_create()
130 lws_strncpy(hostname, wsi->stash->cis[CIS_HOST], in lws_ssl_client_bio_create()
132 if (wsi->stash->cis[CIS_ALPN]) in lws_ssl_client_bio_create()
133 alpn_comma = wsi->stash->cis[CIS_ALPN]; in lws_ssl_client_bio_create()
/third_party/libwebsockets/lib/core-net/
Dclose.c253 if (wsi->stash) in __lws_free_wsi()
254 lws_free_set_NULL(wsi->stash); in __lws_free_wsi()
465 lws_free_set_NULL(wsi->stash); in __lws_close_free_wsi()
946 if (wsi->stash->cis[CIS_ALPN]) in __lws_close_free_wsi_final()
947 lws_strncpy(wsi->alpn, wsi->stash->cis[CIS_ALPN], in __lws_close_free_wsi_final()
963 if (wsi->stash && wsi->stash->cis[CIS_ADDRESS]) { in __lws_close_free_wsi_final()
966 wsi->stash->cis[CIS_ADDRESS], in __lws_close_free_wsi_final()
Dsocks5-client.c154 n = (ssize_t)strlen(wsi->stash->cis[CIS_ADDRESS]); in lws_socks5c_generate_msg()
173 memcpy(p, wsi->stash->cis[CIS_ADDRESS], (size_t)n); in lws_socks5c_generate_msg()
Dwsi.c1351 if (wsi->stash) in lws_wsi_client_stash_item()
1352 return wsi->stash->cis[stash_idx]; in lws_wsi_client_stash_item()
/third_party/libwebsockets/lib/roles/mqtt/
Dops-mqtt.c236 if (!wsi->user_space && wsi->stash->cis[CIS_METHOD]) in rops_client_bind_mqtt()
240 if (!wsi->stash->cis[CIS_METHOD] && !wsi->stash->cis[CIS_ALPN]) in rops_client_bind_mqtt()
241 wsi->stash->cis[CIS_ALPN] = "x-amzn-mqtt-ca"; in rops_client_bind_mqtt()
Dmqtt.c1283 w->stash = wsi->stash; in _lws_mqtt_rx_parser()
1284 wsi->stash = NULL; in _lws_mqtt_rx_parser()
/third_party/libwebsockets/lib/tls/openssl/
Dopenssl-client.c244 if (wsi->stash) { in lws_ssl_client_bio_create()
245 lws_strncpy(hostname, wsi->stash->cis[CIS_HOST], sizeof(hostname)); in lws_ssl_client_bio_create()
248 alpn_comma = wsi->stash->cis[CIS_ALPN]; in lws_ssl_client_bio_create()
392 if (wsi->stash) in lws_ssl_client_bio_create()
393 alpn_comma = wsi->stash->cis[CIS_ALPN]; in lws_ssl_client_bio_create()
/third_party/libwebsockets/lib/roles/h1/
Dops-h1.c986 if (!wsi->user_space && wsi->stash->cis[CIS_METHOD]) in rops_client_bind_h1()
1000 if (!wsi->stash->cis[CIS_METHOD] && !wsi->stash->cis[CIS_ALPN]) in rops_client_bind_h1()
1001 wsi->stash->cis[CIS_ALPN] = "http/1.1"; in rops_client_bind_h1()
/third_party/libwebsockets/lib/roles/raw-proxy/
Dops-raw-proxy.c169 if (!wsi->user_space && wsi->stash->cis[CIS_METHOD]) in rops_client_bind_raw_proxy()
/third_party/libpng/contrib/conftest/
Dpngcp.dfa47 # Pre-libpng 1.7 pngcp has to stash text chunks manually, post 1.7 without this
/third_party/flutter/skia/third_party/externals/libpng/contrib/conftest/
Dpngcp.dfa47 # Pre-libpng 1.7 pngcp has to stash text chunks manually, post 1.7 without this
/third_party/skia/third_party/externals/libpng/contrib/conftest/
Dpngcp.dfa47 # Pre-libpng 1.7 pngcp has to stash text chunks manually, post 1.7 without this
/third_party/libwebsockets/lib/roles/http/client/
Dclient-http.c1188 if (wsi->stash && wsi->stash->cis[CIS_PATH] && in lws_generate_client_handshake()
1189 wsi->stash->cis[CIS_PATH][0]) in lws_generate_client_handshake()
1190 path = wsi->stash->cis[CIS_PATH]; in lws_generate_client_handshake()
/third_party/libwebsockets/lib/roles/raw-skt/
Dops-raw-skt.c258 if (!wsi->user_space && wsi->stash->cis[CIS_METHOD]) in rops_client_bind_raw_skt()
/third_party/libwebsockets/lib/system/metrics/
Dmetrics.c628 if (wsi->stash && wsi->stash->cis[CIS_HOST]) in lws_metrics_hist_bump_describe_wsi()
630 wsi->stash->cis[CIS_HOST]); in lws_metrics_hist_bump_describe_wsi()
/third_party/flutter/flutter/packages/flutter_tools/lib/src/commands/
Dupgrade.dart112 'you stash them via "git stash" or else commit the changes to a local '
/third_party/libwebsockets/lib/roles/h2/
Dhttp2.c2571 if (wsi->stash && wsi->stash->cis[CIS_PATH]) { in lws_h2_client_handshake()
2572 path = wsi->stash->cis[CIS_PATH]; in lws_h2_client_handshake()
2589 if (!n && wsi->stash && wsi->stash->cis[CIS_ADDRESS]) { in lws_h2_client_handshake()
2590 n = (int)strlen(wsi->stash->cis[CIS_ADDRESS]); in lws_h2_client_handshake()
2591 simp = wsi->stash->cis[CIS_ADDRESS]; in lws_h2_client_handshake()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/doc/
DQueries.md34 This is done on render pass start, where `QueryVk::onRenderPassStart()` would stash the previous
/third_party/libwebsockets/READMEs/
DREADME.release-policy.md47 including any of your local changes, so stash those first, or use stgit or so

12