HomeSort by relevance Sort by last modified time
    Searched defs:MallocEntry (Results 1 - 3 of 3) sorted by null

  /bionic/benchmarks/
malloc_benchmark.cpp 45 struct MallocEntry {
52 void BenchmarkMalloc(MallocEntry entries[], size_t total_entries, size_t max_allocs) {
110 BenchmarkMalloc(g_sql_entries, sizeof(g_sql_entries) / sizeof(MallocEntry),
120 BenchmarkMalloc(g_sql_entries, sizeof(g_sql_entries) / sizeof(MallocEntry),
  /bionic/libc/malloc_debug/
RecordData.h 78 class MallocEntry : public AllocEntry {
80 MallocEntry(void* pointer, size_t size);
81 virtual ~MallocEntry() = default;
89 BIONIC_DISALLOW_COPY_AND_ASSIGN(MallocEntry);
103 class CallocEntry : public MallocEntry {
117 class ReallocEntry : public MallocEntry {
132 class MemalignEntry : public MallocEntry {
RecordData.cpp 57 MallocEntry::MallocEntry(void* pointer, size_t size) : AllocEntry(pointer), size_(size) {}
59 std::string MallocEntry::GetString() const {
70 : MallocEntry(pointer, size), nmemb_(nmemb) {}
77 : MallocEntry(pointer, size), old_pointer_(old_pointer) {}
85 : MallocEntry(pointer, size), alignment_(alignment) {}

Completed in 57 milliseconds