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 138 DeviceProperties.sn: convert_serial(self.device_sn), 139 DeviceProperties.model: self.label, 140 DeviceProperties.type_: self.label, 141 DeviceProperties.platform: "OpenHarmony", 142 DeviceProperties.version: "", 143 DeviceProperties.others: self.device_props
|
D | device.py | 28 from xdevice import DeviceProperties 220 DeviceProperties.sn: convert_serial(self.device_sn), 221 DeviceProperties.model: self.get_property("const.product.model"), 222 DeviceProperties.type_: self.get_device_type(), 223 DeviceProperties.platform: "OpenHarmony", 224 DeviceProperties.version: self.get_property("const.product.software.version"), 225 DeviceProperties.others: self.device_props
|
/test/testfwk/xdevice/src/xdevice/_core/ |
D | constants.py | 327 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]
|