| 1272 | |
| 1273 | |
| 1274 | Ref<RelocationHandler> Architecture::GetRelocationHandler(const std::string& viewName) |
| 1275 | { |
| 1276 | auto handler = BNArchitectureGetRelocationHandler(m_object, viewName.c_str()); |
| 1277 | if (!handler) |
| 1278 | return nullptr; |
| 1279 | return new CoreRelocationHandler(handler); |
| 1280 | } |
| 1281 | |
| 1282 | bool Architecture::IsBinaryViewTypeConstantDefined(const string& type, const string& name) |
| 1283 | { |
no test coverage detected