MCPcopy 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
149bool 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

IsSameFolderForFileFunction · 0.85
AddProjectFolderMethod · 0.85
GetPrimaryFilePathMethod · 0.85

Calls 1

GetIdMethod · 0.45

Tested by

no test coverage detected