Searched refs:afl_custom_fuzz (Results 1 – 7 of 7) sorted by relevance
/aosp_15_r20/external/AFLplusplus/src/ |
H A D | afl-fuzz-mutators.c | 211 mutator->afl_custom_fuzz = dlsym(dh, "afl_custom_fuzz"); in load_custom_mutator() 212 if (!mutator->afl_custom_fuzz) { in load_custom_mutator() 217 mutator->afl_custom_fuzz = dlsym(dh, "afl_custom_mutator"); in load_custom_mutator() 218 if (!mutator->afl_custom_fuzz) { in load_custom_mutator()
|
H A D | afl-fuzz-python.c | 414 if (py_functions[PY_FUNC_FUZZ]) { mutator->afl_custom_fuzz = fuzz_py; } in load_custom_mutator_py()
|
H A D | afl-fuzz.c | 2060 if (el->afl_custom_fuzz) { custom_fuzz = 1; } in main()
|
H A D | afl-fuzz-one.c | 1855 if (el->afl_custom_fuzz) { in fuzz_one_original() 1913 el->afl_custom_fuzz(el->data, out_buf, len, &mutated_buf, new_buf, in fuzz_one_original()
|
/aosp_15_r20/external/AFLplusplus/include/ |
H A D | afl-fuzz.h | 922 size_t (*afl_custom_fuzz)(void *data, u8 *buf, size_t buf_size, u8 **out_buf, member
|
/aosp_15_r20/external/AFLplusplus/docs/ |
H A D | custom_mutators.md | 52 size_t afl_custom_fuzz(void *data, unsigned char *buf, size_t buf_size, unsigned char **out_buf, un…
|
H A D | env_variables.md | 359 afl_custom_fuzz() creates additional mutations through this library. If
|