Home
last modified time | relevance | path

Searched refs:MappedFileOnlyExistInMemory (Results 1 – 4 of 4) sorted by relevance

/system/extras/simpleperf/
Denvironment_test.cpp54 TEST(environment, MappedFileOnlyExistInMemory) { in TEST() argument
55 ASSERT_TRUE(MappedFileOnlyExistInMemory("")); in TEST()
56 ASSERT_TRUE(MappedFileOnlyExistInMemory("[stack]")); in TEST()
57 ASSERT_TRUE(MappedFileOnlyExistInMemory("[anon:.bss]")); in TEST()
58 ASSERT_FALSE(MappedFileOnlyExistInMemory("[vdso]")); in TEST()
59 ASSERT_TRUE(MappedFileOnlyExistInMemory("/dev/__properties__/u:object_r")); in TEST()
60 ASSERT_TRUE(MappedFileOnlyExistInMemory("//anon")); in TEST()
61 ASSERT_TRUE(MappedFileOnlyExistInMemory("/memfd:/jit-cache")); in TEST()
62 ASSERT_FALSE(MappedFileOnlyExistInMemory("./TemporaryFile-12345")); in TEST()
63 ASSERT_FALSE(MappedFileOnlyExistInMemory("/system/lib64/libc.so")); in TEST()
Denvironment.h134 bool MappedFileOnlyExistInMemory(const char* filename);
Denvironment.cpp913 bool MappedFileOnlyExistInMemory(const char* filename) { in MappedFileOnlyExistInMemory() function
Dcmd_record.cpp1207 return !record->InKernel() && MappedFileOnlyExistInMemory(record->filename); in MapOnlyExistInMemory()