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

1 2

  /external/perfetto/include/perfetto/ipc/
host.h 35 // The host-side of the IPC layer. This class acts as a registry and request
39 class Host {
43 static std::unique_ptr<Host> CreateInstance(const char* socket_name,
48 static std::unique_ptr<Host> CreateInstance(base::ScopedFile socket_fd,
51 virtual ~Host();
55 // Host instance if ExposeService suceeds and returns true, or immediately
  /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...]
  /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/llvm/unittests/Support/
ThreadPool.cpp 15 #include "llvm/Support/Host.h"
25 Triple Host;
32 Triple Host(Triple::normalize(sys::getProcessTriple()));
35 Host.getEnvironment()) != UnsupportedEnvironments.end())
38 if (std::find(UnsupportedOSs.begin(), UnsupportedOSs.end(), Host.getOS())
42 if (std::find(UnsupportedArchs.begin(), UnsupportedArchs.end(), Host.getArch())
  /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/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...]
  /external/nist-sip/java/gov/nist/core/
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...]
  /build/soong/android/
arch.go 57 // Host or device variants with arm architecture
60 // Host or device variants with arm64 architecture
63 // Host or device variants with mips architecture
66 // Host or device variants with mips64 architecture
69 // Host or device variants with x86 architecture
72 // Host or device variants with x86_64 architecture
77 // Host or device variants for 32-bit architectures
80 // Host or device variants for 64-bit architectures
87 host: {
88 // Host variant
    [all...]
module.go 62 Host() bool
206 Host struct {
458 func (a *ModuleBase) Host() bool {
459 return a.Os().Class == Host || a.Os().Class == HostCross
473 return []OsClass{Host, HostCross}
475 return []OsClass{Host}
481 supported = append(supported, Host, HostCross)
934 func (a *androidBaseContextImpl) Host() bool {
935 return a.target.Os.Class == Host || a.target.Os.Class == HostCross
1033 if a.Host() {
    [all...]
  /external/eigen/unsupported/Eigen/CXX11/src/Tensor/
TensorMeta.h 198 struct Host
208 static const bool value = sizeof(check(Host<B,D>(), int())) == sizeof(yes);
  /packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/internal/
meta.h 117 struct Host {
122 enum { Value = (sizeof(Check(Host(), 0)) == sizeof(Yes)) };
  /device/linaro/bootloader/edk2/EmbeddedPkg/Universal/MmcDxe/
MmcIdentification.c 77 EFI_MMC_HOST_PROTOCOL *Host;
85 Host = MmcHostInstance->MmcHost;
87 Status = Host->SendCommand (Host, MMC_CMD13, RCA);
92 Status = Host->ReceiveResponse (Host, MMC_RESPONSE_TYPE_R1, &Data);
114 EFI_MMC_HOST_PROTOCOL *Host;
119 Host = MmcHostInstance->MmcHost;
122 Status = Host->SendCommand (Host, MMC_CMD6, Argument);
    [all...]
  /external/autotest/client/common_lib/hosts/
base_classes.py 4 This module defines the base classes for the Host hierarchy.
7 You should import the "hosts" package instead of importing each type of host.
9 Host: a machine on which you can run programs
24 class Host(object):
38 to super. When overriding methods that are a NOP in Host, the subclass
46 then the method should raise NotImplementedError in Host, and
78 """Get the host attribute name for job_repo_url.
84 """Close the connection to the host.
90 """Setup the host object.
99 Run a command on this host
    [all...]
  /external/autotest/scheduler/
scheduler_models.py 126 # particular id. This prevents us from creating new Job() and Host()
363 class Host(DBObject):
377 """Helper function to fetch labels & platform for a host."""
447 A comparison function for sorting Host objects by hostname.
503 self.host = rdb_lib.get_hosts([self.host_id])[0]
504 self.host.dbg_str = self.get_dbg_str()
505 self.host.metadata = get_job_metadata(self.job)
507 self.host = None
554 Get all labels associated with this host queue entry (either via the
570 def set_host(self, host)
    [all...]
  /external/autotest/server/
frontend.py 49 Standard way to print out the frontend objects (eg job, host, acl, label)
529 return [Host(self, h) for h in hosts]
533 """Like get_hosts() but returns hostnames instead of Host objects."""
535 # that does not query for entire host objects in the future.
641 the new host objects back into the host list.
647 hostnames = [s.host.hostname for s in job_statuses if s.host]
649 for host in self.get_hosts(hostname__in=hostnames):
650 hosts[host.hostname] = hos
    [all...]
  /external/v8/samples/
process.cc 54 virtual const string& Host() = 0;
514 const string& path = request->Host();
551 String::NewFromUtf8(isolate, "host", NewStringType::kInternalized)
579 const string& host,
583 virtual const string& Host() { return host_; }
595 const string& host,
599 host_(host),
  /external/python/cpython3/Modules/
overlapped.c 976 Py_UNICODE *Host;
983 if (PyArg_ParseTuple(obj, "uH", &Host, &Port))
986 if (WSAStringToAddressW(Host, AF_INET, NULL, Address, &Length) < 0) {
993 else if (PyArg_ParseTuple(obj, "uHkk", &Host, &Port, &FlowInfo, &ScopeId))
997 if (WSAStringToAddressW(Host, AF_INET6, NULL, Address, &Length) < 0) {
    [all...]
  /external/autotest/frontend/afe/
models.py 46 all at once. Any host with a label having an atomic group will only be
108 only_if_needed: If True, a Host with this label can only be used if that
132 """Enqueue a job on any host of this label.
472 class Host(model_logic.ModelWithInvalid, rdb_model_extensions.AbstractHostModel,
479 locked: if true, host is locked and will not be queued
483 status: string describing status of host
484 invalid: true if the host has been deleted
485 protection: indicates what can be done to this host during repair
486 lock_time: DateTime at which the host was locked
487 dirty: true if the host has been used without being reboote
922 host = dbmodels.ForeignKey(Host) variable in class:HostAttribute
968 host = dbmodels.ForeignKey(Host) variable in class:StaticHostAttribute
1836 host = dbmodels.ForeignKey(Host) variable in class:IneligibleHostQueue
1873 host = dbmodels.ForeignKey(Host, blank=True, null=True) variable in class:HostQueueEntry
2106 host = dbmodels.ForeignKey(Host, blank=False, null=False) variable in class:SpecialTask
    [all...]
  /external/v8/src/debug/
debug.js 57 Debug.ScriptCompilationType = { Host: 0,
  /external/ltp/testcases/kernel/fs/doio/
doio.c 307 char Host[16];
773 gethostname(Host, sizeof(Host));
774 if ((cp = strchr(Host, '.')) != NULL)
777 Pattern_Length = sprintf(Pattern, "-:%d:%s:%s*", getpid(), Host, Prog);
781 getpid(), Host, Prog);
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
wsdtypes.h 165 WSD_SERVICE_METADATA *Host;
http.h 638 PCHAR Host;
  /frameworks/base/services/appwidget/java/com/android/server/appwidget/
AppWidgetServiceImpl.java 168 // used to verify which request has successfully been received by the host.
213 private final ArrayList<Host> mHosts = new ArrayList<>();
682 Host host = mHosts.get(i); local
683 if (host.id.uid == UNKNOWN_UID && pkg.equals(host.id.packageName)) {
685 Slog.i(TAG, "host " + host.id + " resolved to uid " + uid);
687 host.id = new HostId(uid, host.id.hostId, host.id.packageName)
851 Host host = lookupOrAddHostLocked(id); local
891 Host host = lookupHostLocked(id); local
929 Host host = lookupOrAddHostLocked(id); local
1243 Host host = lookupHostLocked(id); local
1344 Host host = lookupHostLocked(id); local
1375 Host host = mHosts.get(i); local
1793 Host host = lookupHostLocked(id); local
1823 Host host = widget.host; local
2112 Host host = mHosts.get(i); local
2207 Host host = mHosts.get(i); local
2826 Host host = mHosts.get(i); local
2961 Host host = mHosts.get(i); local
2975 Host host = mHosts.get(i); local
3004 Host host = mHosts.get(i); local
3117 Host host = new Host(); local
3227 Host host = lookupHostLocked(oldHostId); local
3294 Host host = mHosts.get(i); local
3453 Host host = mHosts.get(i); local
3600 Host host = (Host) args.arg1; local
3612 Host host = (Host) args.arg1; local
3624 Host host = (Host) args.arg1; local
3633 Host host = (Host) args.arg1; local
4128 Host host; field in class:AppWidgetServiceImpl.Widget
4275 Host host = mHosts.get(i); local
4412 Host host = restoredHosts.get(hostIndex); local
4529 Host host = e.getKey(); local
4699 Host host = widget.host; local
    [all...]
  /external/pdfium/xfa/fxfa/
fxfa_basic.h 322 Host,
  /prebuilts/tools/common/m2/repository/com/amazonaws/aws-java-sdk-cloudwatchmetrics/1.11.18/
aws-java-sdk-cloudwatchmetrics-1.11.18.jar 

Completed in 734 milliseconds

1 2