Searched refs:host (Results 1 - 20 of 20) sorted by path

/system/core/adb/
H A DAndroid.mk8 # adb host tool
50 LOCAL_C_INCLUDES += development/host/windows/usb/api/
137 # adb host tool for device-as-host
H A Dservices.c426 static void connect_device(char* host, char* buffer, int buffer_size) argument
429 char* portstr = strchr(host, ':');
434 strncpy(hostbuf, host, sizeof(hostbuf) - 1);
436 if (portstr - host >= (ptrdiff_t)sizeof(hostbuf)) {
437 snprintf(buffer, buffer_size, "bad host name %s", host);
440 // zero terminate the host at the point we found the colon
441 hostbuf[portstr - host] = 0;
454 snprintf(buffer, buffer_size, "unable to connect to %s:%d", host, port);
530 char *host local
577 const char *host = name + 8; local
[all...]
H A Dsysdeps.h171 extern int socket_network_client(const char *host, int port, int type);
H A Dsysdeps_win32.c662 int socket_network_client(const char *host, int port, int type) argument
675 hp = gethostbyname(host);
699 D( "socket_network_client: host '%s' port %d type %s => fd %d\n", host, port, type != SOCK_STREAM ? "udp" : "tcp", _fh_to_int(f) );
H A Dtransport_local.c118 const char *host = getenv("ADBHOST"); local
119 if (host) {
120 fd = socket_network_client(host, adb_port, SOCK_STREAM);
184 register_socket_transport(fd, "host", port, 1);
207 /* A worker thread that monitors host connections, and registers a transport for
208 * every new host connection. This thread replaces server_socket_thread on
211 * to provide more robust communication channel between ADB host and guest. The
215 * the connection between ADB host and guest will be lost. To make ADB traffic
217 * between the host, and the guest. See external/qemu/android/adb-*.* that
225 * - Wait for the ADB host t
[all...]
/system/core/fastboot/
H A DAndroid.mk49 LOCAL_C_INCLUDES += development/host/windows/usb/api
/system/core/include/cutils/
H A Dsockets.h58 #else /* for the host, which may lack the almightly strncpy ... */
88 extern int socket_network_client(const char *host, int port, int type);
/system/core/libcutils/
H A DAndroid.mk52 ashmem-host.c
55 # they correspond to features not used by our host development tools
75 # Static library for host
85 # Static library for host, 64-bit
H A Dsocket_network_client.c39 int socket_network_client(const char *host, int port, int type) argument
46 hp = gethostbyname(host);
/system/core/libutils/
H A DAndroid.mk17 # libutils is a little unique: It's built twice, once for the host
62 # For the host
76 # For the host, 64-bit
/system/core/libzipfile/
H A DAndroid.mk3 # build host static library
/system/extras/ext4_utils/
H A DAndroid.mk19 # -- All host/targets including windows
51 # -- All host/targets excluding windows
/system/extras/tests/bionic/libc/
H A DAndroid.mk43 # same as 'device-test' but builds a host executable instead
46 define host-test
91 $(call host-test, $(sources))
125 $(call host-test, $(sources))
135 $(call host-test, $(sources))
/system/extras/tests/bionic/libstdc++/
H A DAndroid.mk41 # same as 'device-test' but builds a host executable instead
44 define host-test
71 $(call host-test, $(sources))
76 # host environments don't provide it unless you use specific
/system/netd/
H A DDnsProxyListener.cpp51 char* host,
59 mHost(host),
50 GetAddrInfoHandler(SocketClient *c, char* host, char* service, struct addrinfo* hints, char* iface, pid_t pid, uid_t uid, int mark) argument
H A DDnsProxyListener.h43 // Note: All of host, service, and hints may be NULL
45 char* host,
H A DMDnsSdListener.cpp156 const char *domain, const char *host, int port, int txtLen, void *txtRecord) {
159 interfaceName, serviceName, serviceType, domain, host, port, txtLen);
173 serviceType, domain, host, port, txtLen, txtRecord, &MDnsSdListenerRegisterCallback,
429 char *host = NULL; // will use default hostname local
434 serviceType, domain, host, port, textLen, textRecord);
154 serviceRegister(SocketClient *cli, int requestId, const char *interfaceName, const char *serviceName, const char *serviceType, const char *domain, const char *host, int port, int txtLen, void *txtRecord) argument
H A DMDnsSdListener.h119 const char *host, int port, int textLen, void *txtRecord);
H A DSecondaryTableController.cpp538 int SecondaryTableController::addHostExemption(const char *host) { argument
539 return setHostExemption(host, true);
542 int SecondaryTableController::removeHostExemption(const char *host) { argument
543 return setHostExemption(host, false);
546 int SecondaryTableController::setHostExemption(const char *host, bool add) { argument
549 getVersion(host),
555 host,
H A DSecondaryTableController.h53 int addHostExemption(const char *host);
54 int removeHostExemption(const char *host);
71 int setHostExemption(const char *host, bool add);

Completed in 171 milliseconds