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

Method DetectBaseAddress

examples/triage/baseaddress.cpp:244–257  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

242
243
244void BaseAddressDetectionWidget::DetectBaseAddress()
245{
246 HideResultsWidgets(true);
247 m_status->setText("Running...");
248 m_resultsTableWidget->clearContents();
249 m_preferredBase->setText("Not available");
250 m_confidence->setText("Not available");
251 m_startButton->setHidden(true);
252 m_worker = new BaseAddressDetectionThread(&m_inputs, m_view);
253 connect(m_worker, &BaseAddressDetectionThread::ResultReady, this, &BaseAddressDetectionWidget::HandleResults);
254 connect(m_worker, &BaseAddressDetectionThread::finished, m_worker, &QObject::deleteLater);
255 m_worker->start();
256 m_abortButton->setHidden(false);
257}
258
259
260void BaseAddressDetectionWidget::Abort()

Callers 1

runMethod · 0.45

Calls 2

connectFunction · 0.85
startMethod · 0.45

Tested by

no test coverage detected