Home
last modified time | relevance | path

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

12

/bionic/libc/bionic/
Dmalloc_debug_leak.cpp309 AllocationEntry* header = reinterpret_cast<AllocationEntry*>(base); in leak_malloc() local
310 header->entry = record_backtrace(backtrace, numEntries, bytes); in leak_malloc()
311 header->guard = GUARD; in leak_malloc()
331 AllocationEntry* header = to_header(mem); in leak_free() local
333 if (header->guard != GUARD) { in leak_free()
335 if (header->guard == MEMALIGN_GUARD) { in leak_free()
338 header = to_header(header->entry); in leak_free()
343 if (header->guard == GUARD || is_valid_entry(header->entry)) { in leak_free()
345 HashEntry* entry = header->entry; in leak_free()
353 g_malloc_dispatch->free(header); in leak_free()
[all …]
/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)
150 def getHeaderUsers(self,header): argument
152 return set(self.headers.get(header))
224 def pathFromHeader(self,header): argument
225 path = header
[all …]
Dgenerate_uapi_headers.sh94 header=$(basename ${file})
95 if [[ -f "${check_dir}/${header}" ]]; then
/bionic/libc/kernel/uapi/asm-x86/asm/
Dkvm_para.h72 struct kvm_mmu_op_header header; member
79 struct kvm_mmu_op_header header; member
82 struct kvm_mmu_op_header header; member
Dbootparam.h71 __u32 header; member
/bionic/libc/kernel/
DREADME.TXT14 They can be also included before or after any Bionic C library header.
20 also includes the header files that are generated by building the kernel
34 Checks out the android kernel and generates all uapi header files.
38 Prints the clean version of a given kernel header. With the -u option,
39 this will also update the corresponding clean header file if its
/bionic/
DREADME.md42 publicly-exported header file.
69 # The majority of header files are actually in libc/include/, but many
82 # The public header files on everyone's include path. These are a mixture of
86 # The kernel uapi header files. These are scrubbed copies of the originals
94 # These are private header files meant for use within bionic itself.
112 # header/source files needed by the BSD implementation.
147 3. Add constants (and perhaps types) to the appropriate header file.
149 kernel uapi header files, in which case you just need to make sure that
150 the appropriate POSIX header file in libc/include/ includes the
152 4. Add function declarations to the appropriate header file.
[all …]
/bionic/libc/kernel/uapi/misc/
Dcxl.h87 struct cxl_event_header header; member
/bionic/libc/kernel/uapi/linux/
Dpci_regs.h632 #define PCI_EXT_CAP_ID(header) (header & 0x0000ffff) argument
634 #define PCI_EXT_CAP_VER(header) ((header >> 16) & 0xf) argument
635 #define PCI_EXT_CAP_NEXT(header) ((header >> 20) & 0xffc) argument
Dfirewire-cdev.h97 __u32 header[0]; member
257 __u32 header[0]; member
/bionic/libc/tzcode/
Dlocaltime.c2156 } header; in __bionic_open_tzdata_path() local
2157 memset(&header, 0, sizeof(header)); in __bionic_open_tzdata_path()
2158 ssize_t bytes_read = TEMP_FAILURE_RETRY(read(fd, &header, sizeof(header))); in __bionic_open_tzdata_path()
2159 if (bytes_read != sizeof(header)) { in __bionic_open_tzdata_path()
2167 if (strncmp(header.tzdata_version, "tzdata", 6) != 0 || header.tzdata_version[11] != 0) { in __bionic_open_tzdata_path()
2169 __FUNCTION__, path, header.tzdata_version); in __bionic_open_tzdata_path()
2176 fprintf(stderr, "version: %s\n", header.tzdata_version); in __bionic_open_tzdata_path()
2177 fprintf(stderr, "index_offset = %d\n", ntohl(header.index_offset)); in __bionic_open_tzdata_path()
2178 fprintf(stderr, "data_offset = %d\n", ntohl(header.data_offset)); in __bionic_open_tzdata_path()
2179 fprintf(stderr, "zonetab_offset = %d\n", ntohl(header.zonetab_offset)); 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.
Dcerrno34 * Standard C++ Library wrapper around the C errno.h header file.
Dcfloat34 * Standard C++ Library wrapper around the C float.h header file.
Dcsignal34 * Standard C++ Library wrapper around the C signal.h header file.
Dcassert31 * Standard C++ Library wrapper around the C assert.h header file. This file
Dcsetjmp34 * Standard C++ Library wrapper around the C setjmp.h header file.
Dcstddef34 * Standard C++ Library wrapper around the C stddef.h header file.
Dcctype34 * Standard C++ Library wrapper around the C ctype.h header file.
Dctime34 * Standard C++ Library wrapper around the C time.h header file.
Dcstring34 * Standard C++ Library wrapper around the C string.h header file.
Dcmath34 * Standard C++ Library wrapper around the C math.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.

12