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

1 2 3 4 5 6 78 91011>>

  /prebuilts/tools/common/m2/repository/net/sourceforge/htmlunit/htmlunit/2.14/
htmlunit-2.14.jar 
  /cts/hostsidetests/systemui/src/android/host/systemui/
BaseTileServiceTest.java 15 package android.host.systemui;
  /cts/tests/camera/libctscamera2jni/
dng-validate-jni.cpp 91 dng_host host; local
93 host.SetPreferredSize(gPreferredSize);
94 host.SetMinimumSize(gMinimumSize);
95 host.SetMaximumSize(gMaximumSize);
97 host.ValidateSizes();
99 if (host.MinimumSize()) {
100 host.SetForPreview(true);
105 host.SetSaveDNGVersion(dngVersion_SaveDefault);
106 host.SetSaveLinearDNG(false);
107 host.SetKeepOriginalFile(false)
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/app/
FragmentTabsFragment.java 49 TabHost host = mTabManager.handleCreateView(v); local
51 mTabManager.addTab(host.newTabSpec("result").setIndicator("Result"),
53 mTabManager.addTab(host.newTabSpec("contacts").setIndicator("Contacts"),
55 mTabManager.addTab(host.newTabSpec("apps").setIndicator("Apps"),
57 mTabManager.addTab(host.newTabSpec("throttle").setIndicator("Throttle"),
83 * associating fragments with the tabs in a tab host. DO NOT USE THIS.
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/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)
  /external/apache-http/src/org/apache/http/impl/cookie/
RFC2965Spec.java 213 * Set 'effective host name' as defined in RFC 2965.
215 * If a host name contains no dots, the effective host name is
217 * the effective host name is the same as the host name. Note
218 * that all effective host names contain at least one dot.
224 String host = origin.getHost(); local
226 // Test if the host name appears to be a fully qualified DNS name,
229 for (int i = 0; i < host.length(); i++) {
230 char ch = host.charAt(i)
    [all...]
  /external/autotest/client/common_lib/cros/network/
iw_runner_unittest.py 18 """Mock host command class."""
44 class host(object): class in class:IwRunnerTest
45 """Mock host class."""
327 host = self.host(scan_output + self.SCAN_TIME_OUTPUT)
328 runner = iw_runner.IwRunner(remote_host=host)
378 host = self.host(scan_output + self.SCAN_TIME_OUTPUT)
379 runner = iw_runner.IwRunner(remote_host=host)
389 host = self.host(self.STATION_LINK_INFORMATION
    [all...]
  /external/autotest/scheduler/
agent_task.py 50 - state of Host, HQE (to something like Resetting)
70 - epilog: Is generally where we set status of the Host/HQE again,
162 # A map between host id and hostname.
167 def _set_ids(self, host=None, queue_entries=None):
173 if entry.host is not None:
174 self.host_ids.append(entry.host.id)
176 self.hostnames[entry.host.id] = entry.host.hostname
179 'No host is found for host_queue_entry_id: %r',
186 assert host
598 host = None variable in class:SpecialAgentTask
    [all...]
  /external/autotest/server/lib/
status_history.py 84 """Information about an event in host history.
86 This remembers the relevant data from a single event in host
243 """Return special tasks for a host in a given time range.
246 special tasks that ran on the given host in the given time
251 @param host_id Database host id of the desired host.
270 """Return the task indicating a host's status at a given time.
277 @param host_id Database host id of the desired host.
319 (self._afetask.host.hostname, self._afetask.id
556 def host(self): member in class:HostJobHistory
    [all...]
  /external/boringssl/src/crypto/bio/
connect.c 116 // split_host_and_port sets |*out_host| and |*out_port| to the host and port
120 const char *host, *port = NULL; local
131 host = name + 1;
132 host_len = close - host;
141 host = name;
143 } else { // host:port
144 host = name;
150 *out_host = BUF_strndup(host, host_len);
188 char *host, *port; local
189 if (!split_host_and_port(&host, &port, c->param_hostname) |
    [all...]
  /external/boringssl/src/crypto/x509v3/
v3name_test.cc 90 "set CN: host: [*.example.com] matches [a.example.com]",
91 "set CN: host: [*.example.com] matches [b.example.com]",
92 "set CN: host: [*.example.com] matches [www.example.com]",
93 "set CN: host: [*.example.com] matches [xn--rger-koa.example.com]",
94 "set CN: host: [*.www.example.com] matches [test.www.example.com]",
95 "set CN: host: [*.www.example.com] matches [.www.example.com]",
96 "set CN: host: [*www.example.com] matches [www.example.com]",
97 "set CN: host: [test.www.example.com] matches [.www.example.com]",
98 "set CN: host: [*.xn--rger-koa.example.com] matches [www.xn--rger-koa.example.com]",
99 "set CN: host: [*.xn--bar.com] matches [xn--foo.xn--bar.com]"
281 int host; member in struct:set_name_fn
    [all...]
  /external/conscrypt/common/src/main/java/org/conscrypt/
FileClientSessionCache.java 51 * This cache creates one file per SSL session using "host.port" for
123 * Gets the file name for the given host and port.
125 private static String fileName(String host, int port) {
126 if (host == null) {
127 throw new NullPointerException("host == null");
129 return host + "." + port;
133 public synchronized byte[] getSessionData(String host, int port) {
140 String name = fileName(host, port);
165 logReadError(host, file, e);
174 logReadError(host, file, e)
195 String host = session.getPeerHost(); local
    [all...]
NativeSslSession.java 82 AbstractSessionContext context, byte[] data, String host, int port) {
155 return new Impl(context, ref, host, port, peerCerts, ocspData, tlsSctData);
217 private final String host; field in class:NativeSslSession.Impl
225 private Impl(AbstractSessionContext context, NativeRef.SSL_SESSION ref, String host,
229 this.host = host;
277 return host;
  /external/curl/lib/vauth/
ntlm.c 388 const char *host = ""; /* empty */ local
393 size_t domoff = hostoff + hostlen; /* This is 0: remember that host and
414 "%c%c" /* host length */
415 "%c%c" /* host allocated space */
416 "%c%c" /* host name offset */
418 "%s" /* host name */
436 host, /* this is empty */
524 char host[HOSTNAME_MAX + 1] = ""; local
548 /* Get the machine's un-qualified host name as NTLM doesn't like the fully
550 if(Curl_gethostname(host, sizeof(host)))
    [all...]
  /external/fio/engines/
libhdfs.c 31 char *host; member in struct:hdfsio_options
44 .off1 = offsetof(struct hdfsio_options, host),
54 .off1 = offsetof(struct hdfsio_options, host),
358 if (options->host == NULL || options->port == 0) {
369 hdfsBuilderSetNameNode(bld, options->host);
  /external/google-breakpad/src/common/windows/
http_upload.cc 82 wchar_t scheme[16], host[256], path[256]; local
88 components.lpszHostName = host;
89 components.dwHostNameLength = sizeof(host) / sizeof(host[0]);
113 host,
  /external/ipsec-tools/src/racoon/
isakmp_xauth.h 135 vchar_t *host; member in struct:xauth_ldap_config
  /external/iptables/extensions/
libxt_mangle.c 176 xtables_error(PARAMETER_PROBLEM, "host/network `%s' not found", name);
297 struct hostent *host; local
299 if ((host = gethostbyaddr((char *) addr,
301 return (char *) host->h_name;
  /external/iptables/iptables/
nft-arp.c 59 struct hostent *host; local
61 if ((host = gethostbyaddr((char *) addr,
63 return (char *) host->h_name;
  /external/jacoco/org.jacoco.agent.rt/src/org/jacoco/agent/rt/internal/
Agent.java 216 String host; local
218 host = InetAddress.getLocalHost().getHostName();
222 host = "unknownhost";
224 return host + "-" + AbstractRuntime.createRandomId();
  /external/libcups/cups/
auth.c 544 struct hostent *host; /* Host entry to get FQDN */ local
546 if ((host = gethostbyname(http->gsshost)) != NULL && host->h_name)
552 strlcpy(http->gsshost, host->h_name, sizeof(http->gsshost));
testppd.c 876 host[256], /* Hostname */ local
880 if (httpSeparateURI(HTTP_URI_CODING_ALL, argv[1], scheme, sizeof(scheme), userpass, sizeof(userpass), host, sizeof(host), &port, resource, sizeof(resource)) < HTTP_URI_STATUS_OK)
886 http = httpConnect2(host, port, NULL, AF_UNSPEC, !strcmp(scheme, "ipps") ? HTTP_ENCRYPTION_ALWAYS : HTTP_ENCRYPTION_IF_REQUESTED, 1, 30000, NULL);
889 printf("Unable to connect to \"%s:%d\": %s\n", host, port, cupsLastErrorString());
  /external/libevent/sample/
https-client.c 127 const char *host = (const char *) arg; local
147 res = validate_hostname(host, server_cert);
177 host, cert_str);
181 res_str, host, cert_str);
195 const char *scheme, *host, *path, *query; local
291 host = evhttp_uri_get_host(http_uri);
292 if (host == NULL) {
293 err("url must have a host");
370 (void *) host);
391 SSL_set_tlsext_host_name(ssl, host);
    [all...]
  /external/libmicrohttpd/src/microspdy/
applicationlayer.c 67 char *host = NULL; local
111 else if(strcmp(":host",iterator->name) == 0)
116 host = iterator->value[0];
138 request->host=host;
146 || NULL == host || strlen(host) == 0
166 host,
  /external/libpcap/
pcap-new.c 64 #define PCAP_TEXT_SOURCE_ON_LOCAL_HOST "on local host"
101 char host[PCAP_BUF_SIZE], port[PCAP_BUF_SIZE], name[PCAP_BUF_SIZE], path[PCAP_BUF_SIZE], filename[PCAP_BUF_SIZE]; local
119 * In the second case, the name of the adapter is not required (we need just the host). So, we have
128 if (pcap_parsesrcstr(source, &type, host, NULL, NULL, errbuf) == -1)
134 /* The user wants to retrieve adapters from a local host */
204 if (pcap_parsesrcstr(source, &type, host, port, name, errbuf) == -1)
345 /* If we come here, it is a remote host */
348 if (pcap_parsesrcstr(source, &type, host, port, NULL, errbuf) == -1)
357 sockctrl = rpcap_remoteact_getsock(host, &active, errbuf);
375 if (sock_initaddress(host, RPCAP_DEFAULT_NETPORT, &hints, &addrinfo, errbuf, PCAP_ERRBUF_SIZE) == -1
899 char host[PCAP_BUF_SIZE], port[PCAP_BUF_SIZE], name[PCAP_BUF_SIZE]; local
    [all...]

Completed in 534 milliseconds

1 2 3 4 5 6 78 91011>>