| 541 | } |
| 542 | |
| 543 | void DbgSymSrv::PreCacheImage(const String& filePath, uint32 fileTime, int size) |
| 544 | { |
| 545 | auto request = CreateRequest(); |
| 546 | request->mIsPreCache = true; |
| 547 | request->SearchForImage(filePath, fileTime, size); |
| 548 | delete request; |
| 549 | } |
| 550 | |
| 551 | DbgSymRequest* DbgSymSrv::CreateRequest(const StringImpl& modulePath, const StringImpl& pdbRequested, uint8 wantGuid[16], int32 wantAge) |
| 552 | { |
nothing calls this directly
no test coverage detected