/bionic/libc/bionic/ |
D | malloc_debug_leak.cpp | 309 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/ |
D | kernel.py | 85 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 …]
|
D | generate_uapi_headers.sh | 94 header=$(basename ${file}) 95 if [[ -f "${check_dir}/${header}" ]]; then
|
/bionic/libc/kernel/uapi/asm-x86/asm/ |
D | kvm_para.h | 72 struct kvm_mmu_op_header header; member 79 struct kvm_mmu_op_header header; member 82 struct kvm_mmu_op_header header; member
|
D | bootparam.h | 71 __u32 header; member
|
/bionic/libc/kernel/ |
D | README.TXT | 14 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/ |
D | README.md | 42 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/ |
D | cxl.h | 87 struct cxl_event_header header; member
|
/bionic/libc/kernel/uapi/linux/ |
D | pci_regs.h | 632 #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
|
D | firewire-cdev.h | 97 __u32 header[0]; member 257 __u32 header[0]; member
|
/bionic/libc/tzcode/ |
D | localtime.c | 2156 } 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/ |
D | climits | 34 * Standard C++ Library wrapper around the C limits.h header file.
|
D | cstdint | 34 * Standard C++ Library wrapper around the C stdint.h header file.
|
D | cerrno | 34 * Standard C++ Library wrapper around the C errno.h header file.
|
D | cfloat | 34 * Standard C++ Library wrapper around the C float.h header file.
|
D | csignal | 34 * Standard C++ Library wrapper around the C signal.h header file.
|
D | cassert | 31 * Standard C++ Library wrapper around the C assert.h header file. This file
|
D | csetjmp | 34 * Standard C++ Library wrapper around the C setjmp.h header file.
|
D | cstddef | 34 * Standard C++ Library wrapper around the C stddef.h header file.
|
D | cctype | 34 * Standard C++ Library wrapper around the C ctype.h header file.
|
D | ctime | 34 * Standard C++ Library wrapper around the C time.h header file.
|
D | cstring | 34 * Standard C++ Library wrapper around the C string.h header file.
|
D | cmath | 34 * Standard C++ Library wrapper around the C math.h header file.
|
D | cstdio | 34 * Standard C++ Library wrapper around the C stdio.h header file.
|
D | cstdlib | 34 * Standard C++ Library wrapper around the C stdlib.h header file.
|