HomeSort by relevance Sort by last modified time
    Searched refs:Host (Results 76 - 100 of 196) sorted by null

1 2 34 5 6 7 8

  /external/llvm/lib/Support/
Android.mk 35 Host.cpp \
99 # For the host
  /external/llvm/
llvm-host-build.mk 65 $(LLVM_ROOT_PATH)/host/include \
87 define transform-host-td-to-out
89 @echo "Host TableGen: $(TBLGEN_LOCAL_MODULE) (gen-$(1)) <= $<"
93 -I $(LLVM_ROOT_PATH)/host/include \
shared_llvm.mk 76 # HOST LLVM shared library build
84 # Host build pulls in all ARM, Mips, X86 components.
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_debug.cpp 43 #include <llvm/Support/Host.h>
45 #include <llvm/System/Host.h>
  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/
IntentTile.java 51 private IntentTile(Host host, String action) {
52 super(host);
62 public static QSTile<?> create(Host host, String spec) {
70 return new IntentTile(host, action);
  /packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/internal/
meta.h 117 struct Host {
122 enum { Value = (sizeof(Check(Host(), 0)) == sizeof(Yes)) };
  /system/bt/doc/
directory_layout.md 19 * hci - *Host Controller Interface* - Communication protocol with Bluetooth chip.
  /system/core/libcutils/tests/
Android.mk 57 # Host.
  /external/autotest/scheduler/
rdb_testing_utils.py 44 """Fake host to use in unittests."""
87 """Get a host queryset based on the kwargs."""
88 return models.Host.objects.filter(**kwargs)
125 host_id = queue_entry.host.id
128 host = models.Host.objects.get(id=host_id)
130 if not host:
131 raise ValueError('Require a host to create special tasks.')
133 host=host, queue_entry=queue_entry, task=task
    [all...]
postjob_task.py 7 and Host, and scheduling additional special agents such as cleanup,
222 * setting the final status of the host, directly or through a cleanup
233 host_list = ','.join(queue_entry.host.hostname
254 allowed_host_statuses=(models.Host.Status.RUNNING,))
287 host=models.Host.objects.get(id=queue_entry.host.id),
291 queue_entry.host.set_status(models.Host.Status.READY)
rdb_integration_tests.py 30 def check_acls_deps(host, request):
31 """Check if a host and request match by comparing acls and deps.
33 @param host: A dictionary representing attributes of the host.
36 @return True if the deps/acls of the request match the host.
41 return (set(host['labels']).intersection(request_deps) == request_deps
42 and set(host['acls']).intersection(request.acls))
47 """Find a host from the given list of hosts, matching the request.
49 @param hosts: A list of dictionaries representing host attributes.
52 @return: A host, if a matching host is found from the input list
    [all...]
  /external/deqp/executor/tools/
xeCommandLineExecutor.cpp 62 DE_DECLARE_COMMAND_LINE_OPT(Host, string);
98 << Option<Host> ("c", "connect", "Connect to host. Address of the execserver.")
157 if (opts.hasOption<opt::StartServer>() && opts.hasOption<opt::Host>())
162 else if (!opts.hasOption<opt::StartServer>() && !opts.hasOption<opt::Host>())
182 cmdLine.serverBinOrAddress = opts.getOption<opt::Host>();
  /external/nist-sip/java/gov/nist/javax/sip/address/
SipUri.java 164 // For two URIs to be equal, the user, password, host, and port
266 * getUser@host
267 * @return user@host portion of the uri (null if none exists).
276 String host = authority.getHost().encode(); local
283 return s.append(host).toString();
287 * getUser@host
288 * @return user@host portion of the uri (null if none exists).
295 String host = authority.getHost().encode(); local
305 return s.append(host).append(COLON).append(port).toString();
307 return s.append(host).toString()
605 Host host = new Host(); local
    [all...]
  /external/autotest/frontend/afe/
admin.py 152 model = models.Host
189 # Hide labels_autodetection when editing a host.
192 # Only allow editing host attributes when a host has been created.
202 return models.Host.valid_objects
205 # Disable the 'save and continue editing option' when adding a host.
229 # Pipe to cli to perform autodetection and create host.
245 'Host created with selected labels.')
249 """Save many-to-many relations between host and labels."""
258 admin.site.register(models.Host, HostAdmin
    [all...]
resources_test.py 43 for host in self.hosts[:3]:
44 host.locked = True
45 host.save()
69 host = response['members'][0]
71 self.assertEquals(host['invalid'], False)
115 self.check_relationship('labels/label1', 'hosts', 'host', 'hostname',
166 self.check_relationship('acls/my_acl', 'hosts', 'host', 'hostname',
198 host = self.request('get', 'hosts/host1')
199 entries = self.request('get', host['queue_entries']['href'])
205 host=self.hosts[0], task=models.SpecialTask.Task.VERIFY
    [all...]
  /build/core/
java_library.mk 7 $(error $(LOCAL_PATH): Host java libraries must use BUILD_HOST_JAVA_LIBRARY)
  /external/autotest/client/bin/
local_host.py 4 This file contains the implementation of a host object for the local machine.
11 class LocalHost(hosts.Host):
12 """This class represents a host running locally on the host."""
35 # a local host is always up
43 @see common_lib.hosts.Host.run()
62 Get a list of files on a remote host given a glob pattern path.
166 Return the pathname of a directory on the host suitable
170 on the destruction of the Host object that was used to obtain
  /external/autotest/contrib/
sheriff_host_utils.py 44 help='The number of jobs per host.Eg: --limit 5')
55 """Parses query string for a host.
58 are columns of the host table with the exception of labels. When specifying
71 def _get_pool(host):
72 """Returns the pool of a host.
74 labels = host.labels.all()
88 query_hosts = models.Host.objects.all()
115 @param limit_jobs: The number of jobs per host.
127 for host in retrieve_hosts(payload):
128 pool = _get_pool(host)
    [all...]
  /external/autotest/scheduler/shard/
simple_heartbeat_server.py 22 first host and not jobs.
30 db_(host,user,password).
88 hosts = models.Host.objects.filter(
154 default=config.get_config_value('AUTOTEST_WEB', 'host'),
185 DB_SETTINGS['HOST'] = args.db_host
  /external/autotest/site_utils/
host_label_utils.py 34 """Get a list of boards from host labels.
51 """Get the labels for a given host or all hosts.
55 @param hostname: Name of the host, if set to None, return labels for all
58 @return: A dictionary of host labels, key is the hostname, and value is a
63 # Default is 0, which means the last time host labels were logged.
76 logging.info('Host labels were recorded at %s',
79 # Search for labels for a given host or all hosts, at time_index.
102 # time_index is to index all host labels collected together. It's
105 hosts = models.Host.objects.filter(invalid=False)
107 for host in hosts
    [all...]
  /external/avahi/avahi-sharp/
AddressResolver.cs 37 private string host; field in class:Avahi.HostAddressArgs
40 public string Host
42 get { return host; }
50 public HostAddressArgs (string host, IPAddress address)
52 this.host = host;
  /external/mockito/
Android.mk 20 # Host build
29 LOCAL_JAVA_LIBRARIES := junit objenesis-host ant
30 LOCAL_MODULE := mockito-host
98 # Host build
102 # dependencies. Since host modules are not compiled against the SDK,
  /external/ppp/pppd/plugins/radius/etc/
dictionary 59 ATTRIBUTE Login-IP-Host 14 ipaddr
212 VALUE Acct-Terminate-Cause Host-Request 18
  /external/v8/test/cctest/
trace-extension.cc 87 #error Host architecture is neither 32-bit nor 64-bit.
  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
QSTile.java 63 * State management done on a looper provided by the host. Tiles should update state in
71 protected final Host mHost;
96 protected QSTile(Host host) {
97 mHost = host;
98 mContext = host.getContext();
99 mHandler = new H(host.getLooper());
128 public Host getHost() {
424 public interface Host {

Completed in 1278 milliseconds

1 2 34 5 6 7 8