| 832 | |
| 833 | |
| 834 | PossibleValueSet LowLevelILFunction::GetPossibleExprValues(size_t expr, const set<BNDataFlowQueryOption>& options) |
| 835 | { |
| 836 | BNDataFlowQueryOption* optionArray = new BNDataFlowQueryOption[options.size()]; |
| 837 | size_t idx = 0; |
| 838 | for (auto i : options) |
| 839 | optionArray[idx++] = i; |
| 840 | BNPossibleValueSet value = BNGetLowLevelILPossibleExprValues(m_object, expr, optionArray, options.size()); |
| 841 | delete[] optionArray; |
| 842 | return PossibleValueSet::FromAPIObject(value); |
| 843 | } |
| 844 | |
| 845 | |
| 846 | PossibleValueSet LowLevelILFunction::GetPossibleExprValues( |
no test coverage detected