Home
last modified time | relevance | path

Searched refs:IsMemoryAllocatorDumpNameWhitelisted (Results 1 – 5 of 5) sorted by relevance

/external/libchrome/base/trace_event/
Dmemory_infra_background_whitelist_unittest.cc15 EXPECT_TRUE(IsMemoryAllocatorDumpNameWhitelisted("global/01234ABCDEF")); in TEST()
17 IsMemoryAllocatorDumpNameWhitelisted("shared_memory/01234ABCDEF")); in TEST()
20 EXPECT_FALSE(IsMemoryAllocatorDumpNameWhitelisted("global/GHIJK")); in TEST()
21 EXPECT_FALSE(IsMemoryAllocatorDumpNameWhitelisted("shared_memory/GHIJK")); in TEST()
24 EXPECT_TRUE(IsMemoryAllocatorDumpNameWhitelisted("net/url_request_context")); in TEST()
25 EXPECT_TRUE(IsMemoryAllocatorDumpNameWhitelisted( in TEST()
28 IsMemoryAllocatorDumpNameWhitelisted("net/http_network_session_0x123")); in TEST()
30 IsMemoryAllocatorDumpNameWhitelisted("net/http_network_session/0x123")); in TEST()
31 EXPECT_TRUE(IsMemoryAllocatorDumpNameWhitelisted( in TEST()
Dmemory_infra_background_whitelist.h22 bool BASE_EXPORT IsMemoryAllocatorDumpNameWhitelisted(const std::string& name);
Dprocess_memory_dump_unittest.cc430 ASSERT_TRUE(IsMemoryAllocatorDumpNameWhitelisted("Whitelisted/TestName")); in TEST()
433 ASSERT_TRUE(IsMemoryAllocatorDumpNameWhitelisted("global/13456")); in TEST()
436 ASSERT_FALSE(IsMemoryAllocatorDumpNameWhitelisted("global/random")); in TEST()
439 ASSERT_FALSE(IsMemoryAllocatorDumpNameWhitelisted("NotWhitelisted/TestName")); in TEST()
442 ASSERT_TRUE(IsMemoryAllocatorDumpNameWhitelisted("Whitelisted/0xA1b2")); in TEST()
Dmemory_infra_background_whitelist.cc340 bool IsMemoryAllocatorDumpNameWhitelisted(const std::string& name) { in IsMemoryAllocatorDumpNameWhitelisted() function
Dprocess_memory_dump.cc258 !IsMemoryAllocatorDumpNameWhitelisted(mad->absolute_name())) { in AddAllocatorDumpInternal()