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

Method EqualsByData

binaryview.cpp:1064–1079  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1062
1063
1064bool TagReference::EqualsByData(const TagReference& other) const
1065{
1066 if (refType != other.refType)
1067 return false;
1068 if (autoDefined != other.autoDefined)
1069 return false;
1070 if (addr != other.addr)
1071 return false;
1072 if (func != other.func)
1073 return false;
1074 if (arch != other.arch)
1075 return false;
1076 if (tag->GetData() != other.tag->GetData())
1077 return false;
1078 return true;
1079}
1080
1081
1082bool TagReference::operator==(const TagReference& other) const

Callers

nothing calls this directly

Calls 1

GetDataMethod · 0.45

Tested by

no test coverage detected