HomeSort by relevance Sort by last modified time
    Searched refs:Host (Results 1 - 25 of 25) 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/
HostPort.java 47 // host / ipv4/ ipv6/
48 /** host field
50 protected Host host; field in class:HostPort
61 host = null;
76 host.encode(buffer);
92 return port == that.port && host.equals(that.host);
95 /** get the Host field
96 * @return host fiel
    [all...]
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...]
HostNameParser.java 43 * Parser for host names.
163 lexer.getBuffer() + ": Illegal Host name ",
171 public Host host() throws ParseException { method in class:HostNameParser
173 dbg_enter("host");
201 lexer.getBuffer() + ": Missing host name",
204 return new Host(hostname);
207 dbg_leave("host");
218 * @return true if the host part of <tt>uriHeader</tt> could be an IPv6
223 // approximately detect the end the host part
240 String host = uriHeader.substring(0, hostEnd); local
265 Host host = this.host(); local
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/stack/
MessageProcessor.java 28 import gov.nist.core.Host;
135 this.sentByHostPort.setHost(new Host(ipAddress.getHostAddress()));
171 Host host = new Host(); local
172 host.setHostname(this.getIpAddress().getHostAddress());
173 via.setHost(host);
226 this.sentByHostPort.setHost( new Host(ipAddress.getHostAddress()));
241 this.sentByHostPort.setHost(new Host(sentBy));
244 this.sentByHostPort.setHost(new Host(sentBy.substring(0, ind)))
    [all...]
MessageChannel.java 32 import gov.nist.core.Host;
128 * @return a string contianing the ip address or host name of the sender of the message.
152 * Get the host to assign for an outgoing Request via header.
172 * Get the host of this message channel.
174 * @return host of this messsage channel.
277 * Generate a key given host and port.
289 retval.setHost(new Host(this.getHost()));
295 * Get the peer host and port.
301 retval.setHost(new Host(this.getPeerAddress()));
324 * Get the via header host:port structure. This is extracted from the topmost via header o
    [all...]
SIPTransactionStack.java 28 import gov.nist.core.Host;
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/
Via.java 31 import gov.nist.core.Host;
152 * Get the host, port and transport as a Hop. This is
217 /** set the Host of the Via Header
218 * @param host String to set
220 public void setHost(Host host) {
224 sentBy.setHost(host);
275 * Set the host part of this ViaHeader to the newly supplied <code>host</code>
279 * unexpectedly while parsing the host value
301 Host host = sentBy.getHost(); local
472 Host host = new Host(); local
    [all...]
  /external/ppp/pppd/plugins/radius/etc/
dictionary.compat 10 ATTRIBUTE Login-Host 14 ipaddr
28 ATTRIBUTE Login-Host 14 ipaddr
dictionary 59 ATTRIBUTE Login-IP-Host 14 ipaddr
212 VALUE Acct-Terminate-Cause Host-Request 18
dictionary.ascend 33 ATTRIBUTE Ascend-User-Acct-Host 139 ipaddr
144 ATTRIBUTE Ascend-Host-Info 252 string
  /external/nist-sip/java/gov/nist/javax/sip/address/
Authority.java 55 * Return the host name in encoded form.
131 * Get the host name.
132 * @return Host (null if not set)
134 public Host getHost() {
180 * set the host.
181 * @param host Host to set
183 public void setHost(Host host) {
186 hostPort.setHost(host);
    [all...]
SipUri.java 164 // For two URIs to be equal, the user, password, host, and port
266 * getUser@host
267 * @return user@host portion of the uri (null if none exists).
276 String host = authority.getHost().encode(); local
283 return s.append(host).toString();
287 * getUser@host
288 * @return user@host portion of the uri (null if none exists).
295 String host = authority.getHost().encode(); local
305 return s.append(host).append(COLON).append(port).toString();
307 return s.append(host).toString()
605 Host host = new Host(); local
    [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...]
  /external/nist-sip/java/gov/nist/javax/sip/
ListeningPointImpl.java 37 import gov.nist.core.Host;
86 * @param host host string
91 public static String makeKey(String host, int port, String transport) {
92 return new StringBuffer(host)
103 * @return get the host
249 targetHostPort.setHost(new Host( ipAddress));
  /ndk/build/core/
init.mk 83 # Host system auto-detection.
88 # Determine host system and architecture from the environment
118 $(call ndk_log,Host OS was auto-detected: $(HOST_OS))
120 $(call ndk_log,Host OS from environment: $(HOST_OS))
140 $(call __ndk_info,Unsupported host architecture: $(UNAME))
144 $(call ndk_log,Host CPU was auto-detected: $(HOST_ARCH))
146 $(call ndk_log,Host CPU from environment: $(HOST_ARCH))
151 # The directory separator used on this host
172 # special-case the host-tag
184 $(call ndk_log,Host awk tool was auto-detected: $(HOST_AWK)
    [all...]
  /build/core/
java_library.mk 7 $(error $(LOCAL_PATH): Host java libraries must use BUILD_HOST_JAVA_LIBRARY)
  /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/nist-sip/java/gov/nist/javax/sip/parser/
StringMsgParser.java 33 import gov.nist.core.Host;
438 * Parse a host:port and return a parsed structure.
441 * is a String containing the host:port to be parsed
455 * Parse a host name and return a parsed structure.
457 * @param host
458 * is a String containing the host name to be parsed
464 public Host parseHost(String host) throws ParseException {
465 Lexer lexer = new Lexer("charLexer", host);
466 return new HostNameParser(lexer).host();
    [all...]
  /external/v8/test/mjsunit/
debug-compile-event.js 59 case Debug.ScriptCompilationType.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...]
  /external/chromium/googleurl/src/
url_canon_unittest.cc 91 const char* host; member in struct:__anon2341::ReplaceCase
343 TEST(URLCanonTest, Host) {
390 // Invalid escaping should trigger the regular host error handling.
392 // Something that isn't exactly an IP should get treated as a host and
    [all...]
  /external/iproute2/doc/
ip-cref.tex 97 host addresses.
412 the host attached to a NBMA link has no means to send to anyone
599 is derived by setting/resetting the host bits of the interface prefix.
628 \item \verb|host| --- the address is valid only inside this host.
638 \item \verb|ip addr add 127.0.0.1/8 dev lo brd + scope host|
824 acquired by the host from stateless address autoconfiguration
    [all...]

Completed in 2997 milliseconds