Home
last modified time | relevance | path

Searched refs:OnMemoryDump (Results 1 – 14 of 14) sorted by relevance

/external/libchrome/base/trace_event/
Dmemory_dump_manager_unittest.cc98 MOCK_METHOD2(OnMemoryDump,
199 EXPECT_CALL(mdp, OnMemoryDump(_, _)).Times(0); in TEST_F()
208 EXPECT_CALL(mdp, OnMemoryDump(_, _)).Times(3).WillRepeatedly(Return(true)); in TEST_F()
220 EXPECT_CALL(mdp, OnMemoryDump(_, _)).Times(0); in TEST_F()
238 EXPECT_CALL(mdp, OnMemoryDump(IsDetailedDump(), _)).WillOnce(Return(true)); in TEST_F()
249 EXPECT_CALL(mdp, OnMemoryDump(IsLightDump(), _)).WillOnce(Return(true)); in TEST_F()
267 EXPECT_CALL(mdp1, OnMemoryDump(_, _)) in TEST_F()
274 EXPECT_CALL(mdp2, OnMemoryDump(_, _)) in TEST_F()
300 EXPECT_CALL(mdp1, OnMemoryDump(_, _)).WillOnce(Return(true)); in TEST_F()
301 EXPECT_CALL(mdp2, OnMemoryDump(_, _)).Times(0); in TEST_F()
[all …]
Dprocess_memory_totals_dump_provider_unittest.cc24 pmtdp->OnMemoryDump(high_detail_args, pmd_before.get()); in TEST()
30 pmtdp->OnMemoryDump(high_detail_args, pmd_after.get()); in TEST()
Dprocess_memory_maps_dump_provider_unittest.cc133 pmmdp->OnMemoryDump(dump_args, &pmd_invalid); in TEST()
141 pmmdp->OnMemoryDump(dump_args, &pmd_1); in TEST()
173 pmmdp->OnMemoryDump(dump_args, &pmd_2); in TEST()
Dprocess_memory_maps_dump_provider.h23 bool OnMemoryDump(const MemoryDumpArgs& args,
Dmalloc_dump_provider.h33 bool OnMemoryDump(const MemoryDumpArgs& args,
Dprocess_memory_totals_dump_provider.h28 bool OnMemoryDump(const MemoryDumpArgs& args,
Dmemory_dump_provider.h48 virtual bool OnMemoryDump(const MemoryDumpArgs& args,
Dmemory_allocator_dump_unittest.cc27 bool OnMemoryDump(const MemoryDumpArgs& args, in OnMemoryDump() function in base::trace_event::__anonf31319440111::FakeMemoryAllocatorDumpProvider
134 fmadp.OnMemoryDump(dump_args, &pmd); in TEST()
Dprocess_memory_totals_dump_provider.cc47 bool ProcessMemoryTotalsDumpProvider::OnMemoryDump( in OnMemoryDump() function in base::trace_event::ProcessMemoryTotalsDumpProvider
Dmalloc_dump_provider.cc37 bool MallocDumpProvider::OnMemoryDump(const MemoryDumpArgs& /* args */, in OnMemoryDump() function in base::trace_event::MallocDumpProvider
Dprocess_memory_maps_dump_provider.cc154 bool ProcessMemoryMapsDumpProvider::OnMemoryDump(const MemoryDumpArgs& args, in OnMemoryDump() function in base::trace_event::ProcessMemoryMapsDumpProvider
Dtrace_log.h345 bool OnMemoryDump(const MemoryDumpArgs& args,
Dtrace_log.cc230 bool OnMemoryDump(const MemoryDumpArgs& args,
308 bool TraceLog::ThreadLocalEventBuffer::OnMemoryDump( in OnMemoryDump() function in base::trace_event::TraceLog::ThreadLocalEventBuffer
401 bool TraceLog::OnMemoryDump(const MemoryDumpArgs& /* args */, in OnMemoryDump() function in base::trace_event::TraceLog
Dmemory_dump_manager.cc450 bool dump_successful = mdpinfo->dump_provider->OnMemoryDump(args, pmd); in ContinueAsyncProcessDump()