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

Method GetUIntMetadata

binaryview.cpp:5184–5190  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5182
5183
5184uint64_t BinaryView::GetUIntMetadata(const string& key)
5185{
5186 auto data = QueryMetadata(key);
5187 if (!data || !data->IsUnsignedInteger())
5188 throw QueryMetadataException("Failed to find key: " + key);
5189 return data->GetUnsignedInteger();
5190}
5191
5192
5193vector<string> BinaryView::GetLoadSettingsTypeNames()

Callers 1

LoadAllMethod · 0.80

Calls 3

IsUnsignedIntegerMethod · 0.80
GetUnsignedIntegerMethod · 0.80

Tested by

no test coverage detected