Lines Matching refs:remote

50   MemoryRemote remote(pid_);  in TEST_F()  local
53 ASSERT_TRUE(remote.ReadFully(reinterpret_cast<uint64_t>(src.data()), dst.data(), 1024)); in TEST_F()
68 MemoryRemote remote(pid_); in TEST_F() local
71 ASSERT_TRUE(remote.ReadFully(reinterpret_cast<uint64_t>(src.data()), dst.data(), src.size())); in TEST_F()
90 MemoryRemote remote(pid_); in TEST_F() local
94 remote.Read(reinterpret_cast<uint64_t>(mapping + getpagesize() - 1024), dst.data(), 4096); in TEST_F()
103 remote.Read(reinterpret_cast<uint64_t>(mapping + 3 * getpagesize() - 1024), dst.data(), 4096); in TEST_F()
121 MemoryRemote remote(pid_); in TEST_F() local
124 ASSERT_TRUE(remote.ReadFully(reinterpret_cast<uint64_t>(src), dst.data(), pagesize)); in TEST_F()
129 ASSERT_FALSE(remote.ReadFully(reinterpret_cast<uint64_t>(src) + pagesize, dst.data(), 1)); in TEST_F()
130 ASSERT_TRUE(remote.ReadFully(reinterpret_cast<uint64_t>(src) + pagesize - 1, dst.data(), 1)); in TEST_F()
131 ASSERT_FALSE(remote.ReadFully(reinterpret_cast<uint64_t>(src) + pagesize - 4, dst.data(), 8)); in TEST_F()
134 ASSERT_FALSE(remote.ReadFully(UINT64_MAX - 100, dst.data(), 200)); in TEST_F()
142 MemoryRemote remote(pid_); in TEST_F() local
146 ASSERT_FALSE(remote.ReadFully(UINT64_MAX - 100, dst.data(), 200)); in TEST_F()
152 MemoryRemote remote(pid_); in TEST_F() local
155 ASSERT_FALSE(remote.ReadFully(0, dst.data(), 1)); in TEST_F()
156 ASSERT_FALSE(remote.ReadFully(0, dst.data(), 100)); in TEST_F()
171 MemoryRemote remote(pid_); in TEST_F() local
173 size_t read_size = remote.Read(reinterpret_cast<uint64_t>(mapping), dst.data(), page_size * 3); in TEST_F()
197 MemoryRemote remote(pid_); in TEST_F() local
199 size_t read_size = remote.Read(reinterpret_cast<uint64_t>(mapping), dst.data(), page_size * 3); in TEST_F()