HomeSort by relevance Sort by last modified time
    Searched full:host (Results 151 - 175 of 2243) sorted by null

1 2 3 4 5 67 8 91011>>

  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/share/info/
configure.info 112 features of the host system at build time.
267 to use a `--exec-prefix' option of `/usr/cygnus/RELEASE/H-HOST', where
268 HOST is the configuration name of the host system (*note Configuration
381 This macro looks for the executable suffix used on the host
838 script to discover the configuration features on the host system, rather
    [all...]
  /prebuilt/linux-x86/toolchain/i686-unknown-linux-gnu-4.2.1/info/
configure.info 112 features of the host system at build time.
267 to use a `--exec-prefix' option of `/usr/cygnus/RELEASE/H-HOST', where
268 HOST is the configuration name of the host system (*note Configuration
381 This macro looks for the executable suffix used on the host
838 script to discover the configuration features on the host system, rather
    [all...]
  /dalvik/libcore/luni/src/main/java/java/net/
URI.java 56 private transient String host; field in class:URI
132 * {@code [scheme:][user-info@]host[:port][path][?query][#fragment]}
139 * @param host
140 * the host name of the URI.
144 * the path to the resource on the host.
154 public URI(String scheme, String userinfo, String host, int port,
158 if (scheme == null && userinfo == null && host == null && path == null
175 if (userinfo != null || host != null || port != -1) {
185 if (host != null) {
188 if (host.indexOf(':') != -1 && host.indexOf(']') == -
    [all...]
NoRouteToHostException.java 22 * to a remote host but the host cannot be reached for instance because of a
Socket.java 130 String host; local
132 host = addr.getHostAddress();
134 host = address.getHostName();
137 checkConnectPermission(host, port);
149 * the target host name or IP address to connect to.
151 * the port on the target host to connect to.
153 * the address on the local host to bind to.
155 * the port on the local host to bind to.
160 * if the host name could not be resolved into an IP address.
199 * Creates a new streaming socket connected to the target host specified b
    [all...]
  /dalvik/libcore/support/src/test/java/org/apache/harmony/xnet/tests/support/
SSLContextSpiImpl.java 61 public SSLEngine engineCreateSSLEngine(String host, int port) {
71 return new tmpSSLEngine(host, port);
  /development/testrunner/test_defs/
native_test.py 59 # Host tests are under out/host/<os>-<arch>/bin.
61 logger.SilentLog("Host tests %s" % host_list)
68 # Run on the host
69 logger.Log("\nRunning on host")
147 """Run a command on the host (opt using valgrind).
149 Runs the host binary and returns the exit code.
157 out/host/<os>-<arch>/bin.
  /development/tools/hosttestlib/src/com/android/hosttest/
DeviceTest.java 41 * Retrieves host file system path that contains test app files
47 * Sets host file system path that contains test app files
  /external/dropbear/
scpmisc.c 106 cleanhostname(char *host)
108 if (*host == '[' && host[strlen(host) - 1] == ']') {
109 host[strlen(host) - 1] = '\0';
110 return (host + 1);
112 return host;
  /external/icu4c/data/
icupkg.inc.in 42 host=@host@
  /external/iptables/extensions/
libipt_REJECT.man 18 .B " icmp-host-unreachable"
22 .B " icmp-host-prohibited or"
  /external/qemu/android/utils/
timezone.h 15 /* try to set the default host timezone, returns 0 on success, or -1 if
20 /* append the current host "zoneinfo" timezone name to a given buffer. note
  /external/skia/include/core/
SkGraphics.h 39 implemented by the host OS. This allows the host OS to register a callback
  /external/webkit/WebCore/platform/network/cf/
DNSCFNet.cpp 129 RetainPtr<CFHostRef> host(AdoptCF, CFHostCreateWithName(0, hostnameCF.get()));
130 if (!host) {
135 Boolean result = CFHostSetClient(host.get(), clientCallback, &context);
138 CFHostScheduleWithRunLoop(host.get(), CFRunLoopGetMain(), kCFRunLoopCommonModes);
141 CFHostScheduleWithRunLoop(host.get(), loaderRunLoop(), kCFRunLoopDefaultMode);
143 CFHostStartInfoResolution(host.get(), kCFHostAddresses, 0);
144 host.releaseRef(); // The host will be released from clientCallback().
  /external/webkit/WebKitTools/Scripts/webkitpy/
credentials.py 45 def __init__(self, host, git_prefix=None, executive=None, cwd=os.getcwd()):
46 self.host = host
85 self.host,
91 "Click \"Allow\" to continue..." % self.host)
98 log("Could not find a keychain entry for %s." % self.host)
128 username = User.prompt("%s login: " % self.host)
130 password = getpass.getpass("%s password for %s: " % (self.host,
  /frameworks/base/core/java/android/appwidget/
package.html 4 contain widgets is called a "AppWidget host."
28 <p>For more information on implementing your own widget host, see the
  /frameworks/base/core/java/android/webkit/
CookieSyncManager.java 32 * To use the CookieSyncManager, the host application has to call the following
38 * To set up for sync, the host application has to call<p>
50 * To get instant sync instead of waiting for the timer to trigger, the host can
108 // null mDataBase implies that the host application doesn't support
122 // null mDataBase implies that the host application doesn't support
135 // null mDataBase implies that the host application doesn't support
149 // null mDataBase implies that the host application doesn't support
163 // null mDataBase implies that the host application doesn't support
  /build/tools/droiddoc/test/stubs/
func.sh 36 LD_LIBRARY_PATH=out/host/$PLATFORM/lib \
40 -J-Djava.library.path=out/host/$PLATFORM/lib \
44 -docletpath out/host/$PLATFORM/framework/clearsilver.jar:out/host/$PLATFORM/framework/droiddoc.jar:out/host/$PLATFORM/framework/apicheck.jar \
  /dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/internal/net/www/protocol/file/
Handler.java 73 String host = url.getHost(); local
74 if (host == null || host.length() == 0
75 || host.equalsIgnoreCase("localhost")) { //$NON-NLS-1$
80 URL ftpURL = new URL("ftp", host, url.getFile()); //$NON-NLS-1$
  /dalvik/libcore/x-net/src/main/java/javax/net/ssl/
SSLSocketFactory.java 123 * to the specified host at the specified port.
127 * @param host
128 * the host.
139 * if the host is unknown.
141 public abstract Socket createSocket(Socket s, String host, int port, boolean autoClose)
  /external/webkit/WebCore/loader/mac/
LoaderNSURLExtras.mm 60 // lastPathComponent is no good, try the host.
61 NSString *host = KURL(url).host();
62 filename = filenameByFixingIllegalCharacters(host);
69 // For example, if the filename ends up being the host, we wouldn't want to correct ".com" in "www.apple.com".
  /external/webkit/WebCore/page/
Location.cpp 77 String Location::host() const function in class:WebCore::Location
83 // "The hostname property is the concatenation of the host and port properties, separated by a colon."
85 return url.port() ? url.host() + ":" + String::number((static_cast<int>(url.port()))) : url.host();
93 return url().host();
  /external/dbus/dbus/
dbus-server-socket.c 301 * @param host the hostname to listen on.
307 _dbus_server_new_for_tcp_socket (const char *host,
324 if (host == NULL)
325 host = "localhost";
327 _dbus_string_init_const (&host_str, host);
328 if (!_dbus_string_append (&address, "tcp:host=") ||
338 listen_fd = _dbus_listen_tcp_socket (host, port, error);
388 const char *host = dbus_address_entry_get_value (entry, "host"); local
411 *server_p = _dbus_server_new_for_tcp_socket (host, lport, error)
    [all...]
  /external/ipsec-tools/src/racoon/doc/
README.plainrsa 15 that the setup needs a pair of reasonably long keys for each host that
27 RSA keys for the host. There are only two parameters that you should
47 be made available to the other host that you are setting up. Copy
57 find a way to get the public key over to the other host involved.
64 each host to (a) turn on RSA authentication, and (b) designate each
65 host's private key and the remote host(s)'s public key(s). Take all
75 Next, you need to specify the host's own private key and the public
87 5) You have finished configuring the host for RSA authentication.
100 2) You have specified correctly the host's own private key and th
    [all...]
  /external/webkit/WebCore/wml/
WMLPageState.cpp 74 String host = passedHost; local
75 return host.replace("127.0.0.1", "localhost");
84 String host = normalizedHostName(url.host()); local
85 return host.isEmpty() ? "localhost" : host;
197 bool WMLPageState::hostIsAllowedToAccess(const String& host) const
207 if (host.contains('.'))
208 host.split('.', subdomainsCheck);
210 subdomainsCheck.append(host);
    [all...]

Completed in 212 milliseconds

1 2 3 4 5 67 8 91011>>