Home
last modified time | relevance | path

Searched refs:xml_path (Results 1 – 2 of 2) sorted by relevance

/packages/modules/Bluetooth/system/blueberry/utils/ui_pages/
Dui_core.py248 xml_path = os.path.join(xml_out_dir, dump_xml_name)
249 if os.path.isfile(xml_path):
250 os.remove(xml_path)
258 if not os.path.isfile(xml_path):
261 return minidom.parse(xml_path)
263 def parse_ui(self, xml_path: Optional[str] = None) -> ParsedUI:
280 if xml_path and os.path.isfile(xml_path):
281 ui_xml = minidom.parse(xml_path)
362 xml_path: Optional[str] = None) -> UIPage:
364 return self.safe_get_page(wait_sec=wait_sec, xml_path=xml_path)
[all …]
/packages/modules/Virtualization/virtualizationservice/src/
Daidl.rs589 let xml_path = Path::new("/vendor/etc/avf/assignable_devices.xml"); in get_assignable_devices() localVariable
590 if !xml_path.exists() { in get_assignable_devices()
594 let xml = fs::read(xml_path) in get_assignable_devices()