Home
last modified time | relevance | path

Searched refs:memory_start (Results 1 – 7 of 7) sorted by relevance

/system/extras/simpleperf/scripts/test/
Dpprof_proto_generator_test.py124 self.assertLessEqual(mapping.memory_start, location.address)
200 addr = location.address - mapping.memory_start + mapping.file_offset
277 addr = location.address - mapping.memory_start + mapping.file_offset
/system/testing/gtest_extras/gtest_isolated/tests/
DSystemTests.cpp1185 size_t memory_start = 0; in TEST_F() local
1192 memory_start = memory; in TEST_F()
1203 if (memory > memory_start) { in TEST_F()
1204 ASSERT_GT(kMaxLeakBytes, memory - memory_start) in TEST_F()
1207 << "Starting memory bytes " << memory_start << std::endl in TEST_F()
/system/extras/simpleperf/scripts/
Dpprof_proto_generator.py146 print('%smemory_start: %x' % (space, mapping.memory_start))
234 self.memory_start = start
243 self.memory_start,
645 profile_mapping.memory_start = mapping.memory_start
/system/extras/simpleperf/
Dthread_tree.h150 Dso* FindKernelModuleDsoOrNew(const std::string& filename, uint64_t memory_start,
Ddso.cpp892 KernelModuleDso(const std::string& path, uint64_t memory_start, uint64_t memory_end, in KernelModuleDso() argument
895 memory_start_(memory_start), in KernelModuleDso()
1064 std::unique_ptr<Dso> Dso::CreateKernelModuleDso(const std::string& dso_path, uint64_t memory_start, in CreateKernelModuleDso() argument
1066 return std::unique_ptr<Dso>(new KernelModuleDso(dso_path, memory_start, memory_end, kernel_dso)); in CreateKernelModuleDso()
Ddso.h146 uint64_t memory_start, uint64_t memory_end,
Dthread_tree.cpp157 Dso* ThreadTree::FindKernelModuleDsoOrNew(const std::string& filename, uint64_t memory_start, in FindKernelModuleDsoOrNew() argument
162 Dso::CreateKernelModuleDso(filename, memory_start, memory_end, FindKernelDsoOrNew()); in FindKernelModuleDsoOrNew()