Lines Matching refs:path
33 system_path = os.path.normpath(os.path.join(out_path, 'system'))
36 return os.path.join(*system_path_dirs[out_index:])
38 def system_files(path): argument
42 system_prefix = os.path.join(path, 'system')
49 if not os.path.islink(os.path.join(root, file)):
50 system_files.append(os.path.join(root[system_prefix_len:], file))
54 def system_files_to_package_map(path): argument
58 system_prefix = _get_relative_out_path_from_root(path)
62 with open(os.path.join(path, 'module-info.json')) as module_info_json:
79 def package_to_vendor_map(path): argument
89 system_prefix = os.path.join(path, 'system')
94 with open(os.path.join(path, 'module-info.json')) as module_info_json:
100 path = paths[0]
102 if path.startswith(prefix):
138 with open(os.path.join(args.out1, 'module-info.json')) as module_info_json:
151 full_path = os.path.join(args.out1, 'system', file)