Searched refs:record (Results 1 – 8 of 8) sorted by relevance
/bionic/tests/ |
D | prio_ctor_test.cpp | 21 static const char* record[4] = {}; variable 25 record[idx++] = "prio1000"; in prio1000() 29 record[idx++] = "prio1"; in prio1() 33 record[idx++] = "noprio"; in noprio() 38 EXPECT_STREQ(record[0], "prio1"); in TEST() 39 EXPECT_STREQ(record[1], "prio1000"); in TEST() 40 EXPECT_STREQ(record[2], "noprio"); in TEST()
|
D | utils.h | 112 map_record record; in parse_maps() local 117 &record.addr_start, &record.addr_end, prot, &record.offset, in parse_maps() 118 &dev_major, &dev_minor, &record.inode, &path_offset) == 7) { in parse_maps() 119 record.perms = 0; in parse_maps() 121 record.perms |= PROT_READ; in parse_maps() 124 record.perms |= PROT_WRITE; in parse_maps() 127 record.perms |= PROT_EXEC; in parse_maps() 132 record.device = makedev(dev_major, dev_minor); in parse_maps() 133 record.pathname = line + path_offset; in parse_maps() 134 if (!record.pathname.empty() && record.pathname.back() == '\n') { in parse_maps() [all …]
|
/bionic/libc/malloc_debug/ |
D | DebugData.cpp | 70 record.reset(new RecordData()); in Initialize() 71 if (!record->Initialize(config_)) { in Initialize()
|
D | DebugData.h | 88 std::unique_ptr<RecordData> record; variable
|
D | malloc_debug.cpp | 593 g_debug->record->AddEntry(new MallocEntry(result.getValue<void*>(), size, in debug_malloc() 682 g_debug->record->AddEntry( in debug_free() 766 g_debug->record->AddEntry(new MemalignEntry(pointer, bytes, alignment, in debug_memalign() 787 g_debug->record->AddEntry(new ReallocEntry(result.getValue<void*>(), bytes, nullptr, in debug_realloc() 802 g_debug->record->AddEntry(new ReallocEntry(nullptr, bytes, pointer, result.GetStartTimeNS(), in debug_realloc() 900 g_debug->record->AddEntry(new ReallocEntry(new_pointer, bytes, pointer, result.GetStartTimeNS(), in debug_realloc() 957 g_debug->record->AddEntry( in debug_calloc()
|
D | README.md | 283 in the list. The default is to record 100 freed allocations, the max 284 allocations to record is 16384. 314 allocation is freed. The default is to record 16 frames, the max number of 315 frames to to record is 256. 353 ### record\_allocs[=TOTAL\_ENTRIES] 450 ### record\_allocs\_file[=FILE\_NAME] 451 This option only has meaning if record\_allocs is set. It indicates the 454 If FILE\_NAME is set, then it indicates where the record allocation data 565 The allocation record data has this format: 584 The first allocation record was created by the zygote of size 400 only one [all …]
|
/bionic/libc/arch-riscv64/bionic/ |
D | __bionic_clone.S | 57 # We're in the child now. Set the end of the frame record chain.
|
/bionic/docs/ |
D | native_allocator.md | 327 the option [record\_allocs](https://android.googlesource.com/platform/bionic/+/main/libc/malloc_deb…
|