summaryrefslogtreecommitdiff
path: root/view/sharedcache/core
diff options
context:
space:
mode:
authorJordan Wiens <jordan@psifertex.com>2024-11-06 19:40:46 -0500
committerJordan Wiens <jordan@psifertex.com>2024-11-06 19:40:46 -0500
commit0e4f3815539d835df7f40f6f1620cd606f87c793 (patch)
tree597e4071914fb42721ec9e83b9aa228bd440d5df /view/sharedcache/core
parente8cdd50599f33495e23db7649a6dbccd65c08154 (diff)
normalize Shared Cache name
Diffstat (limited to 'view/sharedcache/core')
-rw-r--r--view/sharedcache/core/SharedCache.cpp2
-rw-r--r--view/sharedcache/core/SharedCache.h4
-rw-r--r--view/sharedcache/core/VM.cpp2
3 files changed, 4 insertions, 4 deletions
diff --git a/view/sharedcache/core/SharedCache.cpp b/view/sharedcache/core/SharedCache.cpp
index ccc9ec30..d30dbe14 100644
--- a/view/sharedcache/core/SharedCache.cpp
+++ b/view/sharedcache/core/SharedCache.cpp
@@ -155,7 +155,7 @@ uint64_t SharedCache::FastGetBackingCacheCount(BinaryNinja::Ref<BinaryNinja::Bin
baseFile = MMappedFileAccessor::Open(dscView, dscView->GetFile()->GetSessionId(), dscView->GetFile()->GetOriginalFilename())->lock();
}
catch (...){
- LogError("SharedCache preload: Failed to open file %s", dscView->GetFile()->GetOriginalFilename().c_str());
+ LogError("Shared Cache preload: Failed to open file %s", dscView->GetFile()->GetOriginalFilename().c_str());
return 0;
}
diff --git a/view/sharedcache/core/SharedCache.h b/view/sharedcache/core/SharedCache.h
index 9e9688bd..fe037ca7 100644
--- a/view/sharedcache/core/SharedCache.h
+++ b/view/sharedcache/core/SharedCache.h
@@ -1032,13 +1032,13 @@ namespace SharedCacheCore {
{
if (m_activeDeserContext.doc["metadataVersion"].GetUint() != METADATA_VERSION)
{
- m_logger->LogError("SharedCache metadata version mismatch");
+ m_logger->LogError("Shared Cache metadata version mismatch");
return;
}
}
else
{
- m_logger->LogError("SharedCache metadata version missing");
+ m_logger->LogError("Shared Cache metadata version missing");
return;
}
m_viewState = MSL_CAST(m_viewState, uint8_t, DSCViewState);
diff --git a/view/sharedcache/core/VM.cpp b/view/sharedcache/core/VM.cpp
index 0271ed7f..2e0a39c5 100644
--- a/view/sharedcache/core/VM.cpp
+++ b/view/sharedcache/core/VM.cpp
@@ -301,7 +301,7 @@ void MMappedFileAccessor::InitialVMSetup()
#endif
}
}
- BinaryNinja::LogInfo("SharedCache processing initialized with a max file pointer limit of 0x%llx", maxFPLimit);
+ BinaryNinja::LogInfo("Shared Cache processing initialized with a max file pointer limit of 0x%llx", maxFPLimit);
fileAccessorSemaphore.set_count(maxFPLimit);
}