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

Method SetTargetSymbol

externallibrary.cpp:125–136  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

123
124
125bool ExternalLocation::SetTargetSymbol(std::optional<std::string> symbol)
126{
127 if (symbol.has_value())
128 {
129 std::string sym = symbol.value();
130 return BNExternalLocationSetTargetSymbol(m_object, sym.c_str());
131 }
132 else
133 {
134 return BNExternalLocationSetTargetSymbol(m_object, nullptr);
135 }
136}
137
138
139void ExternalLocation::SetExternalLibrary(Ref<ExternalLibrary> library)

Callers

nothing calls this directly

Calls 2

c_strMethod · 0.80
valueMethod · 0.45

Tested by

no test coverage detected