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

1 2 3 4 5

  /external/chromium_org/third_party/openssl/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 71 #include <openssl/dso.h>
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)
    [all...]
dso_null.c 64 #include <openssl/dso.h>
dso_openssl.c 61 #include <openssl/dso.h>
  /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 71 #include <openssl/dso.h>
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)
    [all...]
dso_null.c 64 #include <openssl/dso.h>
  /external/linux-tools-perf/util/
build-id.h 8 char *dso__build_id_filename(struct dso *self, char *bf, size_t size);
symbol.h 161 struct dso { struct
183 struct dso *dso__new(const char *name);
184 struct dso *dso__new_kernel(const char *name);
185 void dso__delete(struct dso *dso);
187 int dso__name_len(const struct dso *dso);
189 bool dso__loaded(const struct dso *dso, enum map_type type);
190 bool dso__sorted_by_name(const struct dso *dso, enum map_type type)
    [all...]
symbol.c 40 static bool dso__build_id_equal(const struct dso *dso, u8 *build_id);
42 static void dsos__add(struct list_head *head, struct dso *dso);
43 static struct map *map__new2(u64 start, struct dso *dso, enum map_type type);
44 static int dso__load_kernel_sym(struct dso *dso, struct map *map,
46 static int dso__load_guest_kernel_sym(struct dso *dso, struct map *map
207 struct dso *dso = calloc(1, sizeof(*dso) + strlen(name) + 1); local
516 struct dso *dso; member in struct:process_kallsyms_args
1789 struct dso *dso = __dsos__findnew(&machine->kernel_dsos, filename); local
2105 struct dso *dso = dsos__find(head, name); local
2183 struct dso *dso = dso__new(name ?: "[kernel.kallsyms]"); local
2197 struct dso *dso = dso__new(name ?: machine__mmap_name(machine, bf, local
    [all...]
  /external/chromium_org/third_party/openssl/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...]
  /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...]
  /bionic/libc/arch-mips/bionic/
atexit.h 30 extern int __cxa_atexit(void (*func)(void *), void *arg, void *dso);
  /development/ndk/platforms/android-9/arch-mips/src/
atexit.h 30 extern int __cxa_atexit(void (*func)(void *), void *arg, void *dso);
  /device/generic/goldfish/opengl/tests/gles_android_wrapper/
ApiInitializer.h 24 ApiInitializer(void *dso) :
25 m_dso(dso) {
  /frameworks/native/opengl/libs/EGL/
Loader.cpp 121 dso[0] = gles;
122 for (size_t i=1 ; i<NELEM(dso) ; i++)
123 dso[i] = 0;
128 for (size_t i=0 ; i<NELEM(dso) ; i++) {
129 if (dso[i]) {
130 dlclose(dso[i]);
131 dso[i] = 0;
140 dso[0] = hnd;
143 dso[1] = hnd;
146 dso[2] = hnd
172 void* dso; local
362 void* dso = dlopen(driver_absolute_path, RTLD_NOW | RTLD_LOCAL); local
    [all...]
egldefs.h 40 inline egl_connection_t() : dso(0) { }
41 void * dso; member in struct:android::egl_connection_t
  /bionic/libc/arch-arm/bionic/
atexit_legacy.c 39 extern int __cxa_atexit(void (*func)(void *), void *arg, void *dso);
  /device/generic/goldfish/camera/
EmulatedCameraHal.cpp 40 dso: NULL,
  /external/chromium_org/third_party/openssl/openssl/crypto/conf/
conf_mall.c 63 #include <openssl/dso.h>
  /external/openssl/crypto/conf/
conf_mall.c 63 #include <openssl/dso.h>

Completed in 1424 milliseconds

1 2 3 4 5