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

Method SetTargetAddress

externallibrary.cpp:111–122  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

109
110
111bool ExternalLocation::SetTargetAddress(std::optional<uint64_t> address)
112{
113 if (address.has_value())
114 {
115 uint64_t addr = address.value();
116 return BNExternalLocationSetTargetAddress(m_object, &addr);
117 }
118 else
119 {
120 return BNExternalLocationSetTargetAddress(m_object, nullptr);
121 }
122}
123
124
125bool ExternalLocation::SetTargetSymbol(std::optional<std::string> symbol)

Callers

nothing calls this directly

Calls 1

valueMethod · 0.45

Tested by

no test coverage detected