Home
last modified time | relevance | path

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

/system/extras/simpleperf/scripts/
Dpprof_proto_generator.py145 print('%smemory_start: %x' % (space, mapping.memory_start))
233 self.memory_start = start
242 self.memory_start,
580 profile_mapping.memory_start = mapping.memory_start
/system/testing/gtest_extras/tests/
DSystemTests.cpp1173 size_t memory_start = 0; in TEST_F() local
1180 memory_start = memory; in TEST_F()
1191 if (memory > memory_start) { in TEST_F()
1192 ASSERT_GT(kMaxLeakBytes, memory - memory_start) in TEST_F()
1195 << "Starting memory bytes " << memory_start << std::endl in TEST_F()
/system/extras/simpleperf/scripts/test/
Dpprof_proto_generator_test.py120 self.assertLessEqual(mapping.memory_start, location.address)
196 addr = location.address - mapping.memory_start + mapping.file_offset
/system/extras/simpleperf/
Dthread_tree.h148 Dso* FindKernelModuleDsoOrNew(const std::string& filename, uint64_t memory_start,
Ddso.cpp829 KernelModuleDso(const std::string& path, uint64_t memory_start, uint64_t memory_end, in KernelModuleDso() argument
832 memory_start_(memory_start), in KernelModuleDso()
997 std::unique_ptr<Dso> Dso::CreateKernelModuleDso(const std::string& dso_path, uint64_t memory_start, in CreateKernelModuleDso() argument
999 return std::unique_ptr<Dso>(new KernelModuleDso(dso_path, memory_start, memory_end, kernel_dso)); in CreateKernelModuleDso()
Ddso.h139 uint64_t memory_start, uint64_t memory_end,
Dthread_tree.cpp156 Dso* ThreadTree::FindKernelModuleDsoOrNew(const std::string& filename, uint64_t memory_start, in FindKernelModuleDsoOrNew() argument
161 Dso::CreateKernelModuleDso(filename, memory_start, memory_end, FindKernelDsoOrNew()); in FindKernelModuleDsoOrNew()