Home
last modified time | relevance | path

Searched refs:CreateProcessMemory (Results 1 – 9 of 9) sorted by relevance

/system/unwinding/libunwindstack/benchmarks/
Dlocal_unwind_benchmarks.cpp80 auto process_memory = unwindstack::Memory::CreateProcessMemory(getpid()); in BM_local_unwind_uncached_process_memory()
104 auto process_memory = unwindstack::Memory::CreateProcessMemory(getpid()); in BM_local_android_unwind_uncached_process_memory()
152 auto process_memory = unwindstack::Memory::CreateProcessMemory(getpid()); in BM_local_unwind_local_updatable_maps_uncached()
188 auto process_memory = unwindstack::Memory::CreateProcessMemory(getpid()); in BM_local_unwind_uncached_process_memory_no_func_names()
212 auto process_memory = unwindstack::Memory::CreateProcessMemory(getpid()); in BM_local_unwind_local_updatable_maps_uncached_no_func_names()
Dremote_unwind_benchmarks.cpp107 process_memory = unwindstack::Memory::CreateProcessMemory(pid); in RemoteUnwind()
147 process_memory = unwindstack::Memory::CreateProcessMemory(pid); in RemoteAndroidUnwind()
/system/unwinding/libunwindstack/include/unwindstack/
DMemory.h35 static std::shared_ptr<Memory> CreateProcessMemory(pid_t pid);
/system/unwinding/libunwindstack/utils/
DOfflineUnwindUtils.h153 bool CreateProcessMemory(std::string* error_msg, const std::string& sample_name = kSingleSample);
DOfflineUnwindUtils.cpp259 if (!CreateProcessMemory(error_msg, sample_name)) return false; in Init()
263 if (!CreateProcessMemory(error_msg, sample_name)) return false; in Init()
345 bool OfflineUnwindUtils::CreateProcessMemory(std::string* error_msg, in CreateProcessMemory() function in unwindstack::OfflineUnwindUtils
/system/unwinding/libunwindstack/tests/
DUnwindTest.cpp151 auto process_memory(Memory::CreateProcessMemory(pid)); in VerifyUnwind()
192 auto process_memory(Memory::CreateProcessMemory(getpid())); in InnerFunction()
448 auto process_memory(Memory::CreateProcessMemory(getpid())); in TEST_F()
DElfInterfaceTest.cpp2098 auto process_memory = Memory::CreateProcessMemory(getpid()); in TEST_F()
/system/unwinding/libunwindstack/tools/
Dunwind_for_offline.cpp118 auto process_memory = unwindstack::Memory::CreateProcessMemory(tid); in SaveStack()
191 auto memory = unwindstack::Memory::CreateProcessMemory(tid); in CreateElfFromMemory()
/system/unwinding/libunwindstack/
DMemory.cpp209 std::shared_ptr<Memory> Memory::CreateProcessMemory(pid_t pid) { in CreateProcessMemory() function in unwindstack::Memory