/external/mesa3d/src/gallium/auxiliary/gallivm/ |
lp_bld_debug.cpp | 43 #include <llvm/Support/Host.h> 45 #include <llvm/System/Host.h>
|
/libcore/tzdata/testing/ |
Android.mk | 30 LOCAL_MODULE := tzdata-testing-host 37 # Host version of the above library. For libcore host testing.
|
/packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/internal/ |
meta.h | 117 struct Host {
122 enum { Value = (sizeof(Check(Host(), 0)) == sizeof(Yes)) };
|
/prebuilts/go/darwin-x86/src/net/ |
lookup_windows_test.go | 134 return s[i].Host < s[j].Host 141 func (s byHost) Less(i, j int) bool { return s[i].Host < s[j].Host }
|
/prebuilts/go/linux-x86/src/net/ |
lookup_windows_test.go | 134 return s[i].Host < s[j].Host 141 func (s byHost) Less(i, j int) bool { return s[i].Host < s[j].Host }
|
/system/bt/doc/ |
directory_layout.md | 19 * hci - *Host Controller Interface* - Communication protocol with Bluetooth chip.
|
/build/soong/android/ |
module.go | 57 Host() bool 129 Host struct { 221 // Default to module to device supported, host not supported, can override in module 330 func (a *ModuleBase) Host() bool { 331 return a.Os().Class == Host || a.Os().Class == HostCross 345 return []OsClass{Host, HostCross} 347 return []OsClass{Host} 353 supported = append(supported, Host, HostCross) 605 func (a *androidBaseContextImpl) Host() bool { 606 return a.target.Os.Class == Host || a.target.Os.Class == HostCros [all...] |
/external/autotest/frontend/afe/ |
moblab_rpc_interface.py | 507 models.Host.objects.populate_relationships(hosts, models.Label, 510 for host in hosts: 511 labels = [label.name for label in host.label_list] 513 configured_duts[host.hostname] = ', '.join(labels) 548 cmd = '/usr/local/autotest/cli/atest host create %s &' % ipaddress 561 models.Host.smart_get(ipaddress).delete() 580 host_obj = models.Host.smart_get(ipaddress) 596 host_obj = models.Host.smart_get(ipaddress) 613 models.Host.objects.populate_relationships(hosts, models.Label, 616 for host in hosts [all...] |
admin.py | 9 from autotest_lib.cli import rpc, host 148 model = models.Host 185 # Hide labels_autodetection when editing a host. 188 # Only allow editing host attributes when a host has been created. 198 return models.Host.valid_objects 201 # Disable the 'save and continue editing option' when adding a host. 225 # Pipe to cli to perform autodetection and create host. 226 host_create_obj = host.host_create.construct_without_parse( 241 'Host created with selected labels.' [all...] |
/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, 229 * setting the final status of the host, directly or through a cleanup 240 host_list = ','.join(queue_entry.host.hostname 261 allowed_host_statuses=(models.Host.Status.RUNNING,)) 294 host=models.Host.objects.get(id=queue_entry.host.id), 298 queue_entry.host.set_status(models.Host.Status.READY)
|
rdb_integration_tests.py | 29 def check_acls_deps(host, request): 30 """Check if a host and request match by comparing acls and deps. 32 @param host: A dictionary representing attributes of the host. 35 @return True if the deps/acls of the request match the host. 40 return (set(host['labels']).intersection(request_deps) == request_deps 41 and set(host['acls']).intersection(request.acls)) 46 """Find a host from the given list of hosts, matching the request. 48 @param hosts: A list of dictionaries representing host attributes. 51 @return: A host, if a matching host is found from the input list [all...] |
/external/deqp/executor/tools/ |
xeCommandLineExecutor.cpp | 63 DE_DECLARE_COMMAND_LINE_OPT(Host, string); 99 << Option<Host> ("c", "connect", "Connect to host. Address of the execserver.") 158 if (opts.hasOption<opt::StartServer>() && opts.hasOption<opt::Host>()) 163 else if (!opts.hasOption<opt::StartServer>() && !opts.hasOption<opt::Host>()) 183 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...] |
/prebuilts/go/darwin-x86/src/net/http/cgi/ |
host.go | 5 // This file implements the host side of CGI (being the webserver 58 InheritEnv []string // environment variables to inherit from host, as "key" 124 if matches := trailingPort.FindStringSubmatch(req.Host); len(matches) != 0 { 130 "SERVER_NAME=" + req.Host, 132 "HTTP_HOST=" + req.Host, 372 Host: url.Host,
|
/prebuilts/go/linux-x86/src/net/http/cgi/ |
host.go | 5 // This file implements the host side of CGI (being the webserver 58 InheritEnv []string // environment variables to inherit from host, as "key" 124 if matches := trailingPort.FindStringSubmatch(req.Host); len(matches) != 0 { 130 "SERVER_NAME=" + req.Host, 132 "HTTP_HOST=" + req.Host, 372 Host: url.Host,
|
/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 44 @see common_lib.hosts.Host.run() 68 Get a list of files on a remote host given a glob pattern path. 195 Return the pathname of a directory on the host suitable 199 on the destruction of the Host object that was used to obtain
|
/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/server/hosts/ |
afe_store_unittest.py | 18 self.hostname = 'some-host' 24 """Create a mock frontend.Host with the given labels and attributes. 26 @param labels: The labels to set on the host. 27 @param attributes: The attributes to set on the host. 28 @returns: A mock object for frontend.Host. 30 mock_host = mock.create_autospec(frontend.Host, instance=True) 37 """Test that refresh correctly translates host information.""" 46 """Test that refresh complains if no host is found.""" 53 """Test that refresh returns the first host if multiple match.""" 70 mock.call('host_remove_labels', id='some-host', [all...] |
teststation_host.py | 29 @return: A Test Station Host object. 40 class TestStationHost(base_classes.Host): 59 """Initialize a Test Station Host. 61 This will create a Test Station Host. Hostname should always refer 62 to the host machine connected to the devices under test. 66 logging.debug('Initializing Test Station Host running on host: %s.', 77 # Keep track of whether the host was closed since multiple AdbHost 84 """Check if the host running adb command is a Moblab. 86 @return: True if the host running adb command is a Moblab, Fals [all...] |
/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/ppp/pppd/plugins/radius/etc/ |
dictionary | 59 ATTRIBUTE Login-IP-Host 14 ipaddr 212 VALUE Acct-Terminate-Cause Host-Request 18
|
/frameworks/compile/libbcc/lib/ |
CompilerConfig.cpp | 26 #include <llvm/Support/Host.h> 140 // will not be added in the host version of bcc or bcc_compat since 141 // 'features' would correspond to features in an x86 host.
|
/frameworks/compile/mclinker/include/mcld/LD/ |
ELFReader.h | 19 #include <llvm/Support/Host.h>
|
/frameworks/compile/mclinker/lib/LD/ |
ELFReaderIf.cpp | 21 #include <llvm/Support/Host.h>
|