HomeSort by relevance Sort by last modified time
    Searched refs:HostInformation (Results 1 - 5 of 5) 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...]
  /external/jmdns/src/javax/jmdns/impl/
DNSQuestion.java 78 private static class HostInformation extends DNSQuestion {
79 HostInformation(String name, DNSRecordType type, DNSRecordClass recordClass, boolean unique) {
247 return new HostInformation(name, type, recordClass, unique);
DNSRecord.java 848 public static class HostInformation extends DNSRecord {
860 public HostInformation(String name, DNSRecordClass recordClass, boolean unique, int ttl, String cpu, String os) {
899 if (! (other instanceof HostInformation) ) {
902 HostInformation hinfo = (HostInformation) other;
    [all...]
DNSIncoming.java 339 rec = new DNSRecord.HostInformation(domain, recordClass, unique, ttl, cpu, os);

Completed in 72 milliseconds