HomeSort by relevance Sort by last modified time
    Searched defs:hosts (Results 51 - 75 of 122) sorted by null

1 23 4 5

  /external/autotest/server/cros/clique_lib/
clique_runner.py 15 from autotest_lib.server import hosts namespace
  /external/autotest/server/cros/network/
wifi_test_context_manager.py 10 from autotest_lib.server import hosts namespace
194 hosts.SSHHost(attenuator_addr, port=22))
  /external/autotest/server/
profilers.py 5 from autotest_lib.server import profiler, autotest, standalone_profiler, hosts namespace
63 Install autotest on any current job hosts.
66 # find hosts in use but not used by us
67 for host in self.job.hosts:
69 # job.hosts include all host instances created on the fly.
76 logging.debug('Hosts currently in use: %s', in_use_hosts)
89 logging.debug('Hosts with profiler clients already installed: %s',
92 # install autotest on any new hosts in use
94 host = hosts.create_host(hostname)
100 # drop any installs from hosts no longer in job.host
    [all...]
site_linux_router.py 18 from autotest_lib.server import hosts namespace
76 return LinuxRouter(hosts.create_host(router_hostname), test_name,
    [all...]
  /external/autotest/site_utils/
brillo_common.py 12 from autotest_lib.server import hosts namespace
14 from autotest_lib.server.hosts import moblab_host
15 from autotest_lib.server.hosts import ssh_host
65 host = hosts.create_host(moblab_hostname,
  /external/autotest/site_utils/deployment/
install.py 68 from autotest_lib.server import hosts namespace
176 host = hosts.create_host(hostname, try_lab_servo=True)
461 """Report results for a list of hosts.
  /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/autotest/cli/contrib/
why_isnt_my_job_running.py 43 # Hosts in Repairing or Repair Failed will have Queued queue entries.
60 # the script is run on an atomic group job which has hosts assigned
62 # never run because hosts have exited Repairing into the Repair Failed
69 print 'that it run on more than 1 (atomic group) of hosts via the '
82 print '(and thus no hosts) are associated with that atomic group.'
113 print 'Not checking hosts in atomic label %s against' % (
115 print 'job dependency label %s. There may be less hosts' % (
119 # Get the list of hosts associated with this atomic group label.
132 for hostname in acl['hosts']:
136 # Exclude any hosts that ACLs deny us access to
217 hosts = proxy.run('get_hosts', hostname=hostname) variable
    [all...]
  /external/autotest/scheduler/
drone_utility.py 24 from autotest_lib.server import hosts, subcommand namespace
293 The scheduler used to create files at results/hosts/<hostname>, and
295 results/hosts/<hostname>, and places individual timestamped log files
322 if '/hosts/' in path:
394 This interface is designed to match server.hosts.abstract_ssh.get_file
557 return hosts.SSHHost(hostname, user=username)
  /external/autotest/frontend/client/src/autotest/afe/
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
157 List<String> hosts = Utils.splitListWithSpaces(display.getHostnameField().getText()); local
159 setSelectedHostnames(hosts, allowOneTimeHosts);
162 public void setSelectedHostnames(final List<String> hosts, final boolean allowOneTimeHosts) {
163 // figure out which hosts exist in the system and which should be one-time hosts
    [all...]
  /external/libnfc-nci/src/nfa/include/
nfa_hci_api.h 165 UINT8 num_hosts; /* Number of hosts in the host network */
258 tNFA_HCI_HOST_LIST hosts; /* NFA_HCI_HOST_LIST_EVT */ member in union:__anon15605
382 ** list of hosts that are present in the host network. When
  /frameworks/base/tools/layoutlib/bridge/tests/src/com/android/layoutlib/bridge/intensive/
Main.java 193 File[] hosts = host.listFiles(path -> path.isDirectory() && local
195 for (File hostOut : hosts) {
  /external/autotest/server/site_tests/autoupdate_EndToEndTest/
autoupdate_EndToEndTest.py 18 from autotest_lib.server import autotest, hosts, test namespace
413 self._devserver_ssh = hosts.SSHHost(self._omaha_host,
    [all...]
  /external/mdnsresponder/mDNSPosix/
NetMonitor.c 191 HostEntry *hosts; member in struct:__anon18674
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 41 An atomic group defines a collection of hosts which must only be scheduled
43 scheduled for a job at the same time as other hosts sharing that label.
73 """Enqueue a job on an associated atomic group of hosts.
509 """Assigns hosts to a shard.
511 For all labels that have been assigned to a shard, all hosts that
513 Hosts that are assigned to the shard but aren't already present on the
520 @param shard: The shard object to assign labels/hosts for.
522 This is used to figure out which hosts should be sent
523 to the shard. If shard_ids were used instead, hosts
526 The number of hosts usually lies in O(100), so th
890 hosts = dbmodels.ManyToManyField(Host, blank=True, variable in class:AclGroup
    [all...]
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/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.runtime.compatibility.registry_3.5.200.v20130514-1256/
runtime_registry_compatibility.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.eclipse.core.net_1.2.200.v20130430-1352.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.11-4.8/sysroot/usr/include/X11/
Xproto.h 1295 xListHostsReply hosts; member in union:__anon37733
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/X11/
Xproto.h 1295 xListHostsReply hosts; member in union:__anon39596
    [all...]
  /frameworks/base/services/backup/java/com/android/server/backup/
BackupManagerService.java 1213 List<ResolveInfo> hosts = mPackageManager.queryIntentServicesAsUser( local
2091 List<ResolveInfo> hosts = mPackageManager.queryIntentServicesAsUser( local
    [all...]
  /prebuilts/tools/common/m2/repository/org/seleniumhq/selenium/selenium-htmlunit-driver/2.42.2/
selenium-htmlunit-driver-2.42.2.jar 

Completed in 1400 milliseconds

1 23 4 5