/third_party/libwebsockets/lib/core-net/client/ |
D | connect.c | 41 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 …]
|
D | connect4.c | 88 if (wsi->stash) in lws_client_connect_4_established() 89 wsi->stash->cis[CIS_ADDRESS] = in lws_client_connect_4_established()
|
D | connect2.c | 286 if (wsi->stash) 287 iface = wsi->stash->cis[CIS_IFACE];
|
/third_party/libwebsockets/lib/roles/http/ |
D | cookie.c | 285 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/ |
D | tls-sessions.c | 48 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()
|
D | tls-jit-trust.c | 99 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/ |
D | mbedtls-client.c | 79 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/ |
D | close.c | 253 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()
|
D | socks5-client.c | 154 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()
|
D | wsi.c | 1351 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/ |
D | ops-mqtt.c | 236 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()
|
D | mqtt.c | 1283 w->stash = wsi->stash; in _lws_mqtt_rx_parser() 1284 wsi->stash = NULL; in _lws_mqtt_rx_parser()
|
/third_party/libwebsockets/lib/tls/openssl/ |
D | openssl-client.c | 244 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/ |
D | ops-h1.c | 986 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/ |
D | ops-raw-proxy.c | 169 if (!wsi->user_space && wsi->stash->cis[CIS_METHOD]) in rops_client_bind_raw_proxy()
|
/third_party/libpng/contrib/conftest/ |
D | pngcp.dfa | 47 # 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/ |
D | pngcp.dfa | 47 # 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/ |
D | pngcp.dfa | 47 # Pre-libpng 1.7 pngcp has to stash text chunks manually, post 1.7 without this
|
/third_party/libwebsockets/lib/roles/http/client/ |
D | client-http.c | 1188 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/ |
D | ops-raw-skt.c | 258 if (!wsi->user_space && wsi->stash->cis[CIS_METHOD]) in rops_client_bind_raw_skt()
|
/third_party/libwebsockets/lib/system/metrics/ |
D | metrics.c | 628 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/ |
D | upgrade.dart | 112 'you stash them via "git stash" or else commit the changes to a local '
|
/third_party/libwebsockets/lib/roles/h2/ |
D | http2.c | 2571 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/ |
D | Queries.md | 34 This is done on render pass start, where `QueryVk::onRenderPassStart()` would stash the previous
|
/third_party/libwebsockets/READMEs/ |
D | README.release-policy.md | 47 including any of your local changes, so stash those first, or use stgit or so
|