| 6816 | } |
| 6817 | |
| 6818 | void COFF::PreCacheImage() |
| 6819 | { |
| 6820 | if (!mDebugger->IsMiniDumpDebugger()) |
| 6821 | return; |
| 6822 | |
| 6823 | if (mLoadState != DbgModuleLoadState_NotLoaded) |
| 6824 | return; |
| 6825 | |
| 6826 | auto miniDumpDebugger = (MiniDumpDebugger*)mDebugger; |
| 6827 | |
| 6828 | if (mOrigImageData != NULL) |
| 6829 | return; |
| 6830 | |
| 6831 | mDebugger->mDbgSymSrv.PreCacheImage(mFilePath, mTimeStamp, mImageSize); |
| 6832 | } |
| 6833 | |
| 6834 | void COFF::PreCacheDebugInfo() |
| 6835 | { |
no test coverage detected