| 4493 | } |
| 4494 | |
| 4495 | bool CeDebugger::WriteMemory(intptr address, void* src, uint64 length) |
| 4496 | { |
| 4497 | auto ceContext = mCeMachine->mCurContext; |
| 4498 | if (ceContext == NULL) |
| 4499 | return false; |
| 4500 | auto ptr = ceContext->GetMemoryPtr((addr_ce)address, (int32)length); |
| 4501 | if (ptr == NULL) |
| 4502 | return false; |
| 4503 | memcpy(ptr, src, length); |
| 4504 | return true; |
| 4505 | } |
| 4506 | |
| 4507 | DbgMemoryFlags CeDebugger::GetMemoryFlags(intptr address) |
| 4508 | { |
nothing calls this directly
no test coverage detected