Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/Vector35/binaryninja-api
/ IsSameFolder
Function
IsSameFolder
view/sharedcache/core/Utility.cpp:149–156 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
147
}
148
149
bool IsSameFolder(Ref<ProjectFolder> a, Ref<ProjectFolder> b)
150
{
151
if (!a && !b)
152
return true;
153
if (a && b)
154
return a->GetId() == b->GetId();
155
return false;
156
}
Callers
3
IsSameFolderForFile
Function · 0.85
AddProjectFolder
Method · 0.85
GetPrimaryFilePath
Method · 0.85
Calls
1
GetId
Method · 0.45
Tested by
no test coverage detected