| 2090 | |
| 2091 | |
| 2092 | Ref<Function> BinaryView::AddFunctionForAnalysis(Platform* platform, uint64_t addr, bool autoDiscovered, Type* type) |
| 2093 | { |
| 2094 | BNFunction* func = BNAddFunctionForAnalysis( |
| 2095 | m_object, platform->GetObject(), addr, autoDiscovered, type ? type->GetObject() : nullptr); |
| 2096 | if (!func) |
| 2097 | return nullptr; |
| 2098 | return new Function(func); |
| 2099 | } |
| 2100 | |
| 2101 | |
| 2102 | void BinaryView::AddEntryPointForAnalysis(Platform* platform, uint64_t addr) |
no test coverage detected