/third_party/openssl/include/internal/ |
D | dso.h | 56 typedef struct dso_st DSO; typedef 67 typedef char *(*DSO_NAME_CONVERTER_FUNC)(DSO *, const char *); 83 typedef char *(*DSO_MERGER_FUNC)(DSO *, const char *, const char *); 85 DSO *DSO_new(void); 86 int DSO_free(DSO *dso); 87 int DSO_flags(DSO *dso); 88 int DSO_up_ref(DSO *dso); 89 long DSO_ctrl(DSO *dso, int cmd, long larg, void *parg); 95 const char *DSO_get_filename(DSO *dso); 96 int DSO_set_filename(DSO *dso, const char *filename); [all …]
|
/third_party/json/test/thirdparty/Fuzzer/test/ |
D | coverage.test | 9 RUN: LLVMFuzzer-DSOTest -print_coverage=1 -runs=0 2>&1 | FileCheck %s --check-prefix=DSO 10 DSO: COVERAGE: 11 DSO-DAG: COVERED:{{.*}}DSO1{{.*}}DSO1.cpp 12 DSO-DAG: COVERED:{{.*}}DSO2{{.*}}DSO2.cpp 13 DSO-DAG: COVERED:{{.*}}LLVMFuzzerTestOneInput{{.*}}DSOTestMain 14 DSO-DAG: UNCOVERED_LINE:{{.*}}DSO1{{.*}}DSO1.cpp 15 DSO-DAG: UNCOVERED_LINE:{{.*}}DSO2{{.*}}DSO2.cpp 16 DSO-DAG: UNCOVERED_FUNC: in Uncovered1 17 DSO-DAG: UNCOVERED_FUNC: in Uncovered2 18 DSO-DAG: UNCOVERED_LINE: in LLVMFuzzerTestOneInput [all …]
|
D | dump_coverage.test | 5 RUN: $BUILD_DIR/LLVMFuzzer-DSOTest -dump_coverage=1 -runs=0 2>&1 | FileCheck %s --check-prefix=DSO 12 DSO: SanitizerCoverage: ./LLVMFuzzer-DSOTest.{{.*}}.sancov {{.*}} PCs written 13 DSO-DAG: SanitizerCoverage: ./libLLVMFuzzer-DSO1.{{.*}}.sancov {{.*}} PCs written 14 DSO-DAG: SanitizerCoverage: ./libLLVMFuzzer-DSO2.{{.*}}.sancov {{.*}} PCs written
|
D | fuzzer.test | 46 RUN: not LLVMFuzzer-DSOTest 2>&1 | FileCheck %s --check-prefix=DSO 47 DSO: INFO: Loaded 3 modules 48 DSO: BINGO
|
/third_party/openssl/crypto/dso/ |
D | dso_lib.c | 15 static DSO *DSO_new_method(DSO_METHOD *meth) in DSO_new_method() 17 DSO *ret; in DSO_new_method() 57 DSO *DSO_new(void) in DSO_new() 62 int DSO_free(DSO *dso) in DSO_free() 97 int DSO_flags(DSO *dso) in DSO_flags() 102 int DSO_up_ref(DSO *dso) in DSO_up_ref() 119 DSO *DSO_load(DSO *dso, const char *filename, DSO_METHOD *meth, int flags) in DSO_load() 121 DSO *ret; in DSO_load() 173 DSO_FUNC_TYPE DSO_bind_func(DSO *dso, const char *symname) in DSO_bind_func() 202 long DSO_ctrl(DSO *dso, int cmd, long larg, void *parg) in DSO_ctrl() [all …]
|
D | dso_local.h | 74 int (*dso_load) (DSO *dso); 76 int (*dso_unload) (DSO *dso); 84 DSO_FUNC_TYPE (*dso_bind_func) (DSO *dso, const char *symname); 89 long (*dso_ctrl) (DSO *dso, int cmd, long larg, void *parg); 101 int (*init) (DSO *dso); 102 int (*finish) (DSO *dso);
|
D | dso_dl.c | 19 static int dl_load(DSO *dso); 20 static int dl_unload(DSO *dso); 21 static DSO_FUNC_TYPE dl_bind_func(DSO *dso, const char *symname); 22 static char *dl_name_converter(DSO *dso, const char *filename); 23 static char *dl_merger(DSO *dso, const char *filespec1, 53 static int dl_load(DSO *dso) in dl_load() 95 static int dl_unload(DSO *dso) in dl_unload() 118 static DSO_FUNC_TYPE dl_bind_func(DSO *dso, const char *symname) in dl_bind_func() 146 static char *dl_merger(DSO *dso, const char *filespec1, const char *filespec2) in dl_merger() 211 static char *dl_name_converter(DSO *dso, const char *filename) in dl_name_converter()
|
D | dso_dlfcn.c | 41 static int dlfcn_load(DSO *dso); 42 static int dlfcn_unload(DSO *dso); 43 static DSO_FUNC_TYPE dlfcn_bind_func(DSO *dso, const char *symname); 44 static char *dlfcn_name_converter(DSO *dso, const char *filename); 45 static char *dlfcn_merger(DSO *dso, const char *filespec1, 96 static int dlfcn_load(DSO *dso) in dlfcn_load() 142 static int dlfcn_unload(DSO *dso) in dlfcn_unload() 165 static DSO_FUNC_TYPE dlfcn_bind_func(DSO *dso, const char *symname) in dlfcn_bind_func() 195 static char *dlfcn_merger(DSO *dso, const char *filespec1, in dlfcn_merger() 253 static char *dlfcn_name_converter(DSO *dso, const char *filename) in dlfcn_name_converter()
|
D | dso_vms.c | 37 static int vms_load(DSO *dso); 38 static int vms_unload(DSO *dso); 39 static DSO_FUNC_TYPE vms_bind_func(DSO *dso, const char *symname); 40 static char *vms_name_converter(DSO *dso, const char *filename); 41 static char *vms_merger(DSO *dso, const char *filespec1, 84 static int vms_load(DSO *dso) in vms_load() 223 static int vms_unload(DSO *dso) in vms_unload() 269 void vms_bind_sym(DSO *dso, const char *symname, void **sym) in vms_bind_sym() 356 static DSO_FUNC_TYPE vms_bind_func(DSO *dso, const char *symname) in vms_bind_func() 363 static char *vms_merger(DSO *dso, const char *filespec1, in vms_merger() [all …]
|
D | dso_win32.c | 61 static int win32_load(DSO *dso); 62 static int win32_unload(DSO *dso); 63 static DSO_FUNC_TYPE win32_bind_func(DSO *dso, const char *symname); 64 static char *win32_name_converter(DSO *dso, const char *filename); 65 static char *win32_merger(DSO *dso, const char *filespec1, 96 static int win32_load(DSO *dso) in win32_load() 134 static int win32_unload(DSO *dso) in win32_unload() 161 static DSO_FUNC_TYPE win32_bind_func(DSO *dso, const char *symname) in win32_bind_func() 204 static struct file_st *win32_splitter(DSO *dso, const char *filename, in win32_splitter() 304 static char *win32_joiner(DSO *dso, const struct file_st *file_split) in win32_joiner() [all …]
|
/third_party/openssl/test/ |
D | shlibloadtest.c | 18 typedef void DSO; typedef 27 typedef DSO * (*DSO_dsobyaddr_t)(void (*addr)(void), int flags); 28 typedef int (*DSO_free_t)(DSO *dso); 244 DSO *hndl; in test_lib()
|
/third_party/openssl/crypto/conf/ |
D | conf_mod.c | 28 DSO *dso; 61 static CONF_MODULE *module_add(DSO *dso, const char *name, 191 DSO *dso = NULL; in module_load_dso() 230 static CONF_MODULE *module_add(DSO *dso, const char *name, in module_add()
|
/third_party/boost/libs/dll/doc/ |
D | introduction.qbk | 10 … or plugins, are usually implemented using Dynamic Library Modules (DLL,SO/DSO) loaded at runtime.
|
D | tutorial.qbk | 24 Now let's make a DLL/DSO library that will holds implementation of plugin interface and exports it … 75 variable goes out of scope or will be reset, then the *DLL/DSO will be unloaded* and any attempt to
|
/third_party/openssl/include/crypto/ |
D | dso_conf.h.in | 13 {- # The DSO code currently always implements all functions so that no
|
/third_party/openssl/crypto/ |
D | init.c | 188 DSO *dso; in DEFINE_RUN_ONCE_STATIC() 799 DSO *dso = NULL; in OPENSSL_atexit()
|
/third_party/boost/libs/dll/ |
D | README.md | 3 … C++ Libraries](http://github.com/boostorg). It is a library for comfortable work with DLL and DSO.
|
/third_party/openssl/crypto/err/ |
D | openssl.ec | 25 L DSO include/internal/dso.h crypto/dso/dso_err.c
|
/third_party/openssl/crypto/engine/ |
D | eng_dyn.c | 80 DSO *dynamic_dso;
|
D | README | 56 for cleanup, modularity, and DSO support - yet EVP_CIPHERs, as exposed to
|
/third_party/openssl/crypto/comp/ |
D | c_zlib.c | 106 static DSO *zlib_dso = NULL;
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/BinaryFormat/ |
D | DynamicTags.def | 195 MIPS_DYNAMIC_TAG(MIPS_PERF_SUFFIX, 0x7000002E) // Default suffix of DSO to be added
|
/third_party/openssl/util/ |
D | indent.pro | 183 -T DSO
|
/third_party/nghttp2/m4/ |
D | ax_python_devel.m4 | 242 Cannot determine location of your Python DSO. Please check it was installed with
|
/third_party/flutter/skia/third_party/externals/freetype/builds/unix/ |
D | ftconfig.in | 452 /* When compiling FreeType as a DLL or DSO with hidden visibility */
|