Searched refs:py_functions (Results 1 – 3 of 3) sorted by relevance
120 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() local223 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 …]
136 THPObjectPtr py_functions(PyTuple_New(num_next)); in THPCppFunction_next_functions() local137 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()
402 PyObject *py_functions[PY_FUNC_COUNT]; member