HomeSort by relevance Sort by last modified time
    Searched refs:dso (Results 1 - 25 of 38) sorted by null

1 2

  /external/openssl/crypto/dso/
dso_lib.c 62 #include <openssl/dso.h>
66 DSO *DSO_new(void)
81 DSO_METHOD *DSO_get_method(DSO *dso)
83 return(dso->meth);
86 DSO_METHOD *DSO_set_method(DSO *dso, DSO_METHOD *meth)
89 mtmp = dso->meth;
90 dso->meth = meth;
94 DSO *DSO_new_method(DSO_METHOD *meth
    [all...]
dso.h 0 /* dso.h -*- mode:C; c-file-style: "eay" -*- */
77 * 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;
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 shoul
    [all...]
dso_dl.c 61 #include <openssl/dso.h>
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)
    [all...]
dso_dlfcn.c 61 #include <openssl/dso.h>
77 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)
    [all...]
dso_vms.c 63 #include <openssl/dso.h>
81 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)
    [all...]
dso_null.c 64 #include <openssl/dso.h>
dso_openssl.c 61 #include <openssl/dso.h>
dso_win32.c 62 #include <openssl/dso.h>
113 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)
    [all...]
Makefile 2 # OpenSSL/crypto/dso/Makefile
5 DIR= dso
27 EXHEADER= dso.h
81 dso_dl.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h
89 dso_dlfcn.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h
96 dso_err.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h
104 dso_lib.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h
112 dso_null.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h
120 dso_openssl.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.h
129 dso_vms.o: ../../include/openssl/dso.h ../../include/openssl/e_os2.
    [all...]
dso_err.c 1 /* crypto/dso/dso_err.c */
63 #include <openssl/dso.h>
116 {ERR_REASON(DSO_R_DSO_ALREADY_LOADED) ,"dso already loaded"},
  /external/openssl/include/openssl/
dso.h 0 /* dso.h -*- mode:C; c-file-style: "eay" -*- */
77 * 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;
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 shoul
    [all...]
  /frameworks/base/opengl/libs/EGL/
Loader.cpp 52 dso[0] = gles;
53 for (size_t i=1 ; i<NELEM(dso) ; i++)
54 dso[i] = 0;
59 for (size_t i=0 ; i<NELEM(dso) ; i++) {
60 if (dso[i]) {
61 dlclose(dso[i]);
62 dso[i] = 0;
71 dso[0] = hnd;
74 dso[1] = hnd;
77 dso[2] = hnd
138 void* dso; local
233 void* dso = dlopen(driver_absolute_path, RTLD_NOW | RTLD_LOCAL); local
    [all...]
Loader.h 53 void* dso[3]; member in struct:android::Loader::driver_t
80 void init_api(void* dso,
egl.cpp 494 if (cnx->dso == 0) {
565 if (cnx->dso == 0) {
568 cnx->dso = loader.open(EGL_DEFAULT_DISPLAY, 0, cnx);
569 if (cnx->dso) {
574 loader.close(cnx->dso);
575 cnx->dso = NULL;
581 if (cnx->dso == 0) {
587 cnx->dso = loader.open(EGL_DEFAULT_DISPLAY, 1, cnx);
588 if (cnx->dso) {
593 loader.close(cnx->dso);
    [all...]
  /external/openssl/crypto/conf/
conf_mall.c 63 #include <openssl/dso.h>
conf_mod.c 64 #include <openssl/dso.h>
79 /* DSO of this module or NULL if static */
80 DSO *dso; member in struct:conf_module_st
114 static CONF_MODULE *module_add(DSO *dso, const char *name,
214 /* Module not found: try to load DSO */
244 /* Load a module from a DSO */
248 DSO *dso = NULL local
    [all...]
conf_sap.c 63 #include <openssl/dso.h>
  /frameworks/base/opengl/libs/
egl_impl.h 34 void * dso; member in struct:android::egl_connection_t
  /external/clearsilver/csharp/
Makefile 24 cstest.exe: clearsilver.dll ../dso/libneo.so cstest.cs
27 csperftest.exe: clearsilver.dll ../dso/libneo.so csperftest.cs
31 export LD_LIBRARY_PATH=../dso; \
39 export LD_LIBRARY_PATH=../dso; \
55 export LD_LIBRARY_PATH=../dso; \
  /bionic/libc/stdlib/
atexit.c 55 * with the given dso handle is unloaded dynamically. Also used as
58 * http://www.codesourcery.com/cxx-abi/abi.html#dso-dtor
61 __cxa_atexit(void (*func)(void *), void *arg, void *dso)
98 fnp->fn_dso = dso;
118 * object owning 'dso'.
119 * Note: if 'dso' is NULL, then all remaining handlers are called.
122 __cxa_finalize(void *dso)
138 if (dso != NULL && dso != p->fns[n].fn_dso)
139 continue; /* wrong DSO */
    [all...]
  /external/openssl/crypto/
Android.mk 203 dso/dso_dl.c \
204 dso/dso_dlfcn.c \
205 dso/dso_err.c \
206 dso/dso_lib.c \
207 dso/dso_null.c \
208 dso/dso_openssl.c \
209 dso/dso_win32.c \
210 dso/dso_vms.c \
  /external/openssl/crypto/evp/
evp_cnf.c 64 #include <openssl/dso.h>
  /external/openssl/patches/
crypto_Android.mk 203 dso/dso_dl.c \
204 dso/dso_dlfcn.c \
205 dso/dso_err.c \
206 dso/dso_lib.c \
207 dso/dso_null.c \
208 dso/dso_openssl.c \
209 dso/dso_win32.c \
210 dso/dso_vms.c \
  /hardware/libhardware/include/hardware/
hardware.h 67 /** module's dso */
68 void* dso; member in struct:hw_module_t
  /external/openssl/crypto/asn1/
asn_moid.c 64 #include <openssl/dso.h>

Completed in 440 milliseconds

1 2