/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/utils/ |
D | xml-utils.c | 213 char *new_uri; in add_path() local 219 new_uri = os_malloc(len); in add_path() 220 if (new_uri) in add_path() 221 os_snprintf(new_uri, len, "%s/%s", prev, leaf); in add_path() 223 return new_uri; in add_path() 234 char *new_uri; in node_to_tnds() local 254 new_uri = add_path(uri, name); in node_to_tnds() 255 node_to_tnds(ctx, new_uri ? out : tnds, node, new_uri); in node_to_tnds() 256 os_free(new_uri); in node_to_tnds() 414 char *new_uri; in tnds_to_mo_iter() local [all …]
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/utils/ |
D | xml-utils.c | 213 char *new_uri; in add_path() local 219 new_uri = os_malloc(len); in add_path() 220 if (new_uri) in add_path() 221 os_snprintf(new_uri, len, "%s/%s", prev, leaf); in add_path() 223 return new_uri; in add_path() 234 char *new_uri; in node_to_tnds() local 254 new_uri = add_path(uri, name); in node_to_tnds() 255 node_to_tnds(ctx, new_uri ? out : tnds, node, new_uri); in node_to_tnds() 256 os_free(new_uri); in node_to_tnds() 414 char *new_uri; in tnds_to_mo_iter() local [all …]
|
/third_party/nghttp2/src/ |
D | asio_server_serve_mux.cc | 83 auto new_uri = util::percent_encode_path(clean_path); in handler() local 86 new_uri += '?'; in handler() 87 new_uri += uref.raw_query; in handler() 90 return redirect_handler(301, std::move(new_uri)); in handler()
|
D | shrpx_downstream.cc | 706 auto new_uri = http2::rewrite_location_uri(balloc_, hd->value, u, in rewrite_location_response_header() local 710 if (new_uri.empty()) { in rewrite_location_response_header() 714 hd->value = new_uri; in rewrite_location_response_header()
|
/third_party/gstreamer/gstreamer/gst/ |
D | gsturi.c | 1059 GstUri *new_uri; in _gst_uri_copy() local 1063 new_uri = _gst_uri_new (); in _gst_uri_copy() 1065 if (new_uri) { in _gst_uri_copy() 1066 new_uri->scheme = g_strdup (orig_uri->scheme); in _gst_uri_copy() 1067 new_uri->userinfo = g_strdup (orig_uri->userinfo); in _gst_uri_copy() 1068 new_uri->host = g_strdup (orig_uri->host); in _gst_uri_copy() 1069 new_uri->port = orig_uri->port; in _gst_uri_copy() 1070 new_uri->path = g_list_copy_deep (orig_uri->path, (GCopyFunc) g_strdup, in _gst_uri_copy() 1072 new_uri->query = _gst_uri_copy_query_table (orig_uri->query); in _gst_uri_copy() 1073 new_uri->fragment = g_strdup (orig_uri->fragment); in _gst_uri_copy() [all …]
|
/third_party/libsoup/libsoup/ |
D | soup-session.c | 1087 SoupURI *new_uri; in redirection_uri() local 1093 new_uri = soup_uri_new_with_base (soup_message_get_uri (msg), new_loc); in redirection_uri() 1094 if (!new_uri || !new_uri->host) { in redirection_uri() 1095 if (new_uri) in redirection_uri() 1096 soup_uri_free (new_uri); in redirection_uri() 1100 return new_uri; in redirection_uri() 1120 SoupURI *new_uri; in soup_session_would_redirect() local 1130 new_uri = redirection_uri (msg); in soup_session_would_redirect() 1131 if (!new_uri) in soup_session_would_redirect() 1133 if (!new_uri->host || !*new_uri->host || in soup_session_would_redirect() [all …]
|
/third_party/libsoup/tests/ |
D | proxy-test.c | 293 SoupURI *proxy_uri, *req_uri, *new_uri; in do_proxy_redirect_test() local 314 new_uri = soup_message_get_uri (msg); in do_proxy_redirect_test() 315 soup_test_assert (strcmp (req_uri->path, new_uri->path) != 0, in do_proxy_redirect_test()
|
/third_party/gstreamer/gstplugins_good/ext/soup/ |
D | gstsouphttpclientsink.c | 281 gchar *new_uri = g_strconcat ("http://", uri, NULL); in gst_soup_http_client_sink_set_proxy() local 283 souphttpsink->proxy = gst_soup_uri_new (new_uri); in gst_soup_http_client_sink_set_proxy() 284 g_free (new_uri); in gst_soup_http_client_sink_set_proxy()
|
D | gstsouphttpsrc.c | 2964 gchar *new_uri = g_strconcat ("http://", uri, NULL); in gst_soup_http_src_set_proxy() local 2966 src->proxy = gst_soup_uri_new (new_uri); in gst_soup_http_src_set_proxy() 2967 g_free (new_uri); in gst_soup_http_src_set_proxy()
|
/third_party/glib/glib/ |
D | gbookmarkfile.c | 3866 const gchar *new_uri, in g_bookmark_file_move_item() argument 3884 if (new_uri && new_uri[0] != '\0') in g_bookmark_file_move_item() 3886 if (g_strcmp0 (old_uri, new_uri) == 0) in g_bookmark_file_move_item() 3889 if (g_bookmark_file_has_item (bookmark, new_uri)) in g_bookmark_file_move_item() 3891 if (!g_bookmark_file_remove_item (bookmark, new_uri, error)) in g_bookmark_file_move_item() 3898 item->uri = g_strdup (new_uri); in g_bookmark_file_move_item()
|
D | gbookmarkfile.h | 290 const gchar *new_uri,
|
/third_party/chromium/patch/ |
D | 0003-3.2-Beta3-1115.patch | 250850 + std::shared_ptr<std::string> new_uri = record->GetUri(); 250851 + if (!new_uri) { 250855 + *new_uri); 250858 + file_map_.insert(std::make_pair(*new_uri, std::move(url_file))); 250864 + std::string& new_uri, 250877 + FileUrlMap::iterator iter = file_map_.find(new_uri); 250886 + new_uri = new_file_path.AsUTF8Unsafe(); 250913 + std::shared_ptr<std::string> new_uri = record->GetUri(); 250915 + if (!uri_offset_list || !new_uri) { 250922 + SaveImgFile(iter->first, *new_uri, token_id_); [all …]
|
/third_party/gstreamer/gstreamer/ |
D | ChangeLog | 33689 gst_uri_handler_set_uri() function has new_uri, location and colon
|