Home | History | Annotate | Download | only in imgdiag

Lines Matching refs:remote

167 // Fixup a remote pointer that we read from a foreign boot.art to point to our own memory.
177 uintptr_t remote = reinterpret_cast<uintptr_t>(remote_ptr);
179 CHECK_LE(boot_map.start, remote);
180 CHECK_GT(boot_map.end, remote);
182 off_t boot_offset = remote - boot_map.start;
195 uint8_t* remote = reinterpret_cast<uint8_t*>(remote_ptr);
196 ptrdiff_t boot_offset = remote - &remote_contents[0];
294 // The byte contents of the remote (image) process' image.
482 << " remote=" << PrettyFieldValue(field, remote_entry) << "\n";
493 << " remote=" << PrettyFieldValue(field, remote_entry) << "\n";
533 // remote class object
541 os_ << " class_status (remote): " << remote_klass->GetStatus() << ", ";
597 // Remote pointers to dirty objects
771 << " remote=" << StringFromBytes(remote_bytes + offset, member_info.size_)
794 // remote method
796 // remote class
922 os_ << ", class_status (remote): " << remote_declaring_class->GetStatus();
1050 // Set up pointers in the remote and the zygote for comparison.
1334 // Independently count the # of dirty pages on the remote side
1420 os << "Remote boot map is out of range of local boot map: " <<
1423 ", remote begin " << reinterpret_cast<const void*>(boot_map_.start) <<
1424 ", remote end " << reinterpret_cast<const void*>(boot_map_.end);
1720 // Right now the code assumes both the runtime ISA and the remote ISA are identical.