MCPcopy Create free account
hub / github.com/Vector35/debugger / BNDebuggerRunTo

Function BNDebuggerRunTo

core/ffi.cpp:517–526  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

515
516
517bool BNDebuggerRunTo(BNDebuggerController* controller, const uint64_t* remoteAddresses, size_t count)
518{
519 std::vector<uint64_t> addresses;
520 addresses.reserve(count);
521 for (size_t i = 0; i < count; i++)
522 {
523 addresses.push_back(remoteAddresses[i]);
524 }
525 return controller->object->RunTo(addresses);
526}
527
528
529BNDebugStopReason BNDebuggerGoAndWait(BNDebuggerController* controller)

Callers 1

RunToMethod · 0.85

Calls 1

RunToMethod · 0.45

Tested by

no test coverage detected