Home
last modified time | relevance | path

Searched refs:file_path (Results 1 – 7 of 7) sorted by relevance

/development/testrunner/test_defs/
Dtest_defs.py46 def Parse(self, file_path): argument
55 doc = xml.dom.minidom.parse(file_path)
58 logger.Log("test file %s does not exist" % file_path)
61 logger.Log("Error Parsing xml file: %s " % file_path)
64 logger.Log("Error Parsing xml file: %s Reason: %s" % (file_path, e.msg))
120 def Parse(file_path): argument
131 tests_result.Parse(file_path)
/development/vndk/tools/header-checker/src/utils/
Dcollect_exported_headers.cpp61 const std::string &file_path = walker->path(); in CollectExportedHeaderSet() local
63 llvm::StringRef file_name(llvm::sys::path::filename(file_path)); in CollectExportedHeaderSet()
74 llvm::errs() << "Failed to stat file: " << file_path << "\n"; in CollectExportedHeaderSet()
84 exported_headers->insert(RealPath(file_path)); in CollectExportedHeaderSet()
/development/testrunner/coverage/
Dcoverage_targets.py55 def Parse(self, file_path): argument
64 doc = xml.dom.minidom.parse(file_path)
67 logger.Log('Results file %s does not exist' % file_path)
70 logger.Log('Error Parsing xml file: %s ' % file_path)
/development/gsi/repack_super_image/
Drepack_super_image.py60 file_path = os.path.join(root_dir, file_name)
61 file_stat = os.stat(file_path)
62 os.chmod(file_path, file_stat.st_mode | permissions)
/development/tools/privapp_permissions/
Dprivapp_permissions.py326 def _resolve_sys_path(self, file_path): argument
329 return os.path.join(os.environ['ANDROID_PRODUCT_OUT'], file_path)
331 return self.adb.pull(file_path)
469 file_path = os.path.join(dirName, file)
470 xml_files.append(file_path)
/development/tools/winscope/adb_proxy/
Dwinscope_proxy.py298 file_path = TRACE_TARGETS[path[0]].file
300 file_path = DUMP_TARGETS[path[0]].file
305 log.debug("Fetching file {} from device to {}".format(file_path, tmp.name))
306 call_adb_outfile('exec-out su root cat ' + file_path, tmp, device_id)
307 log.debug("Deleting file {} from device".format(file_path))
308 call_adb('shell su root rm ' + file_path, device_id)
/development/vndk/snapshot/
Dcheck_gpl_license.py75 file_path = os.path.join(self._install_dir, file)
76 with open(file_path, 'r') as f: