Home
last modified time | relevance | path

Searched refs:MemoryRemote (Results 1 – 5 of 5) sorted by relevance

/system/core/libunwindstack/tests/
DMemoryRemoteTest.cpp71 MemoryRemote remote(pid); in TEST_F()
100 MemoryRemote remote(pid); in TEST_F()
133 MemoryRemote remote(pid); in TEST_F()
174 MemoryRemote remote(pid); in TEST_F()
206 MemoryRemote remote(pid); in TEST_F()
226 MemoryRemote remote(pid); in TEST_F()
255 MemoryRemote remote(pid); in TEST_F()
290 MemoryRemote remote(pid); in TEST_F()
327 MemoryRemote remote_ptrace(pid); in TEST_F()
342 MemoryRemote remote_readv(pid); in TEST_F()
DUnwindTest.cpp226 MemoryRemote memory(pid); in WaitForRemote()
/system/core/libunwindstack/include/unwindstack/
DMemory.h112 class MemoryRemote : public Memory {
114 MemoryRemote(pid_t pid) : pid_(pid), read_redirect_func_(0) {} in MemoryRemote() function
115 virtual ~MemoryRemote() = default;
/system/core/libbacktrace/
DUnwindStack.h52 unwindstack::MemoryRemote memory_;
/system/core/libunwindstack/
DMemory.cpp175 return std::shared_ptr<Memory>(new MemoryRemote(pid)); in CreateProcessMemory()
182 return std::shared_ptr<Memory>(new MemoryCache(new MemoryRemote(pid))); in CreateProcessMemoryCached()
269 size_t MemoryRemote::Read(uint64_t addr, void* dst, size_t size) { in Read()