Lines Matching refs:includes
16 sysincludes[arch] -- dict with includes root as key
49 """Recursive includes scan in given root"""
50 includes = []
53 return includes
56 includes.append(('', self.scan_dir(includes_root)))
61 includes.append((relpath, self.scan_dir(path)))
63 return includes
66 """Scan includes for all defined archs in given root"""
67 includes = {}
68 includes['common'] = self.scan_includes(root)
72 includes[arch] = self.scan_includes(arch_root)
74 return includes
77 """Scan all platform includes of one layer"""
82 """Scan Bionic's libc includes"""
87 """Merge new platform includes layer with current sysincludes"""
123 """Scan all required includes"""
128 ## scanning both includes repositories ##
149 ## for every includes directory ##
191 includes = self.diffs[arch][root].keys()
192 includes.sort()
193 for include in includes: