Lines Matching full:engine
27 ENGINE *ENGINE_new(void) in ENGINE_new()
29 ENGINE *ret; in ENGINE_new()
47 * elements of the ENGINE structure are more likely to be caught and changed
50 void engine_set_all_null(ENGINE *e) in engine_set_all_null()
71 int engine_free_util(ENGINE *e, int not_locked) in engine_free_util()
89 * Give the ENGINE a chance to do any structural cleanup corresponding to in engine_free_util()
100 int ENGINE_free(ENGINE *e) in ENGINE_free()
180 int ENGINE_set_ex_data(ENGINE *e, int idx, void *arg) in ENGINE_set_ex_data()
185 void *ENGINE_get_ex_data(const ENGINE *e, int idx) in ENGINE_get_ex_data()
191 * Functions to get/set an ENGINE's elements - mainly to avoid exposing the
192 * ENGINE structure itself.
195 int ENGINE_set_id(ENGINE *e, const char *id) in ENGINE_set_id()
205 int ENGINE_set_name(ENGINE *e, const char *name) in ENGINE_set_name()
215 int ENGINE_set_destroy_function(ENGINE *e, ENGINE_GEN_INT_FUNC_PTR destroy_f) in ENGINE_set_destroy_function()
221 int ENGINE_set_init_function(ENGINE *e, ENGINE_GEN_INT_FUNC_PTR init_f) in ENGINE_set_init_function()
227 int ENGINE_set_finish_function(ENGINE *e, ENGINE_GEN_INT_FUNC_PTR finish_f) in ENGINE_set_finish_function()
233 int ENGINE_set_ctrl_function(ENGINE *e, ENGINE_CTRL_FUNC_PTR ctrl_f) in ENGINE_set_ctrl_function()
239 int ENGINE_set_flags(ENGINE *e, int flags) in ENGINE_set_flags()
245 int ENGINE_set_cmd_defns(ENGINE *e, const ENGINE_CMD_DEFN *defns) in ENGINE_set_cmd_defns()
251 const char *ENGINE_get_id(const ENGINE *e) in ENGINE_get_id()
256 const char *ENGINE_get_name(const ENGINE *e) in ENGINE_get_name()
261 ENGINE_GEN_INT_FUNC_PTR ENGINE_get_destroy_function(const ENGINE *e) in ENGINE_get_destroy_function()
266 ENGINE_GEN_INT_FUNC_PTR ENGINE_get_init_function(const ENGINE *e) in ENGINE_get_init_function()
271 ENGINE_GEN_INT_FUNC_PTR ENGINE_get_finish_function(const ENGINE *e) in ENGINE_get_finish_function()
276 ENGINE_CTRL_FUNC_PTR ENGINE_get_ctrl_function(const ENGINE *e) in ENGINE_get_ctrl_function()
281 int ENGINE_get_flags(const ENGINE *e) in ENGINE_get_flags()
286 const ENGINE_CMD_DEFN *ENGINE_get_cmd_defns(const ENGINE *e) in ENGINE_get_cmd_defns()
292 * eng_lib.o is pretty much linked into anything that touches ENGINE already,