Home
last modified time | relevance | path

Searched refs:headers (Results 1 – 3 of 3) sorted by relevance

/bionic/libc/kernel/
DREADME.TXT1 Bionic comes with a set of 'clean' Linux kernel headers that can safely be
6 these clean headers are automatically generated by several scripts located
8 and unmodified kernel headers in order to get rid of many annoying
11 the 'clean headers' only contain type and macro definitions, with the
20 * 'external/kernel-headers/original/'
21 contains a set of kernel headers as normally found in the 'include'
27 contains the non-arch-specific clean headers and directories
31 contains the ARM-specific directory tree of clean headers.
34 contains the real ARM-specific headers
38 similarly contains all headers and symlinks to be used on x86
[all …]
/bionic/libc/kernel/tools/
Dfind_headers.py144 headers = fparser.getHeaders() variable
148 hparser = kernel.KernelHeaderFinder(headers,archs,kernel_root,kernel_config)
149 headers = hparser.scanForAllArchs() variable
154 print "the following %d headers:" % len(headers)
155 for h in sorted(headers):
167 for h in sorted(headers):
Dkernel.py74 self.headers = {} # maps headers to set of users
98 if not header in self.headers:
99 self.headers[header] = set()
104 self.headers[header].add(from_file)
149 return set(self.headers.keys())
153 return set(self.headers.get(header))
157 return self.headers.copy()
198 def __init__(self,headers,archs,kernel_root,kernel_config): argument
211 self.searched = set(headers)
236 def setSearchedHeaders(self,headers): argument
[all …]