| 4707 | |
| 4708 | |
| 4709 | static bool MatchCallbackForText(void* ctxt, uint64_t addr, const char* buffer, BNLinearDisassemblyLine* line) |
| 4710 | { |
| 4711 | MatchCallbackContextForText* cb = (MatchCallbackContextForText*)ctxt; |
| 4712 | |
| 4713 | LinearDisassemblyLine result = LinearDisassemblyLine::FromAPIObject(line); |
| 4714 | BNFreeLinearDisassemblyLines(line, 1); |
| 4715 | |
| 4716 | return cb->func(addr, string(buffer), result); |
| 4717 | } |
| 4718 | |
| 4719 | |
| 4720 | struct MatchCallbackContextForConstant |