HomeSort by relevance Sort by last modified time
    Searched defs:hosts (Results 1 - 25 of 59) sorted by null

1 2 3

  /libcore/benchmarks/src/benchmarks/regression/
DnsBenchmark.java 24 String[] hosts = new String[] { local
43 InetAddress.getByName(hosts[i % hosts.length]);
  /prebuilts/go/darwin-x86/src/net/
hosts.go 30 // hosts contains known host entries.
31 var hosts struct { var
55 if now.Before(hosts.expire) && hosts.path == hp && len(hosts.byName) > 0 {
59 if err == nil && hosts.path == hp && hosts.mtime.Equal(mtime) && hosts.size == size {
60 hosts.expire = now.Add(cacheMaxAge)
93 hosts.expire = now.Add(cacheMaxAge
    [all...]
  /prebuilts/go/linux-x86/src/net/
hosts.go 30 // hosts contains known host entries.
31 var hosts struct { var
55 if now.Before(hosts.expire) && hosts.path == hp && len(hosts.byName) > 0 {
59 if err == nil && hosts.path == hp && hosts.mtime.Equal(mtime) && hosts.size == size {
60 hosts.expire = now.Add(cacheMaxAge)
93 hosts.expire = now.Add(cacheMaxAge
    [all...]
  /external/autotest/cli/
change_protection_level.py 15 assert len(leftover_args) > 1, 'Must pass protection level and hosts'
22 hosts = afe_proxy.run('get_hosts', hostname__in=leftover_args[1:]) variable
23 for host in hosts:
32 print 'Invalid hosts:'
33 print ','.join(set(leftover_args[1:]) - set(host['hostname'] for host in hosts))
query_results 85 hosts = [row[0] for row in results] variable
86 where += " AND hostname IN ('" + "','".join(hosts) + "')"
  /external/boringssl/src/crypto/x509/
vpm_int.h 63 STACK_OF(OPENSSL_STRING) *hosts; /* Set of acceptable names */ member in struct:X509_VERIFY_PARAM_ID_st
  /external/jcommander/src/test/java/com/beust/jcommander/args/
Args2.java 41 public List hosts = new ArrayList(); field in class:Args2
  /external/autotest/contrib/
dhcp_failed_machines.py 73 hosts = sorted([lookup(h) for h in offenders]) variable
75 pprint.pprint(hosts)
81 (len(hosts), ', '.join(hosts)))
85 (len(hosts), ', '.join(hosts)))
89 (len(hosts), ', '.join(hosts)))
  /external/autotest/frontend/client/src/autotest/afe/
HostDataSource.java 27 * Convert the raw JSONObjects to Hosts.
31 List<JSONObject> hosts = new ArrayList<JSONObject>(); local
35 hosts.add(host);
37 return hosts;
HostSelector.java 33 * A widget to facilitate selection of a group of hosts for running a job. The
35 * {@link HostTable} displaying available, unselected hosts, and the right table
36 * displays selected hosts. Click on a host in either table moves it to the
38 * convenience controls (such as one to remove all selected hosts) and a special
47 public List<String> hosts = new ArrayList<String>(); field in class:HostSelector.HostSelection
156 List<String> hosts = Utils.splitListWithSpaces(display.getHostnameField().getText()); local
158 setSelectedHostnames(hosts, allowOneTimeHosts);
161 public void setSelectedHostnames(final List<String> hosts, final boolean allowOneTimeHosts) {
162 // figure out which hosts exist in the system and which should be one-time hosts
    [all...]
  /external/libmicrohttpd/src/testcurl/https/
test_https_sni.c 43 struct Hosts
45 struct Hosts *next;
55 static struct Hosts *hosts; variable in typeref:struct:Hosts
67 struct Hosts *host;
69 host = malloc (sizeof (struct Hosts));
73 host->next = hosts;
74 hosts = host;
144 struct Hosts *host;
155 for (host = hosts; NULL != host; host = host->next
    [all...]
  /external/webrtc/webrtc/p2p/client/
httpportallocator.cc 127 ServerAddresses hosts; local
130 hosts.insert(*it);
133 PortConfiguration* config = new PortConfiguration(hosts,
153 LOG(LS_ERROR) << "HttpPortAllocator: no relay hosts configured.";
195 ServerAddresses hosts; local
198 hosts.insert(*it);
201 PortConfiguration* config = new PortConfiguration(hosts,
  /frameworks/base/packages/StatementService/src/com/android/statementservice/
IntentFilterVerificationReceiver.java 48 * the maximum number of hosts in a query. If a query contains more than
49 * {@code MAX_HOSTS_PER_REQUEST} hosts, it will fail immediately without making any HTTP request
67 "Request contains %d hosts which is more than the allowed %d.";
89 String hosts = inputExtras.getString( local
97 String[] hostList = hosts.split(" ");
148 "Verifying IntentFilter. verificationId:%d scheme:\"%s\" hosts:\"%s\" package:\"%s\".";
  /external/ImageMagick/MagickCore/
distribute-cache.c 278 *hosts,
293 hosts=(char *) GetImageRegistry(StringRegistryType,"cache:hosts",exception);
294 if (hosts == (char *) NULL)
299 (void) SubstituteString(&hosts,","," ");
300 hostlist=StringToArgv(hosts,&argc);
301 hosts=DestroyString(hosts);
307 hosts=AcquireString(hostlist[(id++ % (argc-1))+1]);
311 (void) SubstituteString(&hosts,":"," ")
275 *hosts, local
    [all...]
  /external/python/cpython3/Lib/
ipaddress.py 616 def hosts(self): member in class:_BaseNetwork
617 """Generate Iterator over usable hosts in a network.
721 """Number of hosts in the current subnet."""
2236 def hosts(self): member in class:IPv6Network
    [all...]
  /frameworks/base/services/backup/java/com/android/server/backup/
TransportManager.java 541 List<ResolveInfo> hosts = local
543 if (hosts == null) {
546 for (ResolveInfo host : hosts) {
  /frameworks/layoutlib/bridge/tests/src/com/android/layoutlib/bridge/intensive/
RenderTestBase.java 202 File[] hosts = host.listFiles(path -> path.isDirectory() && local
205 assert hosts != null;
206 for (File hostOut : hosts) {
  /system/nfc/src/nfa/include/
nfa_hci_api.h 188 uint8_t num_hosts; /* Number of hosts in the host network */
270 tNFA_HCI_HOST_LIST hosts; /* NFA_HCI_HOST_LIST_EVT */ member in union:__anon3421
397 ** list of hosts that are present in the host network. When
  /external/mdnsresponder/mDNSPosix/
NetMonitor.c 191 HostEntry *hosts; member in struct:__anon28846
203 HostEntry *entry = list->hosts + i;
218 HostEntry *newHosts = realloc(list->hosts, newMax * sizeof(HostEntry));
222 list->hosts = newHosts;
225 entry = list->hosts + list->num++;
358 HostEntry *e, *end = &list->hosts[(max < list->num) ? max : list->num];
359 qsort(list->hosts, list->num, sizeof(HostEntry), CompareHosts);
361 for (e = &list->hosts[0]; e < end; e++)
    [all...]
  /external/autotest/frontend/afe/
models.py 45 An atomic group defines a collection of hosts which must only be scheduled
47 scheduled for a job at the same time as other hosts sharing that label.
77 """Enqueue a job on an associated atomic group of hosts.
558 """Get hosts by label filters.
560 @param label_names: label (string) lists for fetching hosts.
574 # Some labels don't exist in afe db, which means no hosts
589 """Get hosts by label_id filters.
591 @param label_ids: label id (int) lists for fetching hosts.
636 """Assigns hosts to a shard.
638 For all labels that have been assigned to a shard, all hosts tha
1129 hosts = dbmodels.ManyToManyField(Host, blank=True, variable in class:AclGroup
    [all...]
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/org.eclipse.core.runtime.compatibility.registry_3.5.200.v20130514-1256/
runtime_registry_compatibility.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.core.net_1.2.200.v20130430-1352.jar 
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/X11/
Xproto.h 1295 xListHostsReply hosts; member in union:__anon61524
    [all...]
  /prebuilts/tools/common/m2/repository/org/seleniumhq/selenium/selenium-htmlunit-driver/2.42.2/
selenium-htmlunit-driver-2.42.2.jar 
  /prebuilts/tools/common/eclipse/
org.eclipse.osgi_3.6.2.R36x_v20110210.jar 

Completed in 493 milliseconds

1 2 3