Lines Matching full:files
19 """Parse one patch and return the list of files modified, added or
21 files = set()
34 files.add(fname)
35 return (files, infras)
60 """Parse a list of patches and returns the list of files modified,
66 (files, infras) = analyze_patch(patch)
67 allfiles = allfiles | files
107 def __init__(self, name, files): argument
109 self.files = files
110 self.packages = parse_developer_packages(files)
111 self.architectures = parse_developer_architectures(files)
112 self.infras = parse_developer_infras(files)
113 self.runtime_tests = parse_developer_runtime_tests(files)
114 self.defconfigs = parse_developer_defconfigs(files)
117 for fs in self.files:
125 if len(self.files):
126 things.append('{} files'.format(len(self.files)))
149 for root, dirs, files in os.walk(os.path.join(brpath, fname)):
150 for f in files:
211 # List all files recursively
214 for root, _dirs, files in os.walk(os.path.join(brpath, fname)):
215 all_files += [os.path.join(root, f) for f in files]
236 files = []
243 if name is not None or len(files) != 0:
256 files.append(dev_file)
260 developers.append(Developer(name, files))
261 files = []
270 developers.append(Developer(name, files))
275 """Look at the list of files versioned in Buildroot, and returns the
276 list of files that are not handled by any developer"""
279 cmd = ["git", "--git-dir", os.path.join(basepath, ".git"), "ls-files"]
280 files = subprocess.check_output(cmd).decode(sys.stdout.encoding).strip().split("\n")
282 for f in files: