Home
last modified time | relevance | path

Searched refs:auth_params (Results 1 – 8 of 8) sorted by relevance

/third_party/libsoup/libsoup/
Dsoup-auth-digest.c137 GHashTable *auth_params) in soup_auth_digest_update() argument
151 priv->domain = g_strdup (g_hash_table_lookup (auth_params, "domain")); in soup_auth_digest_update()
152 priv->nonce = g_strdup (g_hash_table_lookup (auth_params, "nonce")); in soup_auth_digest_update()
153 priv->opaque = g_strdup (g_hash_table_lookup (auth_params, "opaque")); in soup_auth_digest_update()
155 qop = g_hash_table_lookup (auth_params, "qop"); in soup_auth_digest_update()
165 …priv->algorithm = soup_auth_digest_parse_algorithm (g_hash_table_lookup (auth_params, "algorithm")… in soup_auth_digest_update()
169 stale = g_hash_table_lookup (auth_params, "stale"); in soup_auth_digest_update()
383 GHashTable *auth_params; in authentication_info_cb() local
395 auth_params = soup_header_parse_param_list (header); in authentication_info_cb()
396 if (!auth_params) in authentication_info_cb()
[all …]
Dsoup-connection-auth.c117 GHashTable *auth_params) in soup_connection_auth_update() argument
133 g_hash_table_iter_init (&iter, auth_params); in soup_connection_auth_update()
Dsoup-auth-basic.c51 GHashTable *auth_params) in soup_auth_basic_update() argument
/third_party/glib/glib/
Dguri.c215 gchar *auth_params; member
249 g_free (uri->auth_params); in g_uri_clear()
680 gchar **auth_params, in parse_userinfo() argument
716 if (!uri_normalize (auth_params, start, auth_params_end - start, flags, in parse_userinfo()
726 else if (auth_params) in parse_userinfo()
727 *auth_params = NULL; in parse_userinfo()
831 gchar **auth_params, in g_uri_split_internal() argument
852 if (auth_params) in g_uri_split_internal()
853 *auth_params = NULL; in g_uri_split_internal()
920 if (user || password || auth_params || in g_uri_split_internal()
[all …]
Dguri.h110 gchar **auth_params,
144 const gchar *auth_params,
181 const gchar *auth_params,
/third_party/ffmpeg/libavformat/
Drtmpproto.c128 char auth_params[500]; member
333 ff_amf_write_string2(&p, rt->app, rt->auth_params); in gen_connect()
351 ff_amf_write_string2(&p, rt->tcurl, rt->auth_params); in gen_connect()
1631 snprintf(rt->auth_params, sizeof(rt->auth_params), in do_adobe_auth()
1635 av_strlcatf(rt->auth_params, sizeof(rt->auth_params), in do_adobe_auth()
1693 snprintf(rt->auth_params, sizeof(rt->auth_params), in do_llnw_auth()
1738 rt->auth_params[0] = '\0'; in handle_connect_error()
1741 snprintf(rt->auth_params, sizeof(rt->auth_params), in handle_connect_error()
/third_party/gstreamer/gstplugins_base/gst-libs/gst/rtsp/
Dgstrtspconnection.c203 GHashTable *auth_params; member
399 newconn->auth_params = NULL; in gst_rtsp_connection_create()
1161 if (conn->auth_params == NULL || conn->username == NULL || in add_auth_header()
1166 realm = (gchar *) g_hash_table_lookup (conn->auth_params, "realm"); in add_auth_header()
1167 nonce = (gchar *) g_hash_table_lookup (conn->auth_params, "nonce"); in add_auth_header()
1183 opaque = (gchar *) g_hash_table_lookup (conn->auth_params, "opaque"); in add_auth_header()
3248 if (conn->auth_params == NULL) { in gst_rtsp_connection_set_auth_param()
3249 conn->auth_params = in gst_rtsp_connection_set_auth_param()
3252 g_hash_table_insert (conn->auth_params, g_strdup (param), g_strdup (value)); in gst_rtsp_connection_set_auth_param()
3266 if (conn->auth_params != NULL) { in gst_rtsp_connection_clear_auth_params()
[all …]
/third_party/glib/glib/tests/
Duri.c1741 const gchar *scheme, *user, *password, *auth_params, *host, *path, *query, *fragment; in test_uri_join_split_round_trip() local
1756auth_params = (host != NULL && user != NULL && i & (1 << 5)) ? "auth_params" : NULL; /* only supp… in test_uri_join_split_round_trip()
1762 uri = g_uri_join_with_user (flags, scheme, user, password, auth_params, in test_uri_join_split_round_trip()
1777 g_assert_cmpstr (auth_params, ==, auth_params_out); in test_uri_join_split_round_trip()