Home | History | Annotate | Download | only in win32

Lines Matching full:uri

85  * @uri: URI of the GWinHttpFile to create.
91 const char *uri)
96 wuri = g_utf8_to_utf16 (uri, -1, NULL, NULL, NULL);
174 /* If no slash, or only "/" fallback to full path part of URI */
240 char *uri;
246 uri = g_winhttp_file_get_uri (file);
247 if (uri == NULL)
250 last_slash = strrchr (uri, '/');
253 g_free (uri);
257 while (last_slash > uri && *last_slash == '/')
262 parent = _g_winhttp_file_new (winhttp_file->vfs, uri);
263 g_free (uri);
272 char *uri = g_winhttp_file_get_uri (file);
273 GFile *retval = _g_winhttp_file_new (winhttp_file->vfs, uri);
275 g_free (uri);
283 char *uri = g_winhttp_file_get_uri (file);
284 guint retval = g_str_hash (uri);
286 g_free (uri);