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

<<11121314151617181920>>

  /external/python/cpython3/Lib/test/
test_imaplib.py 199 self.server = self.server_class((support.HOST, 0), imap_handler)
554 server, thread = self.make_server((support.HOST, 0), hdlr)
889 host = 'cyrus.andrew.cmu.edu' variable in class:RemoteIMAPTest
    [all...]
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/tester/org/apache/http/
FakeHttpLayer.java 285 public RequestMatcherBuilder host(String hostname) { method in class:FakeHttpLayer.RequestMatcherBuilder
  /external/robolectric-shadows/shadows/httpclient/src/main/java/org/robolectric/shadows/httpclient/
FakeHttpLayer.java 374 public RequestMatcherBuilder host(String hostname) { method in class:FakeHttpLayer.RequestMatcherBuilder
  /external/tensorflow/tensorflow/core/platform/
env.cc 94 StringPiece scheme, host, path; local
95 io::ParseURI(fname, &scheme, &host, &path);
168 StringPiece scheme, host, path; local
169 io::ParseURI(file, &scheme, &host, &path);
  /external/valgrind/coregrind/m_gdbserver/
remote-utils.c 304 -from-vgdb-to-pid-by-user-on-host and -to-vgdb-from-pid-by-user-on-host
311 const HChar *user, *host; local
332 host = VG_(getenv)("HOST");
333 if (host == NULL) host = VG_(getenv)("HOSTNAME");
334 if (host == NULL) host = "???";
335 if (VG_(strchr)(host, '/')) host = "???"
    [all...]
  /external/volley/src/main/java/com/android/volley/
Request.java 199 * @return The hashcode of the URL's host component, or 0 if there is none.
205 String host = uri.getHost(); local
206 if (host != null) {
207 return host.hashCode();
  /external/webrtc/webrtc/base/
httpclient.cc 327 // Setting 'Host' here allows it to be overridden before starting the request,
381 std::string host, path; local
382 if (request().getRelativeUri(&host, &path)) {
383 request().setHeader(HH_HOST, host);
419 set_server(SocketAddress(purl.host(), purl.port()));
429 set_server(SocketAddress(purl.host(), purl.port()));
747 set_server(SocketAddress(purl.host(), purl.port()));
  /external/wpa_supplicant_8/src/wps/
wps_upnp.c 313 char *host; local
334 host = scratch_mem;
335 path = os_strchr(host, '/');
337 *path++ = '\0'; /* null terminate host */
340 delim = os_strchr(host, ':');
342 *delim = '\0'; /* null terminate host name for now */
367 rerr = getaddrinfo(host, NULL /* fill in port ourselves */,
371 rerr, gai_strerror(rerr), host);
378 host_len = os_strlen(host);
397 os_memcpy(mem, host, host_len)
    [all...]
  /frameworks/av/media/libstagefright/rtsp/
ARTSPConnection.cpp 133 const char *url, AString *host, unsigned *port, AString *path,
135 host->clear();
148 host->setTo(&url[7]);
151 host->setTo(&url[7], slashPos - &url[7]);
155 ssize_t atPos = host->find("@");
160 AString userPass(*host, 0, atPos);
161 host->erase(0, atPos + 1);
173 const char *colonPos = strchr(host->c_str(), ':');
183 size_t colonOffset = colonPos - host->c_str();
184 size_t trailing = host->size() - colonOffset
234 AString host, path; local
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/customize/
TileAdapter.java 100 public void setHost(QSTileHost host) {
101 mHost = host;
112 public void saveSpecs(QSTileHost host) {
117 host.changeTiles(mCurrentSpecs, newSpecs);
121 public void resetTileSpecs(QSTileHost host, List<String> specs) {
122 // Notify the host so the tiles get removed callbacks.
123 host.changeTiles(mCurrentSpecs, specs);
  /frameworks/base/packages/services/Proxy/src/com/android/proxyhandler/
ProxyServer.java 84 String host; local
89 host = hostPortSplit[0];
101 urlString = "Https://" + host + ":" + port;
105 host = url.getHost();
133 server = new Socket(host, port);
154 server = new Socket(host, port);
259 * Sends an augmented request to the final host (DIRECT connection).
  /frameworks/layoutlib/bridge/tests/src/com/android/layoutlib/bridge/intensive/
RenderTestBase.java 198 File host = new File(out, "host"); local
199 if (!host.isDirectory()) {
202 File[] hosts = host.listFiles(path -> path.isDirectory() &&
  /libcore/ojluni/src/main/java/java/net/
URL.java 61 * information resides on a host machine named
62 * {@code www.example.com}. The information on that host
64 * meaning of this name on the host machine is both protocol
65 * dependent and host dependent. The information normally resides in
70 * port number to which the TCP connection is made on the remote host
117 * the protocol, host name, or port number is missing, the value is
172 * The host name to connect to.
175 private String host; field in class:URL
184 * The specified file name on that host. {@code file} is
218 * The host's IP address, used in equals and hashCode
1364 String host = (String)gf.get("host", null); local
1410 String host = tempState.getHost(); local
    [all...]
  /packages/apps/CertInstaller/src/com/android/certinstaller/
CertInstaller.java 504 void run(CertInstaller host);
515 public void run(CertInstaller host) {
520 host.extractPkcs12InBackground(mPassword);
525 public void run(CertInstaller host) {
526 host.mNextAction = null;
527 host.installOthers();
538 public void run(CertInstaller host) {
539 host.onExtractionDone(mSuccess);
  /packages/apps/DocumentsUI/src/com/android/documentsui/sidebar/
RootsFragment.java 195 final DragHost host = new DragHost( local
200 mDragListener = new ItemDragListener<DragHost>(host) {
  /packages/services/BuiltInPrintService/jni/ipphelper/
ipphelper.c 683 char host[1024]; local
685 httpSeparateURI(0, uri, scheme, 1024, username, 1024, host, 1024, &port, resource, resourcelen);
    [all...]
  /packages/services/Car/tests/usb/AoapHostApp/src/com/google/android/car/usb/aoap/host/
SpeedMeasurementController.java 16 package com.google.android.car.usb.aoap.host;
87 * Test runs two type of USB host->phone write tests:
  /packages/services/Mms/src/com/android/mms/service/
MmsHttpClient.java 108 * @param proxyHost The proxy host
415 * Redact the URL for non-VERBOSE logging. Replace url with only the host part and the length
430 String host = ""; local
434 host = url.getHost();
438 // Print "http://host[length]"
440 sb.append(protocol).append("://").append(host)
  /prebuilts/gdb/darwin-x86/lib/python2.7/
imaplib.py 103 Instantiate with: IMAP4([host[, port]])
105 host - host's name (default: localhost);
151 def __init__(self, host = '', port = IMAP4_PORT):
163 self.open(host, port)
221 def open(self, host = '', port = IMAP4_PORT):
222 """Setup connection to remote server on "host:port"
227 self.host = host
229 self.sock = socket.create_connection((host, port)
1437 host = args[0] variable
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
imaplib.py 103 Instantiate with: IMAP4([host[, port]])
105 host - host's name (default: localhost);
151 def __init__(self, host = '', port = IMAP4_PORT):
163 self.open(host, port)
221 def open(self, host = '', port = IMAP4_PORT):
222 """Setup connection to remote server on "host:port"
227 self.host = host
229 self.sock = socket.create_connection((host, port)
1437 host = args[0] variable
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
imaplib.py 103 Instantiate with: IMAP4([host[, port]])
105 host - host's name (default: localhost);
151 def __init__(self, host = '', port = IMAP4_PORT):
163 self.open(host, port)
221 def open(self, host = '', port = IMAP4_PORT):
222 """Setup connection to remote server on "host:port"
227 self.host = host
229 self.sock = socket.create_connection((host, port)
1437 host = args[0] variable
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
imaplib.py 103 Instantiate with: IMAP4([host[, port]])
105 host - host's name (default: localhost);
151 def __init__(self, host = '', port = IMAP4_PORT):
163 self.open(host, port)
221 def open(self, host = '', port = IMAP4_PORT):
222 """Setup connection to remote server on "host:port"
227 self.host = host
229 self.sock = socket.create_connection((host, port)
1437 host = args[0] variable
    [all...]
  /system/core/adb/
adb.cpp 431 // When receiving A_OKAY from device for A_OPEN request, the host server may
449 * send packets to close connections between the host and
1153 std::string host; local
    [all...]
  /system/core/logd/
LogKlog.cpp 664 static const char host[] = "_host"; local
665 static const ssize_t hostlen = strlen(host);
667 !fastcmp<strncmp>(bt + size - hostlen, host, hostlen) &&
  /system/netd/tests/
netd_test.cpp 194 char host[NI_MAXHOST]; local
195 int rv = getnameinfo(aip->ai_addr, aip->ai_addrlen, host, sizeof(host), nullptr, 0,
199 return host;
246 int rv = getaddrinfo(mapping.host.c_str(), nullptr, nullptr, &result);
338 const hostent* result = gethostbyname(mapping.host.c_str());
    [all...]

Completed in 2020 milliseconds

<<11121314151617181920>>