| 4794 | |
| 4795 | |
| 4796 | bool BinaryView::FindAllConstant(uint64_t start, uint64_t end, uint64_t constant, Ref<DisassemblySettings> settings, |
| 4797 | const FunctionViewType& viewType, const std::function<bool(size_t current, size_t total)>& progress, |
| 4798 | const std::function<bool(uint64_t addr, const LinearDisassemblyLine& line)>& matchCallback) |
| 4799 | { |
| 4800 | ProgressContext fp; |
| 4801 | fp.callback = progress; |
| 4802 | MatchCallbackContextForConstant mc; |
| 4803 | mc.func = matchCallback; |
| 4804 | return BNFindAllConstantWithProgress(m_object, start, end, constant, settings->GetObject(), viewType.ToAPIObject(), &fp, |
| 4805 | ProgressCallback, &mc, MatchCallbackForConstant); |
| 4806 | } |
| 4807 | |
| 4808 | |
| 4809 | string BinaryView::DetectSearchMode(const string& query) |
nothing calls this directly
no test coverage detected