Home
last modified time | relevance | path

Searched refs:MemoryAllocatorDump (Results 1 – 25 of 282) sorted by relevance

12345678910>>...12

/dports/www/chromium-legacy/chromium-88.0.4324.182/base/trace_event/
H A Dmemory_allocator_dump_unittest.cc34 MemoryAllocatorDump* root_heap = in OnMemoryDump()
37 root_heap->AddScalar(MemoryAllocatorDump::kNameSize, in OnMemoryDump()
44 MemoryAllocatorDump* sub_heap = in OnMemoryDump()
59 void CheckString(const MemoryAllocatorDump* dump, in CheckString()
67 void CheckScalar(const MemoryAllocatorDump* dump, in CheckScalar()
78 std::unique_ptr<MemoryAllocatorDump> mad(new MemoryAllocatorDump( in TEST()
92 const MemoryAllocatorDump* root_heap = in TEST()
103 const MemoryAllocatorDump* sub_heap = in TEST()
108 MemoryAllocatorDump::kUnitsBytes, 1); in TEST()
111 const MemoryAllocatorDump* empty_sub_heap = in TEST()
[all …]
H A Dmemory_allocator_dump.cc23 const char MemoryAllocatorDump::kNameSize[] = "size";
30 MemoryAllocatorDump::MemoryAllocatorDump( in MemoryAllocatorDump() function in base::trace_event::MemoryAllocatorDump
46 MemoryAllocatorDump::~MemoryAllocatorDump() = default;
48 void MemoryAllocatorDump::AddScalar(const char* name, in AddScalar()
54 void MemoryAllocatorDump::AddString(const char* name, in AddString()
95 void MemoryAllocatorDump::AsProtoInto( in AsProtoInto()
155 MemoryAllocatorDump::Entry::Entry(MemoryAllocatorDump::Entry&&) noexcept =
157 MemoryAllocatorDump::Entry& MemoryAllocatorDump::Entry::operator=(
158 MemoryAllocatorDump::Entry&&) = default;
159 MemoryAllocatorDump::Entry::Entry(std::string name, in Entry()
[all …]
H A Dprocess_memory_dump.h62 std::map<std::string, std::unique_ptr<MemoryAllocatorDump>>;
107 MemoryAllocatorDump* CreateAllocatorDump(const std::string& absolute_name,
121 MemoryAllocatorDump* GetOrCreateAllocatorDump(
128 MemoryAllocatorDump* CreateSharedGlobalAllocatorDump(
137 MemoryAllocatorDump* CreateWeakSharedGlobalAllocatorDump(
141 MemoryAllocatorDump* GetSharedGlobalAllocatorDump(
153 std::vector<std::unique_ptr<MemoryAllocatorDump>>);
246 MemoryAllocatorDump* AddAllocatorDumpInternal(
247 std::unique_ptr<MemoryAllocatorDump> mad);
268 MemoryAllocatorDump* GetBlackHoleMad();
[all …]
H A Dmalloc_dump_provider.cc183 MemoryAllocatorDump* outer_dump = pmd->CreateAllocatorDump("malloc"); in OnMemoryDump()
184 outer_dump->AddScalar("virtual_size", MemoryAllocatorDump::kUnitsBytes, in OnMemoryDump()
186 outer_dump->AddScalar(MemoryAllocatorDump::kNameSize, in OnMemoryDump()
190 inner_dump->AddScalar(MemoryAllocatorDump::kNameSize, in OnMemoryDump()
191 MemoryAllocatorDump::kUnitsBytes, in OnMemoryDump()
194 inner_dump->AddScalar(MemoryAllocatorDump::kNameObjectCount, in OnMemoryDump()
195 MemoryAllocatorDump::kUnitsObjects, in OnMemoryDump()
203 MemoryAllocatorDump* other_dump = in OnMemoryDump()
205 other_dump->AddScalar(MemoryAllocatorDump::kNameSize, in OnMemoryDump()
206 MemoryAllocatorDump::kUnitsBytes, in OnMemoryDump()
[all …]
H A Djava_heap_dump_provider_android.cc28 MemoryAllocatorDump* outer_dump = pmd->CreateAllocatorDump("java_heap"); in OnMemoryDump()
29 outer_dump->AddScalar(MemoryAllocatorDump::kNameSize, in OnMemoryDump()
30 MemoryAllocatorDump::kUnitsBytes, total_heap_size); in OnMemoryDump()
32 MemoryAllocatorDump* inner_dump = in OnMemoryDump()
34 inner_dump->AddScalar(MemoryAllocatorDump::kNameSize, in OnMemoryDump()
35 MemoryAllocatorDump::kUnitsBytes, in OnMemoryDump()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/base/trace_event/
H A Dmemory_allocator_dump_unittest.cc34 MemoryAllocatorDump* root_heap = in OnMemoryDump()
37 root_heap->AddScalar(MemoryAllocatorDump::kNameSize, in OnMemoryDump()
44 MemoryAllocatorDump* sub_heap = in OnMemoryDump()
59 void CheckString(const MemoryAllocatorDump* dump, in CheckString()
67 void CheckScalar(const MemoryAllocatorDump* dump, in CheckScalar()
78 std::unique_ptr<MemoryAllocatorDump> mad(new MemoryAllocatorDump( in TEST()
92 const MemoryAllocatorDump* root_heap = in TEST()
103 const MemoryAllocatorDump* sub_heap = in TEST()
108 MemoryAllocatorDump::kUnitsBytes, 1); in TEST()
111 const MemoryAllocatorDump* empty_sub_heap = in TEST()
[all …]
H A Dmemory_allocator_dump.cc21 const char MemoryAllocatorDump::kNameSize[] = "size";
25 const char MemoryAllocatorDump::kUnitsBytes[] = "bytes";
28 MemoryAllocatorDump::MemoryAllocatorDump( in MemoryAllocatorDump() function in base::trace_event::MemoryAllocatorDump
44 MemoryAllocatorDump::~MemoryAllocatorDump() = default;
46 void MemoryAllocatorDump::AddScalar(const char* name, in AddScalar()
52 void MemoryAllocatorDump::AddString(const char* name, in AddString()
107 MemoryAllocatorDump::Entry::Entry(MemoryAllocatorDump::Entry&&) noexcept =
109 MemoryAllocatorDump::Entry& MemoryAllocatorDump::Entry::operator=(
110 MemoryAllocatorDump::Entry&&) = default;
111 MemoryAllocatorDump::Entry::Entry(std::string name, in Entry()
[all …]
H A Dprocess_memory_dump.h54 std::map<std::string, std::unique_ptr<MemoryAllocatorDump>>;
99 MemoryAllocatorDump* CreateAllocatorDump(const std::string& absolute_name,
113 MemoryAllocatorDump* GetOrCreateAllocatorDump(
120 MemoryAllocatorDump* CreateSharedGlobalAllocatorDump(
129 MemoryAllocatorDump* CreateWeakSharedGlobalAllocatorDump(
133 MemoryAllocatorDump* GetSharedGlobalAllocatorDump(
145 std::vector<std::unique_ptr<MemoryAllocatorDump>>);
234 MemoryAllocatorDump* AddAllocatorDumpInternal(
235 std::unique_ptr<MemoryAllocatorDump> mad);
256 MemoryAllocatorDump* GetBlackHoleMad();
[all …]
H A Dmalloc_dump_provider.cc152 MemoryAllocatorDump* outer_dump = pmd->CreateAllocatorDump("malloc"); in OnMemoryDump()
153 outer_dump->AddScalar("virtual_size", MemoryAllocatorDump::kUnitsBytes, in OnMemoryDump()
155 outer_dump->AddScalar(MemoryAllocatorDump::kNameSize, in OnMemoryDump()
156 MemoryAllocatorDump::kUnitsBytes, resident_size); in OnMemoryDump()
159 inner_dump->AddScalar(MemoryAllocatorDump::kNameSize, in OnMemoryDump()
160 MemoryAllocatorDump::kUnitsBytes, in OnMemoryDump()
163 inner_dump->AddScalar(MemoryAllocatorDump::kNameObjectCount, in OnMemoryDump()
164 MemoryAllocatorDump::kUnitsObjects, in OnMemoryDump()
172 MemoryAllocatorDump* other_dump = in OnMemoryDump()
174 other_dump->AddScalar(MemoryAllocatorDump::kNameSize, in OnMemoryDump()
[all …]
H A Dprocess_memory_dump.cc241 MemoryAllocatorDump* ProcessMemoryDump::CreateAllocatorDump( in CreateAllocatorDump()
247 MemoryAllocatorDump* ProcessMemoryDump::CreateAllocatorDump( in CreateAllocatorDump()
255 std::unique_ptr<MemoryAllocatorDump> mad) { in AddAllocatorDumpInternal()
271 MemoryAllocatorDump* ProcessMemoryDump::GetAllocatorDump( in GetAllocatorDump()
281 MemoryAllocatorDump* mad = GetAllocatorDump(absolute_name); in GetOrCreateAllocatorDump()
293 mad->clear_flags(MemoryAllocatorDump::Flags::WEAK); in CreateSharedGlobalAllocatorDump()
305 mad->set_flags(MemoryAllocatorDump::Flags::WEAK); in CreateWeakSharedGlobalAllocatorDump()
326 std::vector<std::unique_ptr<MemoryAllocatorDump>> dumps) { in SetAllocatorDumpsForSerialization()
328 for (std::unique_ptr<MemoryAllocatorDump>& dump : dumps) in SetAllocatorDumpsForSerialization()
484 MemoryAllocatorDump* ProcessMemoryDump::GetBlackHoleMad() { in GetBlackHoleMad()
[all …]
H A Djava_heap_dump_provider_android.cc34 MemoryAllocatorDump* outer_dump = pmd->CreateAllocatorDump("java_heap"); in OnMemoryDump()
35 outer_dump->AddScalar(MemoryAllocatorDump::kNameSize, in OnMemoryDump()
36 MemoryAllocatorDump::kUnitsBytes, total_heap_size); in OnMemoryDump()
38 MemoryAllocatorDump* inner_dump = in OnMemoryDump()
40 inner_dump->AddScalar(MemoryAllocatorDump::kNameSize, in OnMemoryDump()
41 MemoryAllocatorDump::kUnitsBytes, in OnMemoryDump()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/services/resource_coordinator/public/cpp/memory_instrumentation/
H A Dmemory_instrumentation_mojom_traits_unittest.cc17 using base::trace_event::MemoryAllocatorDump;
81 MemoryAllocatorDump::Entry output1; in TEST_F()
97 MemoryAllocatorDump::Entry output2; in TEST_F()
107 TEST_F(StructTraitsTest, MemoryAllocatorDump) { in TEST_F() argument
108 auto input = std::make_unique<MemoryAllocatorDump>( in TEST_F()
111 std::unique_ptr<MemoryAllocatorDump> output; in TEST_F()
114 input->set_flags(MemoryAllocatorDump::WEAK); in TEST_F()
119 EXPECT_EQ(MemoryAllocatorDump::WEAK, output->flags()); in TEST_F()
122 MemoryAllocatorDump::Entry expected_entry1("size", "bytes", 10); in TEST_F()
145 MemoryAllocatorDump* mad_shg = in TEST_F()
[all …]
H A Dmemory_instrumentation_mojom_traits.h102 base::trace_event::MemoryAllocatorDump::Entry> { in COMPONENT_EXPORT()
104 const base::trace_event::MemoryAllocatorDump::Entry& args) { in COMPONENT_EXPORT()
119 const base::trace_event::MemoryAllocatorDump::Entry& args) { in COMPONENT_EXPORT()
124 const base::trace_event::MemoryAllocatorDump::Entry& args) { in COMPONENT_EXPORT()
130 base::trace_event::MemoryAllocatorDump::Entry* out); in COMPONENT_EXPORT()
136 base::trace_event::MemoryAllocatorDump::Entry> { in COMPONENT_EXPORT()
138 const base::trace_event::MemoryAllocatorDump::Entry& entry) { in COMPONENT_EXPORT()
142 const base::trace_event::MemoryAllocatorDump::Entry& entry) { in COMPONENT_EXPORT()
145 static const base::trace_event::MemoryAllocatorDump::Entry& value( in COMPONENT_EXPORT()
146 const base::trace_event::MemoryAllocatorDump::Entry& entry) { in COMPONENT_EXPORT()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/services/resource_coordinator/public/cpp/memory_instrumentation/
H A Dmemory_instrumentation_mojom_traits_unittest.cc17 using base::trace_event::MemoryAllocatorDump;
81 MemoryAllocatorDump::Entry output1; in TEST_F()
97 MemoryAllocatorDump::Entry output2; in TEST_F()
107 TEST_F(StructTraitsTest, MemoryAllocatorDump) { in TEST_F() argument
108 auto input = std::make_unique<MemoryAllocatorDump>( in TEST_F()
111 std::unique_ptr<MemoryAllocatorDump> output; in TEST_F()
114 input->set_flags(MemoryAllocatorDump::WEAK); in TEST_F()
119 EXPECT_EQ(MemoryAllocatorDump::WEAK, output->flags()); in TEST_F()
122 MemoryAllocatorDump::Entry expected_entry1("size", "bytes", 10); in TEST_F()
145 MemoryAllocatorDump* mad_shg = in TEST_F()
[all …]
H A Dmemory_instrumentation_mojom_traits.h104 base::trace_event::MemoryAllocatorDump::Entry> { in COMPONENT_EXPORT()
106 GetTag(const base::trace_event::MemoryAllocatorDump::Entry& args) { in COMPONENT_EXPORT()
121 const base::trace_event::MemoryAllocatorDump::Entry& args) { in COMPONENT_EXPORT()
126 const base::trace_event::MemoryAllocatorDump::Entry& args) { in COMPONENT_EXPORT()
132 base::trace_event::MemoryAllocatorDump::Entry* out); in COMPONENT_EXPORT()
138 base::trace_event::MemoryAllocatorDump::Entry> { in COMPONENT_EXPORT()
140 const base::trace_event::MemoryAllocatorDump::Entry& entry) { in COMPONENT_EXPORT()
144 const base::trace_event::MemoryAllocatorDump::Entry& entry) { in COMPONENT_EXPORT()
147 static const base::trace_event::MemoryAllocatorDump::Entry& value( in COMPONENT_EXPORT()
148 const base::trace_event::MemoryAllocatorDump::Entry& entry) { in COMPONENT_EXPORT()
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/gin/
H A Dv8_isolate_memory_dump_provider.cc53 void DumpCodeStatistics(base::trace_event::MemoryAllocatorDump* dump, in DumpCodeStatistics()
74 base::trace_event::MemoryAllocatorDump::kUnitsBytes, in DumpCodeStatistics()
77 base::trace_event::MemoryAllocatorDump::kUnitsBytes, in DumpCodeStatistics()
80 base::trace_event::MemoryAllocatorDump::kUnitsBytes, in DumpCodeStatistics()
112 "object_count", base::trace_event::MemoryAllocatorDump::kUnitsObjects, in DumpContextStatistics()
119 "object_count", base::trace_event::MemoryAllocatorDump::kUnitsObjects, in DumpContextStatistics()
223 zap_dump->AddScalar(base::trace_event::MemoryAllocatorDump::kNameSize, in DumpHeapStatistics()
260 base::trace_event::MemoryAllocatorDump::kNameSize, in DumpHeapStatistics()
261 base::trace_event::MemoryAllocatorDump::kUnitsBytes, in DumpHeapStatistics()
291 base::trace_event::MemoryAllocatorDump::kNameObjectCount, in DumpHeapStatistics()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/gin/
H A Dv8_isolate_memory_dump_provider.cc54 void DumpCodeStatistics(base::trace_event::MemoryAllocatorDump* dump, in DumpCodeStatistics()
75 base::trace_event::MemoryAllocatorDump::kUnitsBytes, in DumpCodeStatistics()
78 base::trace_event::MemoryAllocatorDump::kUnitsBytes, in DumpCodeStatistics()
81 base::trace_event::MemoryAllocatorDump::kUnitsBytes, in DumpCodeStatistics()
113 "object_count", base::trace_event::MemoryAllocatorDump::kUnitsObjects, in DumpContextStatistics()
120 "object_count", base::trace_event::MemoryAllocatorDump::kUnitsObjects, in DumpContextStatistics()
228 zap_dump->AddScalar(base::trace_event::MemoryAllocatorDump::kNameSize, in DumpHeapStatistics()
264 base::trace_event::MemoryAllocatorDump::kNameSize, in DumpHeapStatistics()
265 base::trace_event::MemoryAllocatorDump::kUnitsBytes, in DumpHeapStatistics()
295 base::trace_event::MemoryAllocatorDump::kNameObjectCount, in DumpHeapStatistics()
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/blink/renderer/platform/heap/
H A Dblink_gc_memory_dump_provider.cc71 heap_dump->AddScalar(base::trace_event::MemoryAllocatorDump::kNameSize, in OnMemoryDump()
72 base::trace_event::MemoryAllocatorDump::kUnitsBytes, in OnMemoryDump()
75 base::trace_event::MemoryAllocatorDump::kUnitsBytes, in OnMemoryDump()
88 arena_dump->AddScalar(base::trace_event::MemoryAllocatorDump::kNameSize, in OnMemoryDump()
89 base::trace_event::MemoryAllocatorDump::kUnitsBytes, in OnMemoryDump()
92 base::trace_event::MemoryAllocatorDump::kUnitsBytes, in OnMemoryDump()
101 page_dump->AddScalar(base::trace_event::MemoryAllocatorDump::kNameSize, in OnMemoryDump()
102 base::trace_event::MemoryAllocatorDump::kUnitsBytes, in OnMemoryDump()
105 base::trace_event::MemoryAllocatorDump::kUnitsBytes, in OnMemoryDump()
121 "free_size", base::trace_event::MemoryAllocatorDump::kUnitsBytes, in OnMemoryDump()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/blink/renderer/platform/heap/impl/
H A Dblink_gc_memory_dump_provider.cc71 heap_dump->AddScalar(base::trace_event::MemoryAllocatorDump::kNameSize, in OnMemoryDump()
72 base::trace_event::MemoryAllocatorDump::kUnitsBytes, in OnMemoryDump()
75 base::trace_event::MemoryAllocatorDump::kUnitsBytes, in OnMemoryDump()
88 arena_dump->AddScalar(base::trace_event::MemoryAllocatorDump::kNameSize, in OnMemoryDump()
89 base::trace_event::MemoryAllocatorDump::kUnitsBytes, in OnMemoryDump()
92 base::trace_event::MemoryAllocatorDump::kUnitsBytes, in OnMemoryDump()
101 page_dump->AddScalar(base::trace_event::MemoryAllocatorDump::kNameSize, in OnMemoryDump()
102 base::trace_event::MemoryAllocatorDump::kUnitsBytes, in OnMemoryDump()
105 base::trace_event::MemoryAllocatorDump::kUnitsBytes, in OnMemoryDump()
121 "free_size", base::trace_event::MemoryAllocatorDump::kUnitsBytes, in OnMemoryDump()
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/gpu/command_buffer/service/
H A Dservice_transfer_cache.cc40 using base::trace_event::MemoryAllocatorDump; in DumpMemoryForImageTransferCacheEntry()
44 dump->AddScalar(MemoryAllocatorDump::kNameSize, in DumpMemoryForImageTransferCacheEntry()
73 using base::trace_event::MemoryAllocatorDump; in DumpMemoryForYUVImageTransferCacheEntry()
80 MemoryAllocatorDump* dump = pmd->CreateAllocatorDump( in DumpMemoryForYUVImageTransferCacheEntry()
82 dump->AddScalar(MemoryAllocatorDump::kNameSize, in DumpMemoryForYUVImageTransferCacheEntry()
92 MemoryAllocatorDump* dump = pmd->CreateAllocatorDump( in DumpMemoryForYUVImageTransferCacheEntry()
96 dump->AddScalar(MemoryAllocatorDump::kNameSize, in DumpMemoryForYUVImageTransferCacheEntry()
314 using base::trace_event::MemoryAllocatorDump; in OnMemoryDump()
322 dump->AddScalar(MemoryAllocatorDump::kNameSize, in OnMemoryDump()
326 MemoryAllocatorDump* dump_avg_size = in OnMemoryDump()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/gpu/command_buffer/service/
H A Dservice_transfer_cache.cc40 using base::trace_event::MemoryAllocatorDump; in DumpMemoryForImageTransferCacheEntry()
44 dump->AddScalar(MemoryAllocatorDump::kNameSize, in DumpMemoryForImageTransferCacheEntry()
73 using base::trace_event::MemoryAllocatorDump; in DumpMemoryForYUVImageTransferCacheEntry()
80 MemoryAllocatorDump* dump = pmd->CreateAllocatorDump( in DumpMemoryForYUVImageTransferCacheEntry()
82 dump->AddScalar(MemoryAllocatorDump::kNameSize, in DumpMemoryForYUVImageTransferCacheEntry()
92 MemoryAllocatorDump* dump = pmd->CreateAllocatorDump( in DumpMemoryForYUVImageTransferCacheEntry()
96 dump->AddScalar(MemoryAllocatorDump::kNameSize, in DumpMemoryForYUVImageTransferCacheEntry()
314 using base::trace_event::MemoryAllocatorDump; in OnMemoryDump()
322 dump->AddScalar(MemoryAllocatorDump::kNameSize, in OnMemoryDump()
326 MemoryAllocatorDump* dump_avg_size = in OnMemoryDump()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/base/memory/
H A Dshared_memory_tracker.cc42 const trace_event::MemoryAllocatorDump*
79 const trace_event::MemoryAllocatorDump* dump = in OnMemoryDump()
88 const trace_event::MemoryAllocatorDump*
96 trace_event::MemoryAllocatorDump* local_dump = in GetOrCreateSharedMemoryDumpInternal()
113 local_dump->AddScalar(trace_event::MemoryAllocatorDump::kNameSize, in GetOrCreateSharedMemoryDumpInternal()
114 trace_event::MemoryAllocatorDump::kUnitsBytes, size); in GetOrCreateSharedMemoryDumpInternal()
116 trace_event::MemoryAllocatorDump::kUnitsBytes, in GetOrCreateSharedMemoryDumpInternal()
119 trace_event::MemoryAllocatorDump* global_dump = in GetOrCreateSharedMemoryDumpInternal()
121 global_dump->AddScalar(trace_event::MemoryAllocatorDump::kNameSize, in GetOrCreateSharedMemoryDumpInternal()
122 trace_event::MemoryAllocatorDump::kUnitsBytes, size); in GetOrCreateSharedMemoryDumpInternal()
H A Dmadv_free_discardable_memory_posix.cc227 trace_event::MemoryAllocatorDump*
234 using base::trace_event::MemoryAllocatorDump; in CreateMemoryAllocatorDump()
238 MemoryAllocatorDump* allocator_dump = in CreateMemoryAllocatorDump()
243 MemoryAllocatorDump* dump = pmd->CreateAllocatorDump(name); in CreateMemoryAllocatorDump()
246 dump->AddScalar(MemoryAllocatorDump::kNameSize, in CreateMemoryAllocatorDump()
247 MemoryAllocatorDump::kUnitsBytes, in CreateMemoryAllocatorDump()
251 MemoryAllocatorDump::kNameSize, MemoryAllocatorDump::kUnitsBytes, in CreateMemoryAllocatorDump()
255 allocator_dump->AddScalar(MemoryAllocatorDump::kNameObjectCount, in CreateMemoryAllocatorDump()
256 MemoryAllocatorDump::kUnitsObjects, 1U); in CreateMemoryAllocatorDump()
258 "wasted_size", MemoryAllocatorDump::kUnitsBytes, in CreateMemoryAllocatorDump()
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/base/memory/
H A Dshared_memory_tracker.cc36 const trace_event::MemoryAllocatorDump*
71 const trace_event::MemoryAllocatorDump* dump = in OnMemoryDump()
80 const trace_event::MemoryAllocatorDump*
87 trace_event::MemoryAllocatorDump* local_dump = in GetOrCreateSharedMemoryDumpInternal()
104 local_dump->AddScalar(trace_event::MemoryAllocatorDump::kNameSize, in GetOrCreateSharedMemoryDumpInternal()
105 trace_event::MemoryAllocatorDump::kUnitsBytes, size); in GetOrCreateSharedMemoryDumpInternal()
107 trace_event::MemoryAllocatorDump::kUnitsBytes, in GetOrCreateSharedMemoryDumpInternal()
110 trace_event::MemoryAllocatorDump* global_dump = in GetOrCreateSharedMemoryDumpInternal()
112 global_dump->AddScalar(trace_event::MemoryAllocatorDump::kNameSize, in GetOrCreateSharedMemoryDumpInternal()
113 trace_event::MemoryAllocatorDump::kUnitsBytes, size); in GetOrCreateSharedMemoryDumpInternal()
H A Dmadv_free_discardable_memory_posix.cc226 trace_event::MemoryAllocatorDump*
232 using base::trace_event::MemoryAllocatorDump; in CreateMemoryAllocatorDump()
236 MemoryAllocatorDump* allocator_dump = in CreateMemoryAllocatorDump()
241 MemoryAllocatorDump* dump = pmd->CreateAllocatorDump(name); in CreateMemoryAllocatorDump()
244 dump->AddScalar(MemoryAllocatorDump::kNameSize, in CreateMemoryAllocatorDump()
245 MemoryAllocatorDump::kUnitsBytes, in CreateMemoryAllocatorDump()
249 MemoryAllocatorDump::kNameSize, MemoryAllocatorDump::kUnitsBytes, in CreateMemoryAllocatorDump()
253 allocator_dump->AddScalar(MemoryAllocatorDump::kNameObjectCount, in CreateMemoryAllocatorDump()
254 MemoryAllocatorDump::kUnitsObjects, 1U); in CreateMemoryAllocatorDump()
256 "wasted_size", MemoryAllocatorDump::kUnitsBytes, in CreateMemoryAllocatorDump()
[all …]

12345678910>>...12