Searched refs:py_functions (Results 1 – 2 of 2) sorted by relevance
90 py_value = PyObject_CallObject(py->py_functions[PY_FUNC_FUZZ], py_args); in fuzz_py()135 ((py_mutator_t *)py_mutator)->py_functions[PY_FUNC_DESCRIBE], py_args); in custom_describe_py()166 PyObject **py_functions = py->py_functions; in init_py_module() local184 py_functions[PY_FUNC_INIT] = PyObject_GetAttrString(py_module, "init"); in init_py_module()185 if (!py_functions[PY_FUNC_INIT]) in init_py_module()187 py_functions[PY_FUNC_FUZZ] = PyObject_GetAttrString(py_module, "fuzz"); in init_py_module()188 if (!py_functions[PY_FUNC_FUZZ]) in init_py_module()189 py_functions[PY_FUNC_FUZZ] = PyObject_GetAttrString(py_module, "mutate"); in init_py_module()190 py_functions[PY_FUNC_DESCRIBE] = in init_py_module()192 py_functions[PY_FUNC_FUZZ_COUNT] = in init_py_module()[all …]
343 PyObject *py_functions[PY_FUNC_COUNT]; member