Searched refs:header (Results 1 - 6 of 6) sorted by relevance

/bionic/libc/bionic/
H A Dmalloc_debug_leak.cpp269 // 1. allocate enough memory and include our header
270 // 2. set the base pointer to be right after our header
284 AllocationEntry* header = reinterpret_cast<AllocationEntry*>(base); local
285 header->entry = record_backtrace(backtrace, numEntries, bytes);
286 header->guard = GUARD;
288 // now increment base to point to after our header.
289 // this should just work since our header is 8 bytes.
301 AllocationEntry* header = to_header(mem); local
303 if (header->guard != GUARD) {
305 if (header
350 AllocationEntry* header = to_header(oldMem); local
403 AllocationEntry* header = to_header(reinterpret_cast<void*>(ptr)); local
415 const AllocationEntry* header = const_to_header((void*)mem); local
[all...]
/bionic/libc/kernel/tools/
H A 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):
152 """return the set of all users for a given header"""
153 return set(self.headers.get(header))
[all...]
/bionic/libc/kernel/common/linux/
H A Dpci_regs.h4 *** This header was automatically generated from a Linux kernel header
7 *** structures, and macros generated from the original header, and thus,
10 *** To edit the content of this header, modify the corresponding
400 #define PCI_EXT_CAP_ID(header) (header & 0x0000ffff)
401 #define PCI_EXT_CAP_VER(header) ((header >> 16) & 0xf)
402 #define PCI_EXT_CAP_NEXT(header) ((header >> 2
[all...]
/bionic/libc/tzcode/
H A Dlocaltime.c1175 ** A non-static declaration of tzsetwall in a system header file
2133 } header; local
2134 memset(&header, 0, sizeof(header));
2135 ssize_t bytes_read = TEMP_FAILURE_RETRY(read(fd, &header, sizeof(header)));
2136 if (bytes_read != sizeof(header)) {
2137 fprintf(stderr, "%s: could not read header of \"%s\": %s\n",
2143 if (strncmp(header.tzdata_version, "tzdata", 6) != 0 || header
[all...]
/bionic/libc/kernel/common/linux/mtd/
H A Dmtd.h4 *** This header was automatically generated from a Linux kernel header
7 *** structures, and macros generated from the original header, and thus,
10 *** To edit the content of this header, modify the corresponding
21 #error This is a kernel header. Perhaps include mtd-user.h instead?
/bionic/libc/
H A DAndroid.mk733 # These files are built with the freebsd-compat.h header file
756 # These files are built with the netbsd-compat.h header file

Completed in 251 milliseconds