/external/chromium_org/third_party/openssl/openssl/crypto/dso/ |
D | dso.h | 108 typedef struct dso_st DSO; typedef 116 typedef char* (*DSO_NAME_CONVERTER_FUNC)(DSO *, const char *); 132 typedef char* (*DSO_MERGER_FUNC)(DSO *, const char *, const char *); 140 int (*dso_load)(DSO *dso); 142 int (*dso_unload)(DSO *dso); 144 void *(*dso_bind_var)(DSO *dso, const char *symname); 151 DSO_FUNC_TYPE (*dso_bind_func)(DSO *dso, const char *symname); 156 int (*dso_unbind_var)(DSO *dso, char *symname, void *symptr); 158 int (*dso_unbind_func)(DSO *dso, char *symname, DSO_FUNC_TYPE symptr); 162 long (*dso_ctrl)(DSO *dso, int cmd, long larg, void *parg); [all …]
|
D | dso_lib.c | 66 DSO *DSO_new(void) in DSO_new() 81 DSO_METHOD *DSO_get_method(DSO *dso) in DSO_get_method() 86 DSO_METHOD *DSO_set_method(DSO *dso, DSO_METHOD *meth) in DSO_set_method() 94 DSO *DSO_new_method(DSO_METHOD *meth) in DSO_new_method() 96 DSO *ret; in DSO_new_method() 103 ret = (DSO *)OPENSSL_malloc(sizeof(DSO)); in DSO_new_method() 109 memset(ret, 0, sizeof(DSO)); in DSO_new_method() 131 int DSO_free(DSO *dso) in DSO_free() 176 int DSO_flags(DSO *dso) in DSO_flags() 182 int DSO_up_ref(DSO *dso) in DSO_up_ref() [all …]
|
D | dso_dl.c | 75 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 *dso, const char *filename); [all …]
|
D | dso_dlfcn.c | 98 static int dlfcn_load(DSO *dso); 99 static int dlfcn_unload(DSO *dso); 100 static void *dlfcn_bind_var(DSO *dso, const char *symname); 101 static DSO_FUNC_TYPE dlfcn_bind_func(DSO *dso, const char *symname); 103 static int dlfcn_unbind(DSO *dso, char *symname, void *symptr); 104 static int dlfcn_init(DSO *dso); 105 static int dlfcn_finish(DSO *dso); 106 static long dlfcn_ctrl(DSO *dso, int cmd, long larg, void *parg); 108 static char *dlfcn_name_converter(DSO *dso, const char *filename); 109 static char *dlfcn_merger(DSO *dso, const char *filespec1, [all …]
|
D | README | 15 (c) overriden per-DSO by setting the override callback
|
/external/openssl/crypto/dso/ |
D | dso.h | 108 typedef struct dso_st DSO; typedef 116 typedef char* (*DSO_NAME_CONVERTER_FUNC)(DSO *, const char *); 132 typedef char* (*DSO_MERGER_FUNC)(DSO *, const char *, const char *); 140 int (*dso_load)(DSO *dso); 142 int (*dso_unload)(DSO *dso); 144 void *(*dso_bind_var)(DSO *dso, const char *symname); 151 DSO_FUNC_TYPE (*dso_bind_func)(DSO *dso, const char *symname); 156 int (*dso_unbind_var)(DSO *dso, char *symname, void *symptr); 158 int (*dso_unbind_func)(DSO *dso, char *symname, DSO_FUNC_TYPE symptr); 162 long (*dso_ctrl)(DSO *dso, int cmd, long larg, void *parg); [all …]
|
D | dso_lib.c | 66 DSO *DSO_new(void) in DSO_new() 81 DSO_METHOD *DSO_get_method(DSO *dso) in DSO_get_method() 86 DSO_METHOD *DSO_set_method(DSO *dso, DSO_METHOD *meth) in DSO_set_method() 94 DSO *DSO_new_method(DSO_METHOD *meth) in DSO_new_method() 96 DSO *ret; in DSO_new_method() 103 ret = (DSO *)OPENSSL_malloc(sizeof(DSO)); in DSO_new_method() 109 memset(ret, 0, sizeof(DSO)); in DSO_new_method() 131 int DSO_free(DSO *dso) in DSO_free() 176 int DSO_flags(DSO *dso) in DSO_flags() 182 int DSO_up_ref(DSO *dso) in DSO_up_ref() [all …]
|
D | dso_dl.c | 75 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 *dso, const char *filename); [all …]
|
D | dso_dlfcn.c | 98 static int dlfcn_load(DSO *dso); 99 static int dlfcn_unload(DSO *dso); 100 static void *dlfcn_bind_var(DSO *dso, const char *symname); 101 static DSO_FUNC_TYPE dlfcn_bind_func(DSO *dso, const char *symname); 103 static int dlfcn_unbind(DSO *dso, char *symname, void *symptr); 104 static int dlfcn_init(DSO *dso); 105 static int dlfcn_finish(DSO *dso); 106 static long dlfcn_ctrl(DSO *dso, int cmd, long larg, void *parg); 108 static char *dlfcn_name_converter(DSO *dso, const char *filename); 109 static char *dlfcn_merger(DSO *dso, const char *filespec1, [all …]
|
D | README | 15 (c) overriden per-DSO by setting the override callback
|
/external/openssl/include/openssl/ |
D | dso.h | 108 typedef struct dso_st DSO; typedef 116 typedef char* (*DSO_NAME_CONVERTER_FUNC)(DSO *, const char *); 132 typedef char* (*DSO_MERGER_FUNC)(DSO *, const char *, const char *); 140 int (*dso_load)(DSO *dso); 142 int (*dso_unload)(DSO *dso); 144 void *(*dso_bind_var)(DSO *dso, const char *symname); 151 DSO_FUNC_TYPE (*dso_bind_func)(DSO *dso, const char *symname); 156 int (*dso_unbind_var)(DSO *dso, char *symname, void *symptr); 158 int (*dso_unbind_func)(DSO *dso, char *symname, DSO_FUNC_TYPE symptr); 162 long (*dso_ctrl)(DSO *dso, int cmd, long larg, void *parg); [all …]
|
/external/chromium_org/third_party/openssl/openssl/include/openssl/ |
D | dso.h | 108 typedef struct dso_st DSO; typedef 116 typedef char* (*DSO_NAME_CONVERTER_FUNC)(DSO *, const char *); 132 typedef char* (*DSO_MERGER_FUNC)(DSO *, const char *, const char *); 140 int (*dso_load)(DSO *dso); 142 int (*dso_unload)(DSO *dso); 144 void *(*dso_bind_var)(DSO *dso, const char *symname); 151 DSO_FUNC_TYPE (*dso_bind_func)(DSO *dso, const char *symname); 156 int (*dso_unbind_var)(DSO *dso, char *symname, void *symptr); 158 int (*dso_unbind_func)(DSO *dso, char *symname, DSO_FUNC_TYPE symptr); 162 long (*dso_ctrl)(DSO *dso, int cmd, long larg, void *parg); [all …]
|
/external/chromium_org/third_party/openssl/openssl/patches/ |
D | eng_dyn_dirs.patch | 7 does not exist in the first directory scanned, the DSO object will still 27 @@ -237,11 +237,19 @@ DSO *DSO_load(DSO *dso, const char *filename, DSO_METHOD *meth, int flags) 32 + * this to determine when the DSO has been loaded above. */ 41 + * this to determine when the DSO has been loaded above. */
|
/external/openssl/patches/ |
D | 0005-eng_dyn_dirs.patch | 7 does not exist in the first directory scanned, the DSO object will still 27 @@ -237,11 +237,19 @@ DSO *DSO_load(DSO *dso, const char *filename, DSO_METHOD *meth, int flags) 32 + * this to determine when the DSO has been loaded above. */ 41 + * this to determine when the DSO has been loaded above. */
|
/external/openssl/crypto/conf/ |
D | README | 45 If no module exists with a given name then an attempt is made to load a DSO 46 with the supplied name. This might mean that "module3" attempts to load a DSO 47 called libmodule3.so or module3.dll for example. An explicit DSO name can be 50 The DSO is expected to at least contain an initialization function:
|
D | conf_mod.c | 80 DSO *dso; 114 static CONF_MODULE *module_add(DSO *dso, const char *name, 248 DSO *dso = NULL; in module_load_dso() 291 static CONF_MODULE *module_add(DSO *dso, const char *name, in module_add()
|
/external/chromium_org/third_party/openssl/openssl/crypto/conf/ |
D | README | 45 If no module exists with a given name then an attempt is made to load a DSO 46 with the supplied name. This might mean that "module3" attempts to load a DSO 47 called libmodule3.so or module3.dll for example. An explicit DSO name can be 50 The DSO is expected to at least contain an initialization function:
|
D | conf_mod.c | 80 DSO *dso; 114 static CONF_MODULE *module_add(DSO *dso, const char *name, 248 DSO *dso = NULL; in module_load_dso() 291 static CONF_MODULE *module_add(DSO *dso, const char *name, in module_add()
|
/external/elfutils/0.153/libasm/ |
D | ChangeLog | 54 * Makefile.am: Use $(LINK) not $(CC) when creating DSO. 89 * Makefile.am: Check for text relocations in constructed DSO.
|
/external/srec/tools/thirdparty/OpenFst/ |
D | README | 27 DSO extensions can be used (see e.g. test/dso_test.sh).
|
/external/elfutils/0.153/ |
D | TODO | 116 DSO, create symbol table entries for all the aliases of the variable 117 in the DSO and create a relocation for one of them (a non-weak
|
D | NEWS | 43 libdwfl: Fix for handling prelinked DSO with separate debug file. 136 libdwfl: fix dwfl_module_build_id for prelinked DSO case; 398 DSO versions also for symbols in nobits sections. Allow .rodata section 861 libelf: optimze DSO: fewer relocations, fewer PLTs 924 Use attribute_hidden and internal_function to optimize DSO code. 1046 Handle DSO and archive input files correctly if -r option is given. 1088 Finish implementation for DSO input file handling. Implement rpath, runpath, 1100 make re-definition of symbols in and from DSO compatible with existing linker
|
/external/chromium_org/third_party/libc++/ |
D | libc++.gyp | 53 # was a separate DSO, we'd have to link against it explicitly.
|
/external/openssl/crypto/err/ |
D | openssl.ec | 26 L DSO crypto/dso/dso.h crypto/dso/dso_err.c
|
/external/chromium_org/third_party/openssl/openssl/crypto/err/ |
D | openssl.ec | 26 L DSO crypto/dso/dso.h crypto/dso/dso_err.c
|