HomeSort by relevance Sort by last modified time
    Searched refs:Host (Results 1 - 25 of 66) sorted by null

1 2 3

  /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/webkit/Source/JavaScriptCore/wtf/url/src/
URLSegments.h 46 Host,
83 // Host: 7 7
96 URLComponent host; member in class:WTF::URLSegments
URLSegments.cpp 70 if (host.isValid()) {
71 if (type <= Host)
72 return host.begin();
73 current = host.end();
  /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...]
  /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
  /frameworks/compile/mclinker/lib/Target/
ELFEmulation.cpp 12 #include <llvm/Support/Host.h>
  /external/webkit/Tools/Scripts/webkitpy/tool/
main.py 39 from webkitpy.common.host import Host
50 class WebKitPatch(MultiCommandTool, Host):
55 make_option("--status-host", action="store", dest="status_host", type="string", help="Hostname (e.g. localhost or commit.webkit.org) where status updates should be posted."),
63 Host.__init__(self)
  /external/clang/
clang-host-build.mk 27 define transform-host-clang-td-to-out
29 @echo "Host Clang TableGen: $(TBLGEN_LOCAL_MODULE) (gen-$(1)) <= $<"
33 -I $(LLVM_ROOT_PATH)/host/include \
  /external/llvm/
llvm-host-build.mk 43 $(LLVM_ROOT_PATH)/host/include \
51 define transform-host-td-to-out
53 @echo "Host TableGen: $(TBLGEN_LOCAL_MODULE) (gen-$(1)) <= $<"
57 -I $(LLVM_ROOT_PATH)/host/include \
  /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...]
  /external/openssh/regress/
envpass.sh 10 Host test-sendenv-confparse-bug
  /sdk/emulator/opengl/
Android.mk 19 EMUGL_COMMON_INCLUDES := $(EMUGL_PATH)/host/include/libOpenglRender
50 # First, build the emugen host source-generation tool
55 include $(EMUGL_PATH)/host/tools/emugen/Android.mk
59 # Host static libraries
60 include $(EMUGL_PATH)/host/libs/GLESv1_dec/Android.mk
61 include $(EMUGL_PATH)/host/libs/GLESv2_dec/Android.mk
62 include $(EMUGL_PATH)/host/libs/renderControl_dec/Android.mk
64 include $(EMUGL_PATH)/host/libs/Translator/GLcommon/Android.mk
65 include $(EMUGL_PATH)/host/libs/Translator/GLES_CM/Android.mk
66 include $(EMUGL_PATH)/host/libs/Translator/GLES_V2/Android.m
    [all...]
  /external/llvm/unittests/ExecutionEngine/MCJIT/
MCJITTestBase.h 31 #include "llvm/Support/Host.h"
81 /// Returns true if the host architecture is known to support MCJIT
83 Triple Host(HostTriple);
84 if (std::find(SupportedArchs.begin(), SupportedArchs.end(), Host.getArch())
91 /// Returns true if the host OS is known to support MCJIT
93 Triple Host(HostTriple);
94 if (std::find(UnsupportedOSs.begin(), UnsupportedOSs.end(), Host.getOS())
  /frameworks/compile/mclinker/lib/LD/
RelocationFactory.cpp 14 #include <llvm/Support/Host.h>
47 // byte swapping if the host and target have different endian
  /development/tools/elftree/
Android.mk 35 # Host executable
43 -include external/elfutils/host-$(HOST_OS)-fixup/AndroidFixup.h
  /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));
  /sdk/emulator/opengl/shared/OpenglOsUtils/
Android.mk 9 ### Host library ##############################################
30 ### 32-bit host library ####
31 $(call emugl-begin-host-static-library,libOpenglOsUtils)
37 ### 64-bit host library ####
38 $(call emugl-begin-host-static-library,lib64OpenglOsUtils)
  /external/webkit/Tools/Scripts/webkitpy/common/
host.py 39 class Host(object):
  /frameworks/compile/mclinker/include/mcld/LD/
ELFReaderIf.h 17 #include <llvm/Support/Host.h>
  /ndk/build/core/
init.mk 110 # Function : host-prebuilt-tag
114 # Usage : $(call host-prebuilt-tag, <path>)
120 host-prebuilt-tag = $1/prebuilt/$(HOST_TAG)
122 host-prebuilt-tag = \
128 # Host system auto-detection.
133 # Determine host system and architecture from the environment
163 $(call ndk_log,Host OS was auto-detected: $(HOST_OS))
165 $(call ndk_log,Host OS from environment: $(HOST_OS))
187 $(call ndk_log,Found /bin/uname.exe on Windows host, checking for Cygwin)
209 $(call ndk_log, Host operating system detected: $(HOST_OS), base OS: $(HOST_OS_BASE)
    [all...]
  /frameworks/base/services/java/com/android/server/
AppWidgetServiceImpl.java 96 * When identifying a Host or Provider based on the calling process, use the uid field. When
97 * identifying a Host or Provider based on a package manager broadcast, use the package given.
110 static class Host {
122 // For a host that's in the system process, ignore the user id
135 Host host; field in class:AppWidgetServiceImpl.AppWidgetId
190 final ArrayList<Host> mHosts = new ArrayList<Host>();
201 ArrayList<Host> mDeletedHosts = new ArrayList<Host>();
451 Host host = lookupOrAddHostLocked(callingUid, packageName, hostId); local
488 Host host = lookupHostLocked(callingUid, hostId); local
506 Host host = mHosts.get(i); local
535 Host host = id.host; local
1220 Host host = lookupOrAddHostLocked(callingUid, packageName, hostId); local
1243 Host host = lookupHostLocked(Binder.getCallingUid(), hostId); local
1310 Host host = new Host(); local
1457 Host host = lookupHostLocked(callingUid, hostId); local
1674 Host host = mHosts.get(i); local
1767 Host host = new Host(); local
2063 Host host = mHosts.get(i); local
2075 Host host = mHosts.get(i); local
    [all...]

Completed in 619 milliseconds

1 2 3