Home
last modified time | relevance | path

Searched refs:DeviceProperties (Results 1 – 5 of 5) sorted by relevance

/test/testfwk/xdevice/plugins/ohos/src/ohos/environment/
Ddevice_lite.py26 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
Ddevice.py27 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/
Dconstants.py328 class DeviceProperties(object): class
/test/testfwk/xdevice/src/xdevice/
D__init__.py64 from _core.constants import DeviceProperties
/test/testfwk/xdevice/src/xdevice/_core/report/
Dresult_reporter.py34 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]