Home
last modified time | relevance | path

Searched refs:DeviceType (Results 1 – 9 of 9) sorted by relevance

/device/google/cuttlefish/common/libs/utils/
Ddevice_type.cpp22 DeviceType ParseDeviceType(std::string_view type_name) { in ParseDeviceType()
24 return DeviceType::Phone; in ParseDeviceType()
26 return DeviceType::Wear; in ParseDeviceType()
29 return DeviceType::Auto; in ParseDeviceType()
31 return DeviceType::Foldable; in ParseDeviceType()
33 return DeviceType::Tv; in ParseDeviceType()
35 return DeviceType::Minidroid; in ParseDeviceType()
37 return DeviceType::Go; in ParseDeviceType()
39 return DeviceType::Unknown; in ParseDeviceType()
Ddevice_type.h22 enum class DeviceType { enum
34 DeviceType ParseDeviceType(std::string_view type_name);
/device/google/cuttlefish/tests/hal/
Dhal_implementation_test.cpp300 enum class DeviceType { enum
308 static DeviceType getDeviceType() { in getDeviceType()
309 static DeviceType type = DeviceType::UNKNOWN; in getDeviceType()
310 if (type != DeviceType::UNKNOWN) { in getDeviceType()
327 return DeviceType::AUTOMOTIVE; in getDeviceType()
336 return DeviceType::TV; in getDeviceType()
345 return DeviceType::WATCH; in getDeviceType()
348 return DeviceType::PHONE; in getDeviceType()
356 const DeviceType type = getDeviceType(); in isMissingAidl()
358 case DeviceType::AUTOMOTIVE: in isMissingAidl()
[all …]
/device/google/cuttlefish/host/commands/metrics/
Devents.h24 static int SendEvent(CuttlefishLogEvent::DeviceType device_type,
30 static int SendVMStart(CuttlefishLogEvent::DeviceType device_type);
31 static int SendVMStop(CuttlefishLogEvent::DeviceType device_type);
32 static int SendDeviceBoot(CuttlefishLogEvent::DeviceType device_type);
33 static int SendLockScreen(CuttlefishLogEvent::DeviceType device_type);
Devents.cc45 uint64_t now_ms, CuttlefishLogEvent::DeviceType device_type) { in BuildCfLogEvent()
153 int Clearcut::SendEvent(CuttlefishLogEvent::DeviceType device_type, in SendEvent()
175 int Clearcut::SendVMStart(CuttlefishLogEvent::DeviceType device) { in SendVMStart()
180 int Clearcut::SendVMStop(CuttlefishLogEvent::DeviceType device) { in SendVMStop()
184 int Clearcut::SendDeviceBoot(CuttlefishLogEvent::DeviceType device) { in SendDeviceBoot()
188 int Clearcut::SendLockScreen(CuttlefishLogEvent::DeviceType device) { in SendLockScreen()
/device/google/cuttlefish/host/commands/metrics/proto/
Dcf_log.proto29 enum DeviceType { enum
46 optional DeviceType device_type = 2;
/device/google/cuttlefish/host/commands/assemble_cvd/
Dflags.h33 DeviceType device_type;
/device/google/cuttlefish/host/libs/config/
Dcuttlefish_config.h598 DeviceType device_type() const;
841 void set_device_type(DeviceType type);
Dcuttlefish_config_instance.cpp1413 DeviceType type) { in set_device_type()
1416 DeviceType CuttlefishConfig::InstanceSpecific::device_type() const { in device_type()
1417 return static_cast<DeviceType>((*Dictionary())[kDeviceType].asInt()); in device_type()