/ndk/build/platforms/android-5/arch-x86/usr/include/sys/ |
_errdefs.h | 148 __BIONIC_ERRDEF( EHOSTDOWN , 112, "Host is down" ) 149 __BIONIC_ERRDEF( EHOSTUNREACH , 113, "No route to host" )
|
/ndk/build/platforms/android-8/arch-arm/usr/include/sys/ |
_errdefs.h | 148 __BIONIC_ERRDEF( EHOSTDOWN , 112, "Host is down" ) 149 __BIONIC_ERRDEF( EHOSTUNREACH , 113, "No route to host" )
|
/ndk/build/platforms/android-8/arch-x86/usr/include/sys/ |
_errdefs.h | 148 __BIONIC_ERRDEF( EHOSTDOWN , 112, "Host is down" ) 149 __BIONIC_ERRDEF( EHOSTUNREACH , 113, "No route to host" )
|
/packages/apps/Email/src/com/android/email/service/ |
EmailServiceProxy.java | 195 public int validate(final String protocol, final String host, final String userName, 202 mReturn = mService.validate(protocol, host, userName, password, port, ssl,
|
/sdk/eclipse/scripts/ |
build_plugins.sh | 59 HOST=`uname` 60 [ "$HOST" == "Linux" ] || die "ERROR: This script is currently only supported on Linux platform"
|
/system/wlan/ti/wilink_6_1/TWD/FW_Transfer/ |
txXfer.c | 45 * host slave (indirect) interface, using the TwIf Transaction API. 209 /* Prepare the Txn fields to the host-slave register (fixed address) */
|
/dalvik/libcore/dom/src/test/java/org/w3c/domts/ |
DOMTestCase.java | 652 * @param host 653 * Expected host, for example, "www.w3.org". If null, host is 674 String host, 730 if (host != null) { 736 assertEquals(assertID, host, actualHost);
|
/dalvik/libcore/luni/src/test/java/tests/api/java/net/ |
ProxySelectorTest.java | 75 tcpUri = new URI("socket://host.com"); 451 // set https proxy host empty 500 // set ftp host empty 667 * "host","port". 670 String host, int port) { 671 SocketAddress sa = InetSocketAddress.createUnresolved(host, port);
|
/external/dnsmasq/man/fr/ |
dnsmasq.8 | 407 .B \-m, --mx-host=<nom de l'hôte>[[,<nom du MX>],<préference>] 423 .B --mx-host. 427 .B --mx-host, 445 .B \-W --srv-host=<_service>.<_protocole>.[<domaine>],[<cible>[,<port>[,<priorité>[,<poids>]]]] 510 .B dhcp-host. 538 .B dhcp-host 550 .B \-G, --dhcp-host=[<adresse matérielle>][,id:<identifiant client>|*][,net:<identifiant de réseau>][,<adresse IP>][,<nom d'hôte>][,<durée de bail>][,ignore] 558 .B --dhcp-host=00:20:e0:3b:13:af,wap,infinite 562 .B --dhcp-host=lap,192.168.0.199 569 .B --dhcp-host=id:01:02:03:04,..... [all...] |
/external/openssl/crypto/bio/ |
b_sock.c | 159 ERR_add_error_data(2,"host=",str); 581 int BIO_get_accept_socket(char *host, int bind_mode) 595 if ((str=BUF_strdup(host)) == NULL) return(INVALID_SOCKET); 643 ERR_add_error_data(3,"port='",host,"'"); 686 ERR_add_error_data(3,"port='",host,"'"); 693 ERR_add_error_data(3,"port='",host,"'");
|
/external/qemu/proxy/ |
proxy_http_rewriter.c | 30 * Host: www.example.com 567 char* host = http_request_find_header(r, "Host"); local 568 if (host == NULL) { 569 PROXY_LOG("%s: uh oh, not Host: in request ?", root->name); 573 stralloc_add_str(str, host); [all...] |
/external/webkit/WebCore/bindings/v8/ |
V8DOMWindowShell.cpp | 96 static Frame* getTargetFrame(v8::Local<v8::Object> host, v8::Local<v8::Value> data) 101 v8::Handle<v8::Object> window = V8DOMWrapper::lookupDOMWrapper(V8DOMWindow::GetTemplate(), host); 110 History* history = V8History::toNative(host); 115 Location* location = V8Location::toNative(host); 125 static void reportUnsafeJavaScriptAccess(v8::Local<v8::Object> host, v8::AccessType type, v8::Local<v8::Value> data) 127 Frame* target = getTargetFrame(host, data);
|
/external/webkit/WebCore/platform/network/cf/ |
ResourceHandleCFNet.cpp | 335 if (allowsAnyHTTPSCertificateHosts().contains(request.url().host().lower())) { 343 HashMap<String, RetainPtr<CFDataRef> >::iterator clientCert = clientCerts().find(request.url().host().lower()); 578 void ResourceHandle::setHostAllowsAnyHTTPSCertificate(const String& host) 580 allowsAnyHTTPSCertificateHosts().add(host.lower()); 583 void ResourceHandle::setClientCertificate(const String& host, CFDataRef cert) 585 clientCerts().set(host.lower(), cert); [all...] |
/external/qemu/ |
exec.c | 119 uint8_t *host; member in struct:RAMBlock 157 /* offset in host memory of the page + io_index in the low bits */ 299 /* Host memory outside guest VM. For 32-bit targets we have already 434 the host cpu and OS */ 2603 uint8_t *host = ptr; local [all...] |
sockets.c | 109 EE(WSAEHOSTDOWN,EHOSTDOWN,"host is down") \ 110 EE(WSAEHOSTUNREACH,EHOSTUNREACH,"no route to host") \ 835 char* host, 860 ret = getnameinfo( saddr, slen, host, hostlen, serv, servlen, 1338 socket_network_client( const char* host, int port, SocketType type ) 1342 if (sock_address_init_resolve( &addr, host, port, 0) < 0) [all...] |
/external/ipsec-tools/src/racoon/ |
isakmp_xauth.c | 311 * On failure, throttle the connexion for the remote host 729 xauth_ldap_config.host = NULL; 742 /* set default host */ 744 xauth_ldap_config.host = vmalloc(tmplen); 745 if (xauth_ldap_config.host == NULL) 747 memcpy(xauth_ldap_config.host->v, LDAP_DFLT_HOST, tmplen); 821 tmplen += strlen(xauth_ldap_config.host->v); 829 xauth_ldap_config.host->v, 1049 tmplen += strlen(xauth_ldap_config.host->v); 1057 xauth_ldap_config.host->v [all...] |
/external/libpcap/ |
gencode.c | [all...] |
/build/core/ |
build-system.html | 99 <li>The build system will support building tools for the host platform, 164 and a static library for the host.</p> 385 host, they're built into <combo>/host/bin. These can be overridden by setting 393 <p>Remember that on the target, we use shared libraries, and on the host, 400 <p>Remember that on the target, we use shared libraries, and on the host, 413 and <code>$(local-host-intermediates-dir)</code> macros use these variables 584 and definitions that are specific to either the host or the target builds. 734 to use a library preinstalled on the host. The linker (ld) is a particularl [all...] |
/external/qemu/hw/ |
bt-l2cap.c | [all...] |
/external/qemu/slirp/ |
tcp_subr.c | 59 * Call after host entry created, fills 92 * of the tcpiphdr at ti and send directly to the addressed host. 360 * Connect to a host on the Internet 419 * Accept the socket and connect to the local-host 422 * to first connect to the local-host, and only if the 425 * to the socket to be able to SYN the local-host, and 426 * b) we are already connected to the foreign host by 428 * here and SYN the local-host. 644 /* n2 is the one on our host */ [all...] |
/external/quake/quake/src/WinQuake/ |
Makefile.linuxi386 | 125 $(BUILDDIR)/squake/host.o \ 270 $(BUILDDIR)/squake/host.o : $(MOUNT_DIR)/host.c 499 $(BUILDDIR)/x11/host.o \ 643 $(BUILDDIR)/x11/host.o : $(MOUNT_DIR)/host.c 872 $(BUILDDIR)/glquake/host.o \ 993 $(BUILDDIR)/glquake/host.o : $(MOUNT_DIR)/host.c [all...] |
/external/dropbear/ |
CHANGES | 34 - Add '-y' flag to dbclient to unconditionally accept host keys, 256 - Fixed stupid DSS hostkey typo (server couldn't load host keys) 302 - Fix for network vs. host byte order in logging remote TCP ports, also 514 - Improved host-algorithm-matching algorithm in algo.c 549 - Add dropbearconvert to convert to/from OpenSSH host keys and Dropbear keys
|
/frameworks/base/core/tests/hosttests/src/android/content/pm/ |
PackageManagerHostTestUtils.java | 47 * Set of tests that verify host side install cases 156 * @param localFilePath the absolute file system path to file on local host to install 167 * @param localFilePath the absolute file system path to file on local host to install 181 * @param localFilePath the absolute file system path to file on local host to install 370 * Helper method ensures we are in root mode on the host side. It returns only after
|
/frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/ |
TestShellActivity.java | 517 String host, String realm) { 519 String[] credentials = view.getHttpAuthUsernamePassword(host, realm); 641 String host = ""; 647 host = url.getHost(); 656 ", " + host + ", " + port + "} database:" +
|
/hardware/broadcom/wlan/bcm4329/src/ |
Makerules | 301 WIND_BIN = $(WIND_BASE)/host/$(WIND_HOST_TYPE)/bin 383 # It should be used in situations where the host environment is cygwin, and 384 # the host compiler is a native Win32 app (non-cygwin). It will convert the 485 # It should be used in situations where the host environment is cygwin, and 486 # the host compiler is a native Win32 app (non-cygwin). It will convert the
|