Home
last modified time | relevance | path

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

/bionic/tools/bionicbb/
Dbionicbb.py75 headers = {'Content-Type': 'application/json;charset=UTF-8'}
77 requests.post(url, headers=headers, json=request_data)
82 headers = {'Content-Type': 'application/json;charset=UTF-8'}
84 requests.post(url, headers=headers, json=request_data)
115 headers = {'Content-Type': 'application/json;charset=UTF-8'}
117 requests.post(url, headers=headers, json=request_data)
Dpresubmit.py149 headers = {'Content-Type': 'application/json;charset=UTF-8'}
152 requests.post(url, headers=headers, data=json.dumps(request_data))
/bionic/libc/kernel/
DREADME.TXT1 Bionic comes with a processed set of all of the uapi Linux kernel headers that
4 These clean headers are automatically generated by several scripts located
6 unmodified kernel headers in order to get rid of many annoying
9 The 'clean headers' only contain type and macro definitions, with the
16 Description of the directories involved in generating the parsed kernel headers:
18 * 'external/kernel-headers/original/'
19 Contains the uapi kernel headers found in the android kernel. Note this
24 Contains the cleaned kernel headers and mirrors the directory structure
25 in 'external/kernel-headers/original/uapi/'.
29 the headers.
[all …]
/bionic/libc/kernel/tools/
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)
148 return set(self.headers.keys())
152 return set(self.headers.get(header))
156 return self.headers.copy()
197 def __init__(self,headers,archs,kernel_root,kernel_config): argument
210 self.searched = set(headers)
235 def setSearchedHeaders(self,headers): argument
[all …]
/bionic/
DREADME.md72 # headers live here.
87 # in external/kernel-headers/. These files must not be edited directly. The
89 # external/kernel-headers/ --- this takes care of the architecture-specific
91 # scrubbed headers from external/kernel-headers/.
165 contents for external/kernel-headers/.
166 2. Run update_all.py to scrub those headers and import them into bionic.