Home
last modified time | relevance | path

Searched refs:header (Results 1 – 22 of 22) sorted by relevance

/bionic/libc/kernel/tools/
Dkernel.py85 header = m.group(1)
96 header = "%s%s" % (_prefix, header)
98 if not header in self.headers:
99 self.headers[header] = set()
103 print "=== %s uses %s" % (from_file, header)
104 self.headers[header].add(from_file)
151 def getHeaderUsers(self,header): argument
153 return set(self.headers.get(header))
225 def pathFromHeader(self,header): argument
226 path = header
[all …]
/bionic/libc/bionic/
Dmalloc_debug_leak.cpp278 AllocationEntry* header = reinterpret_cast<AllocationEntry*>(base); in leak_malloc() local
279 header->entry = record_backtrace(backtrace, numEntries, bytes); in leak_malloc()
280 header->guard = GUARD; in leak_malloc()
295 AllocationEntry* header = to_header(mem); in leak_free() local
297 if (header->guard != GUARD) { in leak_free()
301 header = to_header(mem); in leak_free()
305 if (header->guard == GUARD || is_valid_entry(header->entry)) { in leak_free()
307 HashEntry* entry = header->entry; in leak_free()
315 dlfree(header); in leak_free()
318 header->guard, header->entry); in leak_free()
[all …]
/bionic/libc/kernel/common/linux/
Dpci_regs.h400 #define PCI_EXT_CAP_ID(header) (header & 0x0000ffff) argument
401 #define PCI_EXT_CAP_VER(header) ((header >> 16) & 0xf) argument
402 #define PCI_EXT_CAP_NEXT(header) ((header >> 20) & 0xffc) argument
/bionic/libc/tools/
Dbionic_utils.py148 def find_arch_header(kernel_headers,arch,header): argument
152 path = "%s/arch/%s/include/asm/%s" % (kernel_headers, arch, header)
159 path = "%s/include/asm-%s/%s" % (kernel_headers, arch, header)
166 path = "%s/asm-%s/%s" % (kernel_headers, arch, header)
/bionic/libc/kernel/
DREADME.TXT16 they can be also included before or after any Bionic C library header.
54 prints the clean version of a given kernel header. with the -u option,
55 this will also update the corresponding clean header file if its
102 copy any updated kernel header into the corresponding location under
105 for any new kernel header you want to add, first run tools/find_headers.py to be
166 perform a call to one of these kernel-header functions, or even define other
178 prepended to each generated header, contains a message like
243 and keep current with upstream changes in the header definitions with the
268 - sometimes, the header is simply incorrect (e.g. it uses a type without
269 including the header that defines it before-hand)
/bionic/libc/tzcode/
Dlocaltime.c2278 } header; in __bionic_open_tzdata_path() local
2279 if (TEMP_FAILURE_RETRY(read(fd, &header, sizeof(header))) != sizeof(header)) { in __bionic_open_tzdata_path()
2285 if (strncmp(header.tzdata_version, "tzdata", 6) != 0 || header.tzdata_version[11] != 0) { in __bionic_open_tzdata_path()
2286 fprintf(stderr, "%s: bad magic: %s\n", __FUNCTION__, header.tzdata_version); in __bionic_open_tzdata_path()
2292 fprintf(stderr, "version: %s\n", header.tzdata_version); in __bionic_open_tzdata_path()
2293 fprintf(stderr, "index_offset = %d\n", ntohl(header.index_offset)); in __bionic_open_tzdata_path()
2294 fprintf(stderr, "data_offset = %d\n", ntohl(header.data_offset)); in __bionic_open_tzdata_path()
2295 fprintf(stderr, "zonetab_offset = %d\n", ntohl(header.zonetab_offset)); in __bionic_open_tzdata_path()
2298 if (TEMP_FAILURE_RETRY(lseek(fd, ntohl(header.index_offset), SEEK_SET)) == -1) { in __bionic_open_tzdata_path()
2309 size_t id_count = (ntohl(header.data_offset) - ntohl(header.index_offset)) / sizeof(buf); in __bionic_open_tzdata_path()
[all …]
/bionic/libstdc++/include/
Dclimits34 * Standard C++ Library wrapper around the C limits.h header file.
Dcstdint34 * Standard C++ Library wrapper around the C stdint.h header file.
Dcsignal34 * Standard C++ Library wrapper around the C signal.h header file.
Dcfloat34 * Standard C++ Library wrapper around the C float.h header file.
Dcerrno34 * Standard C++ Library wrapper around the C errno.h header file.
Dcassert31 * Standard C++ Library wrapper around the C assert.h header file. This file
Dcstddef34 * Standard C++ Library wrapper around the C stddef.h header file.
Dcsetjmp34 * Standard C++ Library wrapper around the C setjmp.h header file.
Dctime34 * Standard C++ Library wrapper around the C time.h header file.
Dcctype34 * Standard C++ Library wrapper around the C ctype.h header file.
Dcmath34 * Standard C++ Library wrapper around the C time.h header file.
Dcstring34 * Standard C++ Library wrapper around the C string.h header file.
Dcstdio34 * Standard C++ Library wrapper around the C stdio.h header file.
Dcstdlib34 * Standard C++ Library wrapper around the C stdlib.h header file.
/bionic/libc/kernel/common/linux/mtd/
Dmtd.h21 #error This is a kernel header. Perhaps include mtd-user.h instead?
/bionic/libc/
DSYSCALLS.TXT20 # taking the constants from the kernel header files.
106 int capget(cap_user_header_t header, cap_user_data_t data) 1
107 int capset(cap_user_header_t header, const cap_user_data_t data) 1