Home
last modified time | relevance | path

Searched refs:py_functions (Results 1 – 3 of 3) sorted by relevance

/aosp_15_r20/external/AFLplusplus/src/
H A Dafl-fuzz-python.c120 py_value = PyObject_CallObject(py->py_functions[PY_FUNC_FUZZ], py_args); in fuzz_py()
175 ((py_mutator_t *)py_mutator)->py_functions[PY_FUNC_DESCRIBE], py_args); in custom_describe_py()
206 PyObject **py_functions = py->py_functions; in init_py_module() local
223 py_functions[PY_FUNC_INIT] = PyObject_GetAttrString(py_module, "init"); in init_py_module()
224 if (!py_functions[PY_FUNC_INIT]) { in init_py_module()
230 py_functions[PY_FUNC_FUZZ] = PyObject_GetAttrString(py_module, "fuzz"); in init_py_module()
231 if (!py_functions[PY_FUNC_FUZZ]) in init_py_module()
232 py_functions[PY_FUNC_FUZZ] = PyObject_GetAttrString(py_module, "mutate"); in init_py_module()
233 py_functions[PY_FUNC_DESCRIBE] = in init_py_module()
235 py_functions[PY_FUNC_FUZZ_COUNT] = in init_py_module()
[all …]
/aosp_15_r20/external/pytorch/torch/csrc/autograd/
H A Dpython_cpp_function.cpp136 THPObjectPtr py_functions(PyTuple_New(num_next)); in THPCppFunction_next_functions() local
137 if (!py_functions) in THPCppFunction_next_functions()
152 PyTuple_SET_ITEM(py_functions.get(), i, tuple.release()); in THPCppFunction_next_functions()
154 return py_functions.release(); in THPCppFunction_next_functions()
/aosp_15_r20/external/AFLplusplus/include/
H A Dafl-fuzz.h402 PyObject *py_functions[PY_FUNC_COUNT]; member