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

Method GetIdentifier

linearviewobject.cpp:182–192  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

180
181
182LinearViewObjectIdentifier LinearViewObject::GetIdentifier() const
183{
184 BNLinearViewObjectIdentifier id = BNGetLinearViewObjectIdentifier(m_object);
185 LinearViewObjectIdentifier result;
186 result.name = id.name;
187 result.type = id.type;
188 result.start = id.start;
189 result.end = id.end;
190 BNFreeLinearViewObjectIdentifier(&id);
191 return result;
192}
193
194
195uint64_t LinearViewObject::GetOrderingIndexTotal() const

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected