OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:HostInformation
(Results
1 - 2
of
2
) sorted by null
/external/webkit/Source/WebCore/loader/
ResourceLoadScheduler.h
74
class
HostInformation
{
75
WTF_MAKE_NONCOPYABLE(
HostInformation
);
77
HostInformation
(const String&, unsigned);
78
~
HostInformation
();
103
HostInformation
* hostForURL(const KURL&, CreateHostPolicy = FindOnly);
104
void servePendingRequests(
HostInformation
*, ResourceLoadPriority);
106
typedef HashMap<String,
HostInformation
*, StringHash> HostMap;
108
HostInformation
* m_nonHTTPProtocolHost;
ResourceLoadScheduler.cpp
53
ResourceLoadScheduler::
HostInformation
* ResourceLoadScheduler::hostForURL(const KURL& url, CreateHostPolicy createHostPolicy)
60
HostInformation
* host = m_hosts.get(hostName);
62
host = new
HostInformation
(hostName, maxRequestsInFlightPerHost);
76
: m_nonHTTPProtocolHost(new
HostInformation
(String(), maxRequestsInFlightForNonHTTPProtocols))
117
HostInformation
* host = hostForURL(resourceLoader->url(), CreateIfNotFound);
136
HostInformation
* host = hostForURL(resourceLoader->url());
144
HostInformation
* oldHost = hostForURL(resourceLoader->url());
146
HostInformation
* newHost = hostForURL(redirectURL, CreateIfNotFound);
165
Vector<
HostInformation
*> hostsToServe;
173
HostInformation
* host = hostsToServe[i]
[
all
...]
Completed in 23 milliseconds