| 1903 | |
| 1904 | |
| 1905 | bool KernelCache::IsImageLoaded(uint64_t address) |
| 1906 | { |
| 1907 | std::lock_guard lock(m_viewSpecificState->stateMutex); |
| 1908 | return m_viewSpecificState->state.loadedImages.find(address)!= m_viewSpecificState->state.loadedImages.end(); |
| 1909 | } |
| 1910 | |
| 1911 | |
| 1912 | std::vector<std::pair<uint64_t, std::pair<std::string, std::string>>> KernelCache::LoadAllSymbolsAndWait() |
no test coverage detected