Home
last modified time | relevance | path

Searched refs:record (Results 1 – 6 of 6) sorted by relevance

/bionic/tests/
Dutils.h107 map_record record; in parse_maps() local
112 &record.addr_start, &record.addr_end, prot, &record.offset, in parse_maps()
113 &dev_major, &dev_minor, &record.inode, &path_offset) == 7) { in parse_maps()
114 record.perms = 0; in parse_maps()
116 record.perms |= PROT_READ; in parse_maps()
119 record.perms |= PROT_WRITE; in parse_maps()
122 record.perms |= PROT_EXEC; in parse_maps()
127 record.device = makedev(dev_major, dev_minor); in parse_maps()
128 record.pathname = line + path_offset; in parse_maps()
129 if (!record.pathname.empty() && record.pathname.back() == '\n') { in parse_maps()
[all …]
/bionic/libc/malloc_debug/
DDebugData.cpp69 record.reset(new RecordData()); in Initialize()
70 if (!record->Initialize(config_)) { in Initialize()
DDebugData.h88 std::unique_ptr<RecordData> record; variable
Dmalloc_debug.cpp433 g_debug->record->AddEntry(new MallocEntry(pointer, size)); in debug_malloc()
507 g_debug->record->AddEntry(new FreeEntry(pointer)); in debug_free()
589 g_debug->record->AddEntry(new MemalignEntry(pointer, bytes, alignment)); in debug_memalign()
606 g_debug->record->AddEntry(new ReallocEntry(pointer, bytes, nullptr)); in debug_realloc()
617 g_debug->record->AddEntry(new ReallocEntry(nullptr, bytes, pointer)); in debug_realloc()
709 g_debug->record->AddEntry(new ReallocEntry(new_pointer, bytes, pointer)); in debug_realloc()
760 g_debug->record->AddEntry(new CallocEntry(pointer, bytes, nmemb)); in debug_calloc()
DRecordData.cpp118 g_debug->record->SetToDump(); in RecordDump()
DREADME.md211 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 …]