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

1 2 3

  /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>
dso_openssl.c 61 #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 148 struct dso { struct
170 struct dso *dso__new(const char *name);
171 struct dso *dso__new_kernel(const char *name);
172 void dso__delete(struct dso *dso);
174 int dso__name_len(const struct dso *dso);
176 bool dso__loaded(const struct dso *dso, enum map_type type);
177 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...]
map.c 22 u64 start, u64 end, u64 pgoff, struct dso *dso)
28 self->dso = dso;
44 struct dso *dso; local
54 dso = __dsos__findnew(dsos__list, filename);
55 if (dso == NULL)
58 map__init(self, type, start, start + len, pgoff, dso);
64 dso__set_loaded(dso, self->type)
    [all...]
annotate.c 268 struct dso *dso = map->dso; local
269 char *filename = dso__build_id_filename(dso, NULL, 0);
282 if (dso->has_build_id) {
296 * DSO is the same as when 'perf record' ran.
298 filename = dso->long_name;
304 if (dso->symtab_type == SYMTAB__KALLSYMS) {
308 if (dso->annotate_warned)
311 if (dso->has_build_id)
509 struct dso *dso = map->dso; local
608 struct dso *dso = map->dso; local
    [all...]
build-id.c 40 al.map->dso->hit = 1;
70 char *dso__build_id_filename(struct dso *self, char *bf, size_t size)
sort.c 7 const char default_sort_order[] = "comm,dso,symbol";
83 { .name = "dso", .entry = &sort_dso, },
141 /* --sort dso */
146 struct dso *dso_l = left->ms.map ? left->ms.map->dso : NULL;
147 struct dso *dso_r = right->ms.map ? right->ms.map->dso : NULL;
167 if (self->ms.map && self->ms.map->dso) {
168 const char *dso_name = !verbose ? self->ms.map->dso->short_name :
169 self->ms.map->dso->long_name
    [all...]
top.c 187 syme->map->dso->kernel == DSO_TYPE_USER) ||
189 syme->map->dso->kernel == DSO_TYPE_KERNEL)) {
229 if (syme->map->dso->long_name_len > *dso_width)
230 *dso_width = syme->map->dso->long_name_len;
232 if (syme->map->dso->short_name_len > *dso_short_width)
233 *dso_short_width = syme->map->dso->short_name_len;
  /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/native/opengl/libs/EGL/
egldefs.h 40 inline egl_connection_t() : dso(0) { }
41 void * dso; member in struct:android::egl_connection_t
Loader.cpp 104 dso[0] = gles;
105 for (size_t i=1 ; i<NELEM(dso) ; i++)
106 dso[i] = 0;
111 for (size_t i=0 ; i<NELEM(dso) ; i++) {
112 if (dso[i]) {
113 dlclose(dso[i]);
114 dso[i] = 0;
123 dso[0] = hnd;
126 dso[1] = hnd;
129 dso[2] = hnd
180 void* dso; local
286 void* dso = dlopen(driver_absolute_path, RTLD_NOW | RTLD_LOCAL); local
    [all...]
Loader.h 52 void* dso[3]; member in struct:android::Loader::driver_t
69 void init_api(void* dso,
  /sdk/emulator/opengl/tests/gles_android_wrapper/
ApiInitializer.h 24 ApiInitializer(void *dso) :
25 m_dso(dso) {
  /development/tools/emulator/system/camera/
EmulatedCameraHal.cpp 40 dso: NULL,
  /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>
  /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;
120 * object owning 'dso'.
121 * Note: if 'dso' is NULL, then all remaining handlers are called.
124 __cxa_finalize(void *dso)
140 if (dso != NULL && dso != p->fns[n].fn_dso)
141 continue; /* wrong DSO */
    [all...]
  /external/linux-tools-perf/
builtin-inject.c 89 static int dso__read_build_id(struct dso *self)
103 static int dso__inject_build_id(struct dso *self, struct perf_session *session)
155 if (!al.map->dso->hit) {
156 al.map->dso->hit = 1;
158 dso__inject_build_id(al.map->dso, session);
166 al.map->dso->long_name);

Completed in 475 milliseconds

1 2 3