Home
last modified time | relevance | path

Searched refs:afl_custom_init (Results 1 – 4 of 4) sorted by relevance

/aosp_15_r20/external/AFLplusplus/src/
H A Dafl-fuzz-mutators.c203 mutator->afl_custom_init = dlsym(dh, "afl_custom_init"); in load_custom_mutator()
204 if (!mutator->afl_custom_init) { in load_custom_mutator()
439 if (mutator->afl_custom_init) { in load_custom_mutator()
441 mutator->data = mutator->afl_custom_init(afl, rand_below(afl, 0xFFFFFFFF)); in load_custom_mutator()
H A Dafl-fuzz-python.c410 if (py_functions[PY_FUNC_INIT]) { mutator->afl_custom_init = unsupported; } in load_custom_mutator_py()
/aosp_15_r20/external/AFLplusplus/docs/
H A Dcustom_mutators.md49 void *afl_custom_init(afl_state_t *afl, unsigned int seed);
314 `afl_custom_init()` which contains all information that you need.
/aosp_15_r20/external/AFLplusplus/include/
H A Dafl-fuzz.h864 void *(*afl_custom_init)(afl_state_t *afl, unsigned int seed); member