Lines Matching refs:path
58 parent = os.path.dirname(os.path.realpath(__file__)) + "/../"
59 if (os.path.realpath(cwd) != os.path.realpath(parent)):
104 psname = os.path.basename(patchset).replace('.', '_')
167 def match_pattern(path, pattern): argument
170 if not path.endswith('/') and os.path.isdir(path):
171 path += '/'
178 return not not re.match(rep, path)
181 def get_subsystems_for_path(subsystems, path, strict): argument
188 if match_pattern(path, pattern):
194 if match_pattern(path, pattern):
262 if os.path.exists(arg):
272 if os.path.exists(arg):
280 for path in patch_paths:
283 ss_for_path = get_subsystems_for_path(all_subsystems, path,
290 paths += [path]
302 for path in paths:
303 ss.update(get_subsystems_for_path(all_subsystems, path, args.strict))