Home | History | Annotate | Download | only in http

Lines Matching refs:url

284   // Strip out the reference, username, and password sections of the URL.
285 std::string url = HttpUtil::SpecForRequest(request->url);
289 // No valid URL can begin with numerals, so we should not have to worry
292 url.insert(0, StringPrintf("%" PRId64 "/",
295 return url;
307 // instance of an URL from the cache.
310 if (playback_cache_map_->find(url) != playback_cache_map_->end())
311 generation = (*playback_cache_map_)[url];
312 (*playback_cache_map_)[url] = generation + 1;
314 // The key into the cache is GENERATION # + METHOD + URL.
317 result.append(url);