HomeSort by relevance Sort by last modified time
    Searched defs:host (Results 226 - 250 of 1129) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /packages/apps/Contacts/src/com/android/contacts/
ContactsUtils.java 163 String host = im.getCustomProtocol(); local
169 // Try bringing in a well-known host for specific protocols
170 host = ContactsUtils.lookupProviderNameFromId(protocol);
172 if (TextUtils.isEmpty(host)) {
175 final String authority = host.toLowerCase();
  /packages/services/Car/tests/usb/AoapHostApp/src/com/google/android/car/usb/aoap/host/
UsbAoapHostActivity.java 16 package com.google.android.car.usb.aoap.host;
36 * Host activity for AOAP test app.
55 setContentView(R.layout.host);
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_imaplib.py 143 server, thread = self.make_server((support.HOST, 0), hdlr)
182 host = 'cyrus.andrew.cmu.edu' variable in class:RemoteIMAPTest
189 with transient_internet(self.host):
190 self.server = self.imap_class(self.host, self.port)
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_imaplib.py 143 server, thread = self.make_server((support.HOST, 0), hdlr)
182 host = 'cyrus.andrew.cmu.edu' variable in class:RemoteIMAPTest
189 with transient_internet(self.host):
190 self.server = self.imap_class(self.host, self.port)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_imaplib.py 143 server, thread = self.make_server((support.HOST, 0), hdlr)
182 host = 'cyrus.andrew.cmu.edu' variable in class:RemoteIMAPTest
189 with transient_internet(self.host):
190 self.server = self.imap_class(self.host, self.port)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_imaplib.py 143 server, thread = self.make_server((support.HOST, 0), hdlr)
182 host = 'cyrus.andrew.cmu.edu' variable in class:RemoteIMAPTest
189 with transient_internet(self.host):
190 self.server = self.imap_class(self.host, self.port)
  /system/core/adb/
services.cpp 422 char* host = reinterpret_cast<char*>(data); local
424 if (!strncmp(host, "emu:", 4)) {
425 connect_emulator(host + 4, &response);
427 connect_device(host, &response);
429 free(host);
488 char* host = strdup(name + 8); local
489 int fd = create_service_thread("connect", connect_service, host);
491 free(host);
transport_local.cpp 77 std::string host; local
79 if (!android::base::ParseNetAddress(address, &host, &port, &serial, response)) {
84 int fd = network_connect(host.c_str(), port, SOCK_STREAM, 10, &error);
119 const char *host = getenv("ADBHOST"); local
120 if (host) {
121 fd = network_connect(host, adb_port, SOCK_STREAM, 0, error);
236 std::string serial = android::base::StringPrintf("host-%d", fd);
264 /* A worker thread that monitors host connections, and registers a transport for
265 * every new host connection. This thread replaces server_socket_thread on
268 * to provide more robust communication channel between ADB host and guest. Th
    [all...]
  /test/vti/test_serving/gae/webapp/src/proto/
model.py 129 """A message for representing an individual lab host's device entry."""
135 """A message for representing an individual lab's host entry."""
147 host = messages.MessageField( variable in class:LabInfoMessage
162 """A message for representing an individual host's device entry."""
170 """A message for representing an individual host entry."""
  /frameworks/support/leanback/src/main/java/androidx/leanback/media/
PlaybackControlGlue.java 242 protected void onAttachedToHost(PlaybackGlueHost host) {
243 super.onAttachedToHost(host);
244 host.setOnKeyInterceptListener(this);
245 host.setOnActionClickedListener(this);
249 host.setPlaybackRowPresenter(getPlaybackRowPresenter());
250 host.setPlaybackRow(getControlsRow());
  /art/runtime/jdwp/
jdwp.h 112 std::string host = ""; member in struct:art::JDWP::JdwpOptions
  /cts/tests/tests/networksecurityconfig/networksecurityconfig-downloadmanager/src/android/security/net/config/cts/
DownloadManagerTest.java 103 String host = (https ? "https" : "http") + "://localhost"; local
104 Uri destination = Uri.parse(host + ":" + serverSocket.getLocalPort());
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
ftplib.py 8 >>> ftp = FTP('ftp.python.org') # connect to host, default port
82 host, user, passwd, acct, timeout
90 Then use self.connect() with optional host and port argument.
102 host = '' variable in class:FTP
110 # Initialize host to localhost, port to standard ftp port
111 # Optional arguments are host (for connect()),
113 def __init__(self, host='', user='', passwd='', acct='',
116 if host:
117 self.connect(host)
121 def connect(self, host='', port=0, timeout=-999):
    [all...]
  /device/linaro/bootloader/edk2/StdLib/BsdSocketLib/
gethostbydns.c 137 static struct hostent host; variable in typeref:struct:hostent
213 host.h_name = NULL;
257 host.h_name = bp;
261 qname = host.h_name;
265 host.h_aliases = host_aliases;
268 host.h_addr_list = h_addr_ptrs;
325 host.h_name = bp;
385 host.h_name = bp;
401 host.h_name = bp;
410 _map_v4v6_hostent(&host, &bp, &buflen);
    [all...]
  /external/ImageMagick/MagickCore/
distribute-cache.c 42 % available on a single host. The distributed pixel cache may span multiple
277 *host,
291 Parse host list (e.g. 192.168.100.1:6668,192.168.100.2:6668).
318 host=AcquireString(hostlist[1]);
326 return(host);
274 *host, local
    [all...]
  /external/conscrypt/testing/src/main/java/org/conscrypt/javax/net/ssl/
TestSSLContext.java 84 public final InetAddress host; field in class:TestSSLContext
175 SSLContext serverContext, SSLServerSocket serverSocket, InetAddress host, int port) {
187 this.host = host;
328 InetAddress host = TestUtils.getLoopbackAddress(); local
329 serverSocket.bind(new InetSocketAddress(host, 0));
336 serverSocket, host, port);
348 * listening provided host and port.
430 public Socket createSocket(String host, int port) throws IOException {
431 return set(sf.createSocket(host, port))
    [all...]
  /external/curl/lib/
ldap.c 282 TCHAR *host = NULL; local
284 char *host = NULL; local
312 host = Curl_convert_UTF8_to_tchar(conn->host.name);
313 if(!host) {
319 host = conn->host.name;
336 server = ldap_sslinit(host, (int)conn->port, 1);
382 server = ldapssl_init(host, (int)conn->port, 1);
385 conn->host.dispname, conn->port)
    [all...]
  /external/deqp/framework/delibs/deutil/
deSocket.c 68 char* host; member in struct:deSocketAddress_s
102 deFree(address->host);
117 deBool deSocketAddress_setHost (deSocketAddress* address, const char* host)
119 if (address->host)
121 deFree(address->host);
122 address->host = DE_NULL;
125 address->host = deStrdup(host);
126 return address->host != DE_NULL;
131 return address->host;
    [all...]
  /external/mdnsresponder/mDNSShared/
dnssd_clientshim.c 62 domainname host; member in struct:__anon28868
230 const char *host, /* may be NULL */
256 if (!MakeDomainNameFromDNSNameString(&h, (host && *host ) ? host : "")) { errormsg = "Bad Target Host"; goto badparam; }
273 x->host = h;
278 &x->host, port, // Host and port
  /external/mtpd/
pptp.c 106 char host[64]; member in struct:packet::__anon30713::__anon30714::__anon30716::__anon30717
227 strcpy(outgoing.sccrq.host, "anonymous");
  /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/okhttp/okhttp/src/main/java/com/squareup/okhttp/
Call.java 148 String host() { method in class:Call.AsyncCall
149 return originalRequest.httpUrl().host();
  /external/python/cpython2/Lib/
ftplib.py 8 >>> ftp = FTP('ftp.python.org') # connect to host, default port
84 host, user, passwd, acct, timeout
92 Then use self.connect() with optional host and port argument.
104 host = '' variable in class:FTP
113 # Initialize host to localhost, port to standard ftp port
114 # Optional arguments are host (for connect()),
116 def __init__(self, host='', user='', passwd='', acct='',
119 if host:
120 self.connect(host)
124 def connect(self, host='', port=0, timeout=-999)
    [all...]
  /external/python/cpython3/Lib/
ftplib.py 8 >>> ftp = FTP('ftp.python.org') # connect to host, default port
79 host, user, passwd, acct, timeout
87 Then use self.connect() with optional host and port argument.
99 host = '' variable in class:FTP
109 # Initialize host to localhost, port to standard ftp port
110 # Optional arguments are host (for connect()),
112 def __init__(self, host='', user='', passwd='', acct='',
116 if host:
117 self.connect(host)
135 def connect(self, host='', port=0, timeout=-999, source_address=None)
    [all...]
  /external/testng/src/main/java/org/testng/
CommandLineArgs.java 125 public static final String HOST = "-host";
126 @Parameter(names = HOST, description = "The host", hidden = true)
127 public String host; field in class:CommandLineArgs
130 @Parameter(names = MASTER, description = "Host where the master is", hidden = true)
134 @Parameter(names = SLAVE, description = "Host where the slave is", hidden = true)

Completed in 651 milliseconds

1 2 3 4 5 6 7 8 91011>>