HomeSort by relevance Sort by last modified time
    Searched full:host (Results 276 - 300 of 10789) sorted by null

<<11121314151617181920>>

  /prebuilts/go/darwin-x86/src/net/testdata/
ipv4-hosts 7 # internet address and host name
11 # internet address, host name and aliases
  /prebuilts/go/linux-x86/src/net/testdata/
ipv4-hosts 7 # internet address and host name
11 # internet address, host name and aliases
  /device/generic/goldfish-opengl/system/OpenglSystemCommon/
ProcessPipe.h 21 // The process pipe is used to notify the host about process exits,
22 // also associate all process-owned host GL resources with a process unique ID
23 // (puid). This is for the purpose that the host can clean up process resources
24 // when a process is killed. It will fallback to the default path if the host
26 // 64bit unique ID (puid) from the host.
29 // puid in the host.
  /external/autotest/client/common_lib/cros/fake_device_server/
fake_gcd_helper.py 17 def __init__(self, host=None):
20 @param host: host object if the server should be started on a remote
21 host.
29 host=host)
  /external/autotest/server/cros/multimedia/
system_facade_adapter.py 11 The Autotest host object representing the remote DUT, passed to this
15 def __init__(self, host, remote_facade_proxy):
18 @param host: Host object representing a remote host.
22 self._client = host
  /external/autotest/server/site_tests/brillo_FastbootTest/
brillo_FastbootTest.py 14 def run_once(self, host=None):
17 @param host: A host object representing the DUT.
23 if not host.is_up():
28 host.ensure_bootloader_mode()
35 host.ensure_adb_mode()
  /external/autotest/server/site_tests/power_RPMTest/
power_RPMTest.py 16 def initialize(self, host, verify=True):
18 @param host: The host to run the test on
20 check with the host whether it sees the same state
22 self._host = host
23 self._host_at = autotest.Autotest(host)
  /external/chromium-trace/catapult/third_party/polymer/components/paper-material/
