| 226 | } |
| 227 | |
| 228 | ssize_t |
| 229 | ProcessMemoryManager::readChunk(remote_addr_t addr, size_t len, char* dst) const |
| 230 | { |
| 231 | if (d_memfile || getenv("_PYSTACK_NO_PROCESS_VM_READV") != nullptr) { |
| 232 | return readChunkThroughMemFile(addr, len, dst); |
| 233 | } else { |
| 234 | return readChunkDirect(addr, len, dst); |
| 235 | } |
| 236 | } |
| 237 | |
| 238 | ssize_t |
| 239 | ProcessMemoryManager::readChunkDirect(remote_addr_t addr, size_t len, char* dst) const |
nothing calls this directly
no outgoing calls
no test coverage detected