Home
last modified time | relevance | path

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

/aosp_15_r20/system/extras/simpleperf/
H A Denvironment_test.cpp60 TEST(environment, MappedFileOnlyExistInMemory) { in TEST() argument
61 ASSERT_TRUE(MappedFileOnlyExistInMemory("")); in TEST()
62 ASSERT_TRUE(MappedFileOnlyExistInMemory("[stack]")); in TEST()
63 ASSERT_TRUE(MappedFileOnlyExistInMemory("[anon:.bss]")); in TEST()
64 ASSERT_FALSE(MappedFileOnlyExistInMemory("[vdso]")); in TEST()
65 ASSERT_TRUE(MappedFileOnlyExistInMemory("/dev/__properties__/u:object_r")); in TEST()
66 ASSERT_TRUE(MappedFileOnlyExistInMemory("//anon")); in TEST()
67 ASSERT_TRUE(MappedFileOnlyExistInMemory("/memfd:/jit-cache")); in TEST()
68 ASSERT_FALSE(MappedFileOnlyExistInMemory("./TemporaryFile-12345")); in TEST()
69 ASSERT_FALSE(MappedFileOnlyExistInMemory("/system/lib64/libc.so")); in TEST()
H A Denvironment.h136 bool MappedFileOnlyExistInMemory(const char* filename);
H A Denvironment.cpp970 bool MappedFileOnlyExistInMemory(const char* filename) { in MappedFileOnlyExistInMemory() function
H A Dcmd_record.cpp1629 return !record->InKernel() && MappedFileOnlyExistInMemory(record->filename); in MapOnlyExistInMemory()