| 1007 | } |
| 1008 | |
| 1009 | void Debugger::CallQueryPostHook(Node * node, OsiArgumentDesc * args, bool succeeded) |
| 1010 | { |
| 1011 | ServerThreadReentry(); |
| 1012 | // No breakpoint allowed on CallQuery |
| 1013 | |
| 1014 | lastQueryResults_.results.clear(); |
| 1015 | while (args) { |
| 1016 | lastQueryResults_.results.push_back(args->Value); |
| 1017 | args = args->NextParam; |
| 1018 | } |
| 1019 | } |
| 1020 | |
| 1021 | void Debugger::RuleActionPreHook(RuleActionNode * action) |
| 1022 | { |
nothing calls this directly
no outgoing calls
no test coverage detected