HomeSort by relevance Sort by last modified time
    Searched defs:Host (Results 1 - 7 of 7) sorted by null

  /external/webkit/WebCore/loader/
loader.h 67 class Host : public RefCounted<Host>, private SubresourceLoaderClient {
69 static PassRefPtr<Host> create(const AtomicString& name, unsigned maxRequestsInFlight)
71 return adoptRef(new Host(name, maxRequestsInFlight));
73 ~Host();
86 Host(const AtomicString&, unsigned);
106 typedef HashMap<AtomicStringImpl*, RefPtr<Host> > HostMap;
108 RefPtr<Host> m_nonHTTPProtocolHost;
loader.cpp 63 m_nonHTTPProtocolHost = Host::create(AtomicString(), maxRequestsInFlightForNonHTTPProtocols);
125 RefPtr<Host> host; local
129 AtomicString hostName = url.host();
130 host = m_hosts.get(hostName.impl());
131 if (!host) {
132 host = Host::create(hostName, maxRequestsInFlightPerHost);
133 m_hosts.add(hostName.impl(), host);
136 host = m_nonHTTPProtocolHost
180 Host* host = hostsToServe[n]; local
211 RefPtr<Host> host = m_hosts.get(hostName.impl()); local
227 RefPtr<Host> host = m_hosts.get(hostName.impl()); local
250 Host* host = hostsToCancel[n]; local
    [all...]
  /external/nist-sip/java/gov/nist/core/
Host.java 55 public class Host extends GenericObject {
85 public Host() {
92 /** Constructor given host name or IP address.
94 public Host(String hostName) throws IllegalArgumentException {
96 throw new IllegalArgumentException("null host name");
108 public Host(String name, int addrType) {
116 * Return the host name in encoded form.
134 * Host names are compared by textual equality. No dns lookup
144 Host otherHost = (Host) obj
    [all...]
  /external/v8/samples/
process.cc 49 virtual const string& Host() = 0;
461 const string& path = request->Host();
483 result->SetAccessor(String::NewSymbol("host"), GetHost);
506 const string& host,
510 virtual const string& Host() { return host_; }
522 const string& host,
526 host_(host),
  /external/v8/src/
d8.js 96 Debug.ScriptCompilationType = { Host: 0,
1092 } else { // body[i].compilation == Debug.ScriptCompilationType.Host
    [all...]
debug-debugger.js 65 Debug.ScriptCompilationType = { Host: 0,
    [all...]
  /frameworks/base/services/java/com/android/server/
AppWidgetService.java 77 * When identifying a Host or Provider based on the calling process, use the uid field.
78 * When identifying a Host or Provider based on a package manager broadcast, use the
92 static class Host {
107 Host host; field in class:AppWidgetService.AppWidgetId
117 ArrayList<Host> mHosts = new ArrayList<Host>();
193 pw.print(id.host.hostId); pw.print(' ');
194 pw.print(id.host.packageName); pw.print('/');
195 pw.println(id.host.uid)
212 Host host = mHosts.get(i); local
229 Host host = lookupOrAddHostLocked(callingUid, packageName, hostId); local
257 Host host = lookupHostLocked(callingUid, hostId); local
271 Host host = mHosts.get(i); local
296 Host host = id.host; local
470 Host host = lookupOrAddHostLocked(callingUid, packageName, hostId); local
489 Host host = lookupHostLocked(getCallingUid(), hostId); local
558 Host host = new Host(); local
881 Host host = mHosts.get(i); local
970 Host host = new Host(); local
1259 Host host = mHosts.get(i); local
    [all...]

Completed in 182 milliseconds