()
| 1000 | } |
| 1001 | |
| 1002 | pub fn dump_func_gadgets_tostr() -> String { |
| 1003 | let gadgets = get_func_gadgets(); |
| 1004 | let gadgets = random_sample(gadgets, crate::config::MAX_CONTEXT_APIS); |
| 1005 | let mut dump_str = vec![]; |
| 1006 | for gadget in gadgets { |
| 1007 | dump_str.push(gadget.gen_signature()); |
| 1008 | } |
| 1009 | dump_str.join("\n") |
| 1010 | } |
| 1011 | |
| 1012 | /// Get the functions with their fuzzable parameters. |
| 1013 | /// Returned with the map of Function names and vectors of fuzzable parameters' positions. |
no test coverage detected