| 4481 | } |
| 4482 | |
| 4483 | bool CeDebugger::ReadMemory(intptr address, uint64 length, void* dest, bool local) |
| 4484 | { |
| 4485 | auto ceContext = mCeMachine->mCurContext; |
| 4486 | if (ceContext == NULL) |
| 4487 | return false; |
| 4488 | auto ptr = ceContext->GetMemoryPtr((addr_ce)address, (int32)length); |
| 4489 | if (ptr == NULL) |
| 4490 | return false; |
| 4491 | memcpy(dest, ptr, length); |
| 4492 | return true; |
| 4493 | } |
| 4494 | |
| 4495 | bool CeDebugger::WriteMemory(intptr address, void* src, uint64 length) |
| 4496 | { |
nothing calls this directly
no test coverage detected