Searched refs:DeviceProperties (Results 1 – 5 of 5) sorted by relevance
/test/testfwk/xdevice/plugins/ohos/src/ohos/environment/ |
D | device_lite.py | 26 from xdevice import DeviceProperties 135 DeviceProperties.sn: convert_serial(self.device_sn), 136 DeviceProperties.model: self.label, 137 DeviceProperties.type_: self.label, 138 DeviceProperties.platform: "OpenHarmony", 139 DeviceProperties.version: "", 140 DeviceProperties.others: self.device_props
|
D | device.py | 27 from xdevice import DeviceProperties 212 DeviceProperties.sn: convert_serial(self.device_sn), 213 DeviceProperties.model: self.get_property("const.product.model"), 214 DeviceProperties.type_: self.get_device_type(), 215 DeviceProperties.platform: "OpenHarmony", 216 DeviceProperties.version: self.get_property("const.product.software.version"), 217 DeviceProperties.others: self.device_props
|
/test/testfwk/xdevice/src/xdevice/_core/ |
D | constants.py | 328 class DeviceProperties(object): class
|
/test/testfwk/xdevice/src/xdevice/ |
D | __init__.py | 64 from _core.constants import DeviceProperties
|
/test/testfwk/xdevice/src/xdevice/_core/report/ |
D | result_reporter.py | 34 from _core.constants import DeviceProperties 336 device_sn = device.get(DeviceProperties.sn, "") 337 … temp = [d for d in self.summary.get_devices() if d.get(DeviceProperties.sn, "") == device_sn]
|