Searched refs:DSO (Results 1 - 25 of 46) sorted by relevance

12

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/include/openssl/
H A Ddso.h77 * behaviour can be overriden by setting the name_converter callback in the DSO
80 * one or two possible DSO methods. However, the following flag can be set in a
81 * DSO to prevent *any* native name-translation at all - eg. if the caller has
101 typedef struct dso_st DSO; typedef in typeref:struct:dso_st
104 * callbacks) that transform filenames. They are passed a DSO structure pointer
105 * (or NULL if they are to be used independantly of a DSO object) and a
109 typedef char* (*DSO_NAME_CONVERTER_FUNC)(DSO *, const char *);
117 int (*dso_load)(DSO *dso);
119 int (*dso_unload)(DSO *dso);
121 void *(*dso_bind_var)(DSO *ds
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/crypto/dso/
H A Ddso.h77 * behaviour can be overriden by setting the name_converter callback in the DSO
80 * one or two possible DSO methods. However, the following flag can be set in a
81 * DSO to prevent *any* native name-translation at all - eg. if the caller has
101 typedef struct dso_st DSO; typedef in typeref:struct:dso_st
104 * callbacks) that transform filenames. They are passed a DSO structure pointer
105 * (or NULL if they are to be used independantly of a DSO object) and a
109 typedef char* (*DSO_NAME_CONVERTER_FUNC)(DSO *, const char *);
117 int (*dso_load)(DSO *dso);
119 int (*dso_unload)(DSO *dso);
121 void *(*dso_bind_var)(DSO *ds
[all...]
H A Ddso_dl.c75 static int dl_load(DSO *dso);
76 static int dl_unload(DSO *dso);
77 static void *dl_bind_var(DSO *dso, const char *symname);
78 static DSO_FUNC_TYPE dl_bind_func(DSO *dso, const char *symname);
80 static int dl_unbind_var(DSO *dso, char *symname, void *symptr);
81 static int dl_unbind_func(DSO *dso, char *symname, DSO_FUNC_TYPE symptr);
82 static int dl_init(DSO *dso);
83 static int dl_finish(DSO *dso);
84 static int dl_ctrl(DSO *dso, int cmd, long larg, void *parg);
86 static char *dl_name_converter(DSO *ds
[all...]
H A Ddso_win32.c74 static int win32_load(DSO *dso);
75 static int win32_unload(DSO *dso);
76 static void *win32_bind_var(DSO *dso, const char *symname);
77 static DSO_FUNC_TYPE win32_bind_func(DSO *dso, const char *symname);
79 static int win32_unbind_var(DSO *dso, char *symname, void *symptr);
80 static int win32_unbind_func(DSO *dso, char *symname, DSO_FUNC_TYPE symptr);
81 static int win32_init(DSO *dso);
82 static int win32_finish(DSO *dso);
83 static long win32_ctrl(DSO *dso, int cmd, long larg, void *parg);
85 static char *win32_name_converter(DSO *ds
[all...]
H A Ddso_dlfcn.c77 static int dlfcn_load(DSO *dso);
78 static int dlfcn_unload(DSO *dso);
79 static void *dlfcn_bind_var(DSO *dso, const char *symname);
80 static DSO_FUNC_TYPE dlfcn_bind_func(DSO *dso, const char *symname);
82 static int dlfcn_unbind(DSO *dso, char *symname, void *symptr);
83 static int dlfcn_init(DSO *dso);
84 static int dlfcn_finish(DSO *dso);
85 static long dlfcn_ctrl(DSO *dso, int cmd, long larg, void *parg);
87 static char *dlfcn_name_converter(DSO *dso, const char *filename);
139 static int dlfcn_load(DSO *ds
[all...]
H A Ddso_lib.c66 DSO *DSO_new(void)
81 DSO_METHOD *DSO_get_method(DSO *dso)
86 DSO_METHOD *DSO_set_method(DSO *dso, DSO_METHOD *meth)
94 DSO *DSO_new_method(DSO_METHOD *meth)
96 DSO *ret;
103 ret = (DSO *)OPENSSL_malloc(sizeof(DSO));
109 memset(ret, 0, sizeof(DSO));
131 int DSO_free(DSO *dso)
143 REF_PRINT("DSO",ds
[all...]
H A Ddso_vms.c80 static int vms_load(DSO *dso);
81 static int vms_unload(DSO *dso);
82 static void *vms_bind_var(DSO *dso, const char *symname);
83 static DSO_FUNC_TYPE vms_bind_func(DSO *dso, const char *symname);
85 static int vms_unbind_var(DSO *dso, char *symname, void *symptr);
86 static int vms_unbind_func(DSO *dso, char *symname, DSO_FUNC_TYPE symptr);
87 static int vms_init(DSO *dso);
88 static int vms_finish(DSO *dso);
89 static long vms_ctrl(DSO *dso, int cmd, long larg, void *parg);
91 static char *vms_name_converter(DSO *ds
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/crypto/dso/
H A Ddso.h77 * behaviour can be overriden by setting the name_converter callback in the DSO
80 * one or two possible DSO methods. However, the following flag can be set in a
81 * DSO to prevent *any* native name-translation at all - eg. if the caller has
108 typedef struct dso_st DSO; typedef in typeref:struct:dso_st
111 * callbacks) that transform filenames. They are passed a DSO structure pointer
112 * (or NULL if they are to be used independantly of a DSO object) and a
116 typedef char* (*DSO_NAME_CONVERTER_FUNC)(DSO *, const char *);
119 * DSO structure pointer (or NULL if they are to be used independantly of
120 * a DSO object) and two file specifications to merge. They should
126 * sensible for the DSO metho
[all...]
H A Ddso_lib.c66 DSO *DSO_new(void)
81 DSO_METHOD *DSO_get_method(DSO *dso)
86 DSO_METHOD *DSO_set_method(DSO *dso, DSO_METHOD *meth)
94 DSO *DSO_new_method(DSO_METHOD *meth)
96 DSO *ret;
103 ret = (DSO *)OPENSSL_malloc(sizeof(DSO));
109 memset(ret, 0, sizeof(DSO));
131 int DSO_free(DSO *dso)
143 REF_PRINT("DSO",ds
[all...]
H A Ddso_dl.c75 static int dl_load(DSO *dso);
76 static int dl_unload(DSO *dso);
77 static void *dl_bind_var(DSO *dso, const char *symname);
78 static DSO_FUNC_TYPE dl_bind_func(DSO *dso, const char *symname);
80 static int dl_unbind_var(DSO *dso, char *symname, void *symptr);
81 static int dl_unbind_func(DSO *dso, char *symname, DSO_FUNC_TYPE symptr);
82 static int dl_init(DSO *dso);
83 static int dl_finish(DSO *dso);
84 static int dl_ctrl(DSO *dso, int cmd, long larg, void *parg);
86 static char *dl_name_converter(DSO *ds
[all...]
H A Ddso_dlfcn.c77 static int dlfcn_load(DSO *dso);
78 static int dlfcn_unload(DSO *dso);
79 static void *dlfcn_bind_var(DSO *dso, const char *symname);
80 static DSO_FUNC_TYPE dlfcn_bind_func(DSO *dso, const char *symname);
82 static int dlfcn_unbind(DSO *dso, char *symname, void *symptr);
83 static int dlfcn_init(DSO *dso);
84 static int dlfcn_finish(DSO *dso);
85 static long dlfcn_ctrl(DSO *dso, int cmd, long larg, void *parg);
87 static char *dlfcn_name_converter(DSO *dso, const char *filename);
88 static char *dlfcn_merger(DSO *ds
[all...]
H A Ddso_vms.c81 static int vms_load(DSO *dso);
82 static int vms_unload(DSO *dso);
83 static void *vms_bind_var(DSO *dso, const char *symname);
84 static DSO_FUNC_TYPE vms_bind_func(DSO *dso, const char *symname);
86 static int vms_unbind_var(DSO *dso, char *symname, void *symptr);
87 static int vms_unbind_func(DSO *dso, char *symname, DSO_FUNC_TYPE symptr);
88 static int vms_init(DSO *dso);
89 static int vms_finish(DSO *dso);
90 static long vms_ctrl(DSO *dso, int cmd, long larg, void *parg);
92 static char *vms_name_converter(DSO *ds
[all...]
H A Ddso_win32.c113 static int win32_load(DSO *dso);
114 static int win32_unload(DSO *dso);
115 static void *win32_bind_var(DSO *dso, const char *symname);
116 static DSO_FUNC_TYPE win32_bind_func(DSO *dso, const char *symname);
118 static int win32_unbind_var(DSO *dso, char *symname, void *symptr);
119 static int win32_unbind_func(DSO *dso, char *symname, DSO_FUNC_TYPE symptr);
120 static int win32_init(DSO *dso);
121 static int win32_finish(DSO *dso);
122 static long win32_ctrl(DSO *dso, int cmd, long larg, void *parg);
124 static char *win32_name_converter(DSO *ds
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/include/openssl/
H A Ddso.h77 * behaviour can be overriden by setting the name_converter callback in the DSO
80 * one or two possible DSO methods. However, the following flag can be set in a
81 * DSO to prevent *any* native name-translation at all - eg. if the caller has
108 typedef struct dso_st DSO; typedef in typeref:struct:dso_st
111 * callbacks) that transform filenames. They are passed a DSO structure pointer
112 * (or NULL if they are to be used independantly of a DSO object) and a
116 typedef char* (*DSO_NAME_CONVERTER_FUNC)(DSO *, const char *);
119 * DSO structure pointer (or NULL if they are to be used independantly of
120 * a DSO object) and two file specifications to merge. They should
126 * sensible for the DSO metho
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/crypto/conf/
H A Dconf_mod.c79 /* DSO of this module or NULL if static */
80 DSO *dso;
114 static CONF_MODULE *module_add(DSO *dso, const char *name,
213 /* Module not found: try to load DSO */
243 /* Load a module from a DSO */
247 DSO *dso = NULL;
290 static CONF_MODULE *module_add(DSO *dso, const char *name,
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/crypto/conf/
H A Dconf_mod.c79 /* DSO of this module or NULL if static */
80 DSO *dso;
114 static CONF_MODULE *module_add(DSO *dso, const char *name,
213 /* Module not found: try to load DSO */
243 /* Load a module from a DSO */
247 DSO *dso = NULL;
290 static CONF_MODULE *module_add(DSO *dso, const char *name,
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/crypto/comp/
H A Dc_zlib.c85 static DSO *zlib_dso = NULL;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/crypto/engine/
H A Deng_dyn.c120 /* The DSO object we load that supplies the ENGINE code */
121 DSO *dynamic_dso;
H A Dhw_nuron.c105 static DSO *pvDSOHandle = NULL;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/engines/
H A De_nuron.c115 static DSO *pvDSOHandle = NULL;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/crypto/
H A Dinstall.com37 BN,EC,RSA,DSA,DH,DSO,ENGINE,AES,-
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/crypto/
H A Dinstall.com39 BN,EC,RSA,DSA,ECDSA,DH,ECDH,DSO,ENGINE,AES,-
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/crypto/comp/
H A Dc_zlib.c117 static DSO *zlib_dso = NULL;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/crypto/engine/
H A Deng_dyn.c126 /* The DSO object we load that supplies the ENGINE code */
127 DSO *dynamic_dso;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/demos/engines/cluster_labs/
H A Dhw_cluster_labs.c272 /* This is a process-global DSO handle used for loading and unloading
277 static DSO *cluster_labs_dso = NULL;

Completed in 119 milliseconds

12