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

Method FindAllConstant

binaryview.cpp:4796–4806  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4794
4795
4796bool 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
4809string BinaryView::DetectSearchMode(const string& query)

Callers

nothing calls this directly

Calls 2

GetObjectMethod · 0.45
ToAPIObjectMethod · 0.45

Tested by

no test coverage detected