HomeSort by relevance Sort by last modified time
    Searched refs:Host (Results 1 - 25 of 271) sorted by null

1 2 3 4 5 6 7 8 91011

  /external/autotest/frontend/client/src/autotest/afe/models/
Host.java 7 public class Host extends JSONObject {
8 public static Host fromJsonObject(JSONObject object) {
10 Host host = new Host(); local
11 Utils.updateObject(host, object);
12 return host;
17 if (!(other instanceof Host)) {
21 Host otherHost = (Host) other
    [all...]
  /external/jcommander/src/test/resources/
MessageBundle_en_US.properties 19 host = Host
  /external/autotest/client/common_lib/hosts/
__init__.py 6 You should 'import hosts' instead of importing every available host module.
10 from base_classes import Host
base_classes_unittest.py 21 host = base_classes.Host()
22 self.assertRaises(NotImplementedError, host.run_output, "fake command")
26 self.god.stub_function(base_classes.Host, 'run')
27 host = base_classes.Host()
28 host.hostname = 'unittest-host'
32 host.run.expect_call('df -PB 1000000 /foo | tail -1').and_return(
35 host.check_diskspace, '/foo', 0.2
    [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
24 class Host(hosts.Host):
38 to super. When overriding methods that are a NOP in Host, the subclass
46 then the method should raise NotImplementedError in Host, and
56 super(Host, self).__init__(*args, **dargs)
64 super(Host, self)._initialize(*args, **dargs)
71 super(Host, self).close(
    [all...]
base_classes_unittest.py 29 host = base_classes.Host.__new__(base_classes.Host)
33 host.__init__()
38 host = base_classes.Host()
41 def install(self, host):
45 installableObj.install.expect_call(host)
47 host.install(installableObj)
55 host = base_classes.Host(
    [all...]
  /external/caliper/caliper/src/main/java/com/google/caliper/model/
Host.java 35 * The performance-informing properties of the host on which a benchmark is run.
39 public final class Host {
40 static final Host DEFAULT = new Host();
41 private static final Logger logger = Logger.getLogger(Host.class.getName());
47 private Host() {
51 private Host(Builder builder) {
64 } else if (obj instanceof Host) {
65 Host that = (Host) obj
    [all...]
Scenario.java 24 import com.google.caliper.model.Host.HostFunnel;
38 private Host host; field in class:Scenario
45 this.host = Host.DEFAULT;
51 this.host = builder.host;
56 public Host host() { method in class:Scenario
57 return host;
106 private Host host; field in class:Scenario.Builder
110 public Builder host(Host.Builder hostBuilder) { method in class:Scenario.Builder
114 public Builder host(Host host) { method in class:Scenario.Builder
    [all...]
  /external/llvm/unittests/ExecutionEngine/MCJIT/
MCJITTestAPICommon.h 22 #include "llvm/Support/Host.h"
55 /// Returns true if the host architecture is known to support MCJIT
57 Triple Host(HostTriple);
59 if (std::find(SupportedArchs.begin(), SupportedArchs.end(), Host.getArch())
64 if (std::find(HasSubArchs.begin(), HasSubArchs.end(), Host.getArch())
71 if (Host.getArchName().startswith(I->c_str()))
77 /// Returns true if the host OS is known to support MCJIT
79 Triple Host(HostTriple);
82 Host.getEnvironment()) != UnsupportedEnvironments.end())
85 if (std::find(UnsupportedOSs.begin(), UnsupportedOSs.end(), Host.getOS()
    [all...]
  /device/linaro/bootloader/edk2/EmulatorPkg/Unix/
GdbRun 31 source Host.gdb
  /external/nist-sip/java/gov/nist/core/
HostPort.java 47 // host / ipv4/ ipv6/
48 /** host field
50 protected Host host; field in class:HostPort
61 host = null;
76 host.encode(buffer);
92 return port == that.port && host.equals(that.host);
95 /** get the Host field
96 * @return host fiel
    [all...]
Host.java 55 public class Host extends GenericObject {
85 public Host() {
92 /** Constructor given host name or IP address.
94 public Host(String hostName) throws IllegalArgumentException {
96 throw new IllegalArgumentException("null host name");
108 public Host(String name, int addrType) {
116 * Return the host name in encoded form.
134 * Host names are compared by textual equality. No dns lookup
144 Host otherHost = (Host) obj
    [all...]
  /device/linaro/bootloader/edk2/EmbeddedPkg/Universal/MmcDxe/
MmcIdentification.c 78 EFI_MMC_HOST_PROTOCOL *Host;
85 Host = MmcHostInstance->MmcHost;
88 Status = Host->SendCommand (Host, MMC_CMD13, RCA);
93 Status = Host->ReceiveResponse (Host, MMC_RESPONSE_TYPE_R1, Rsp);
116 EFI_MMC_HOST_PROTOCOL *Host;
121 Host = MmcHostInstance->MmcHost;
123 Status = Host->SendCommand (Host, MMC_CMD6, Argument);
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Protocol/Performance/
Performance.h 53 UINT16 Host[EFI_PERF_HOST_LENGTH];
68 IN UINT16 *Host,
78 IN UINT16 *Host,
89 IN UINT16 *Host,
  /external/nist-sip/java/gov/nist/javax/sip/stack/
MessageProcessor.java 28 import gov.nist.core.Host;
135 this.sentByHostPort.setHost(new Host(ipAddress.getHostAddress()));
171 Host host = new Host(); local
172 host.setHostname(this.getIpAddress().getHostAddress());
173 via.setHost(host);
226 this.sentByHostPort.setHost( new Host(ipAddress.getHostAddress()));
241 this.sentByHostPort.setHost(new Host(sentBy));
244 this.sentByHostPort.setHost(new Host(sentBy.substring(0, ind)))
    [all...]
  /prebuilts/go/darwin-x86/src/net/http/
requestwrite_test.go 39 Host: "www.techcrunch.com",
56 Host: "www.techcrunch.com",
61 "Host: www.techcrunch.com\r\n" +
71 "Host: www.techcrunch.com\r\n" +
86 Host: "www.google.com",
98 "Host: www.google.com\r\n" +
104 "Host: www.google.com\r\n" +
115 Host: "www.google.com",
128 "Host: www.google.com\r\n" +
135 "Host: www.google.com\r\n"
    [all...]
readrequest_test.go 35 "Host: www.techcrunch.com\r\n" +
50 Host: "www.techcrunch.com",
68 Host: "www.techcrunch.com",
81 "Host: foo.com\r\n\r\n",
94 Host: "foo.com",
106 "GET //user@host/is/actually/a/path/ HTTP/1.1\r\n" +
107 "Host: test\r\n\r\n",
112 Path: "//user@host/is/actually/a/path/",
120 Host: "test",
121 RequestURI: "//user@host/is/actually/a/path/"
    [all...]
  /prebuilts/go/linux-x86/src/net/http/
requestwrite_test.go 39 Host: "www.techcrunch.com",
56 Host: "www.techcrunch.com",
61 "Host: www.techcrunch.com\r\n" +
71 "Host: www.techcrunch.com\r\n" +
86 Host: "www.google.com",
98 "Host: www.google.com\r\n" +
104 "Host: www.google.com\r\n" +
115 Host: "www.google.com",
128 "Host: www.google.com\r\n" +
135 "Host: www.google.com\r\n"
    [all...]
readrequest_test.go 35 "Host: www.techcrunch.com\r\n" +
50 Host: "www.techcrunch.com",
68 Host: "www.techcrunch.com",
81 "Host: foo.com\r\n\r\n",
94 Host: "foo.com",
106 "GET //user@host/is/actually/a/path/ HTTP/1.1\r\n" +
107 "Host: test\r\n\r\n",
112 Path: "//user@host/is/actually/a/path/",
120 Host: "test",
121 RequestURI: "//user@host/is/actually/a/path/"
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/EfiDriverLib/
Perf.c 278 IN UINT16 *Host
290 Host - Host of gauge data
314 if (Host != NULL) {
315 EfiStrCpy ((Node->GaugeData).Host, Host);
331 IN UINT16 *Host,
339 Search gauge node list to find one node with matched handle, token, host and Guid name.
345 Host - Host to match
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/DxePerformanceLib/
PerformanceLib.c 289 IN UINT16 *Host
301 Host - Host of gauge data
325 if (Host != NULL) {
326 StrCpy ((Node->GaugeData).Host, Host);
342 IN UINT16 *Host,
350 Search gauge node list to find one node with matched handle, token, host and Guid name.
356 Host - Host to match
    [all...]
  /external/autotest/scheduler/
scheduler_models_unittest.py 105 host = scheduler_models.Host(id=1)
106 fields = list(host._fields)
107 row_data = [getattr(host, fieldname) for fieldname in fields]
108 self.assertEqual({}, host._compare_fields_in_row(row_data))
111 host._compare_fields_in_row(row_data))
114 host._compare_fields_in_row(row_data))
128 host_a = scheduler_models.Host(id=2)
132 host_b = scheduler_models.Host(id=2, always_query=True)
140 host_c = scheduler_models.Host(id=2, always_query=False
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Include/
EfiPerf.h 58 IN UINT16 *Host,
71 Host - TODO: add argument description
86 IN UINT16 *Host,
99 Host - TODO: add argument description
114 IN UINT16 *Host,
129 Host - TODO: add argument description
143 #define PERF_START(handle, token, host, ticker) StartMeasure (handle, token, host, ticker)
144 #define PERF_END(handle, token, host, ticker) EndMeasure (handle, token, host, ticker)
    [all...]
  /external/autotest/frontend/client/src/autotest/afe/
HostDataSource.java 3 import autotest.afe.models.Host;
33 Host host = Host.fromJsonObject(row); local
34 processHost(host);
35 hosts.add(host);
40 protected void processHost(JSONObject host) {
41 host.put(LOCKED_TEXT, AfeUtils.getLockedText(host));
43 JSONString jsonPlatform = host.get("platform").isString()
    [all...]
  /prebuilts/go/darwin-x86/src/net/http/httptest/
httptest_test.go 33 Host: "example.com",
52 Host: "foo.com",
57 Host: "foo.com",
76 Host: "foo.com",
80 Host: "foo.com",
104 Host: "example.com",
124 Host: "example.com",
143 Host: "example.com",

Completed in 1345 milliseconds

1 2 3 4 5 6 7 8 91011