paper-material-shared-styles.html 16 :host {
21 :host([elevation="1"]) {
25 :host([elevation="2"]) {
29 :host([elevation="3"]) {
33 :host([elevation="4"]) {
37 :host([elevation="5"]) {
  /external/mockito/
build.gradle 5 host.extendsFrom(hostCompile)
10 host {
42 hostCompile project(path: ':junit', configuration: 'host')
54 from sourceSets.host.output
57 classifier "host"
61 host hostJar
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/
Network.java 22 * Services specific to the host device's network interface. Prefer this over {@link
27 @Override public InetAddress[] resolveInetAddresses(String host) throws UnknownHostException {
28 if (host == null) throw new UnknownHostException("host == null");
29 return InetAddress.getAllByName(host);
33 InetAddress[] resolveInetAddresses(String host) throws UnknownHostException;
  /frameworks/native/services/inputflinger/host/
InputDriver.cpp 294 ::input_device_identifier_t* create_device_identifier(input_host_t* host,
297 auto driver = static_cast<InputDriverInterface*>(host);
301 input_device_definition_t* create_device_definition(input_host_t* host) {
302 auto driver = static_cast<InputDriverInterface*>(host);
306 input_report_definition_t* create_input_report_definition(input_host_t* host) {
307 auto driver = static_cast<InputDriverInterface*>(host);
311 input_report_definition_t* create_output_report_definition(input_host_t* host) {
312 auto driver = static_cast<InputDriverInterface*>(host);
316 void free_report_definition(input_host_t* host, input_report_definition_t* report_def) {
317 auto driver = static_cast<InputDriverInterface*>(host);
    [all...]
  /external/autotest/server/site_tests/power_ChargeStatus/
power_ChargeStatus.py 23 def initialize(self, host, cmdline_args):
29 self.power_control = args.get('power_control', host.POWER_CONTROL_RPM)
30 if self.power_control not in host.POWER_CONTROL_VALID_ARGS:
34 % (host.POWER_CONTROL_VALID_ARGS,
38 def run_once(self, host):
39 ac_state = self.get_ac_status(host)
40 bat_state = self.get_bat_status(host)
42 host.power_off(self.power_control)
43 ac_state = self.get_ac_status(host)
44 bat_state = self.get_bat_status(host)
    [all...]
  /external/jetty/src/java/org/eclipse/jetty/client/
Address.java 28 private final String host; field in class:Address
33 String host; local
38 host = hostAndPort.substring(0, colon);
43 host = hostAndPort;
46 return new Address(host, port);
49 public Address(String host, int port)
51 if (host == null)
52 throw new IllegalArgumentException("Host is null");
54 this.host = host.trim()
    [all...]
  /external/autotest/server/cros/
repair_utils_unittest.py 64 """Test that, for a given host, we get the last job ran on that host."""
66 host = models.Host(hostname='host')
67 host.save()
73 job=old_job, host=host, status='test',
81 job=new_job, host=host, status='test'
    [all...]
autoupdate_utils.py 15 def get_updater_from_repo_url(host, job_repo_url=None):
19 assigned to their host that is associated with the version of the build that
28 @param host: The host for the DUT of the server-side test.
34 # specified in the host attributes for the host.
37 job_repo_url = host.lookup_job_repo_url()
43 'Could not find a job_repo_url for the given host.')
53 host=host)
    [all...]
  /external/caliper/
Android.mk 20 # build caliper host jar
25 LOCAL_MODULE := caliper-host
33 apache-commons-math-host \
34 caliper-gson-host \
35 caliper-java-allocation-instrumenter-host \
36 caliper-jersey-client-host \
37 caliper-jersey-core-host \
38 caliper-joda-time-host \
39 caliper-jsr311-api-host \
40 dagger2-host \
    [all...]
  /cts/
run_unit_tests.sh 28 HOST=`uname`
29 if [ "$HOST" == "Linux" ]; then
31 elif [ "$HOST" == "Darwin" ]; then
41 compatibility-host-util-tests\
47 compatibility-host-media-preconditions-tests\
67 echo "---- HOST TESTS ---- "
70 ############### Run the host side tests ###############
71 ${CTS_DIR}/common/host-side/tradefed/tests/run_tests.sh
72 ${CTS_DIR}/common/host-side/manifest-generator/tests/run_tests.sh
73 ${CTS_DIR}/common/host-side/util/tests/run_tests.s
    [all...]
  /external/autotest/server/hosts/
base_classes.py 5 This module defines the base classes for the server Host hierarchy.
8 You should import the "hosts" package instead of importing each type of host.
10 Host: a machine on which you can run programs
27 class Host(hosts.Host):
41 to super. When overriding methods that are a NOP in Host, the subclass
49 then the method should raise NotImplementedError in Host, and
58 super(Host, self).__init__(*args, **dargs)
67 super(Host, self)._initialize(*args, **dargs)
77 super(Host, self).close(
    [all...]
  /external/autotest/server/samples/
netperf-guest-to-host-far.srv 4 def check_kernel(host, version, package):
5 if host.run("uname -r").stdout.strip() != version:
6 print "XXXX installing kernel on %s" % (host.hostname,)
7 package.install(host)
9 host.reboot()
10 host.wait_up()
13 def install_kvm(kvm_on_host_var_name, host, source, addresses):
15 "%(var_name)s= kvm.KVM(host)\n"
51 server_results_dir= "results-netperf-guest-to-host-far-server"
52 client_results_dir= "results-netperf-guest-to-host-far-client
    [all...]
  /external/autotest/server/
site_autotest.py 34 """Get repo to use for packages from host attribute, if possible.
37 from which to source packages when running a test on that host.
38 If self.host is set, attempt to look this attribute up by calling out
41 @returns value of the 'job_repo_url' host attribute, if present.
45 if self.host:
47 hosts = afe.get_hosts(hostname=self.host.hostname)
50 logging.warning("No %s for %s", JOB_REPO_URL, self.host)
63 from which to source packages when running a test on that host.
77 # set this as the repo_url for the host. If an AFE is not being
81 # the host will no longer have the context of the image optio
    [all...]
  /external/chromium-libpac/src/
proxy_resolver_js_bindings.cc 37 // Handler for "dnsResolve(host)".
38 virtual bool DnsResolve(const std::string& host,
40 return DnsResolveImpl(host, first_ip_address);
43 // Handler for "dnsResolveEx(host)".
44 virtual bool DnsResolveEx(const std::string& host,
46 return DnsResolveExImpl(host, ip_address_list);
64 bool DnsResolveImpl(const std::string& host,
66 struct hostent* he = gethostbyname(host.c_str());
81 bool DnsResolveExImpl(const std::string& host,
83 struct hostent* he = gethostbyname(host.c_str())
    [all...]
  /external/curl/tests/data/
test233 20 Location: http://goto.second.host.now/2330002
43 Location: http://goto.second.host.now/2330002
65 HTTP, proxy, site+proxy auth and Location: to new host
68 http://first.host.it.is/we/want/that/page/233 -x %HOSTIP:%HTTPPORT --user iam:myself --proxy-user testing:this --location
79 GET http://first.host.it.is/we/want/that/page/233 HTTP/1.1
80 Host: first.host.it.is
85 GET http://goto.second.host.now/2330002 HTTP/1.1
86 Host: goto.second.host.now
    [all...]
test234 22 Location: http://goto.second.host.now/2340002
45 Location: http://goto.second.host.now/2340002
67 HTTP, proxy, site+proxy auth and Location: to new host using location-trusted
70 http://first.host.it.is/we/want/that/page/234 -x %HOSTIP:%HTTPPORT --user iam:myself --proxy-user testing:this --location-trusted
81 GET http://first.host.it.is/we/want/that/page/234 HTTP/1.1
82 Host: first.host.it.is
87 GET http://goto.second.host.now/2340002 HTTP/1.1
88 Host: goto.second.host.now
    [all...]
  /external/dng_sdk/source/
dng_info.h 79 /// \param host DNG host used for progress updating, abort testing, buffer allocation, etc.
82 virtual void Parse (dng_host &host,
87 virtual void PostParse (dng_host &host);
98 virtual void ParseTag (dng_host &host,
114 virtual void ParseIFD (dng_host &host,
123 virtual bool ParseMakerNoteIFD (dng_host &host,
132 virtual void ParseMakerNote (dng_host &host,
140 virtual void ParseSonyPrivateData (dng_host &host,
146 virtual void ParseDNGPrivateData (dng_host &host,
    [all...]
dng_read_image.h 99 /// \param host Host used for memory allocation, progress updating, and abort testing.
104 virtual void Read (dng_host &host,
113 virtual bool ReadUncompressed (dng_host &host,
123 virtual void DecodeLossyJPEG (dng_host &host,
132 virtual bool ReadBaselineJPEG (dng_host &host,
142 virtual bool ReadLosslessJPEG (dng_host &host,
157 virtual void ByteSwapBuffer (dng_host &host,
160 virtual void DecodePredictor (dng_host &host,
164 virtual void ReadTile (dng_host &host,
    [all...]

Completed in 494 milliseconds

<<11121314151617181920>>