Searched refs:record (Results 1 – 7 of 7) sorted by relevance
/bionic/tests/ |
D | utils.h | 122 map_record record; in parse_maps() local 127 &record.addr_start, &record.addr_end, prot, &record.offset, in parse_maps() 128 &dev_major, &dev_minor, &record.inode, &path_offset) == 7) { in parse_maps() 129 record.perms = 0; in parse_maps() 131 record.perms |= PROT_READ; in parse_maps() 134 record.perms |= PROT_WRITE; in parse_maps() 137 record.perms |= PROT_EXEC; in parse_maps() 142 record.device = makedev(dev_major, dev_minor); in parse_maps() 143 record.pathname = line + path_offset; in parse_maps() 144 if (!record.pathname.empty() && record.pathname.back() == '\n') { in parse_maps() [all …]
|
/bionic/libc/malloc_debug/ |
D | DebugData.cpp | 69 record.reset(new RecordData()); in Initialize() 70 if (!record->Initialize(config_)) { in Initialize()
|
D | malloc_debug.cpp | 480 g_debug->record->AddEntry(new MallocEntry(pointer, size)); in debug_malloc() 555 g_debug->record->AddEntry(new FreeEntry(pointer)); in debug_free() 638 g_debug->record->AddEntry(new MemalignEntry(pointer, bytes, alignment)); in debug_memalign() 656 g_debug->record->AddEntry(new ReallocEntry(pointer, bytes, nullptr)); in debug_realloc() 667 g_debug->record->AddEntry(new ReallocEntry(nullptr, bytes, pointer)); in debug_realloc() 759 g_debug->record->AddEntry(new ReallocEntry(new_pointer, bytes, pointer)); in debug_realloc() 811 g_debug->record->AddEntry(new CallocEntry(pointer, bytes, nmemb)); in debug_calloc()
|
D | DebugData.h | 88 std::unique_ptr<RecordData> record; variable
|
D | README.md | 211 in the list. The default is to record 100 freed allocations, the max 212 allocations to record is 16384. 242 allocation is freed. The default is to record 16 frames, the max number of 243 frames to to record is 256. 271 ### record\_allocs[=TOTAL\_ENTRIES] 368 ### record\_allocs\_file[=FILE\_NAME] 369 This option only has meaning if record\_allocs is set. It indicates the 372 If FILE\_NAME is set, then it indicates where the record allocation data 483 The allocation record data has this format: 502 The first allocation record was created by the zygote of size 400 only one [all …]
|
D | RecordData.cpp | 118 g_debug->record->SetToDump(); in RecordDump()
|
/bionic/docs/ |
D | native_allocator.md | 327 the option [record\_allocs](https://android.googlesource.com/platform/bionic/+/master/libc/malloc_d…
|