MCPcopy Create free account
hub / github.com/Vector35/binaryninja-api / IsSameFolderForFile

Function IsSameFolderForFile

view/sharedcache/core/Utility.cpp:140–147  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

138}
139
140bool IsSameFolderForFile(Ref<ProjectFile> a, Ref<ProjectFile> b)
141{
142 if (!a && !b)
143 return true;
144 if (a && b)
145 return IsSameFolder(a->GetFolder(), b->GetFolder());
146 return false;
147}
148
149bool IsSameFolder(Ref<ProjectFolder> a, Ref<ProjectFolder> b)
150{

Callers 1

InitControllerMethod · 0.85

Calls 2

IsSameFolderFunction · 0.85
GetFolderMethod · 0.45

Tested by

no test coverage detected