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

12 3 4 5

  /external/openssl/crypto/dso/
dso_openssl.c 61 #include <openssl/dso.h>
  /bionic/libc/stdlib/
atexit.c 56 * with the given dso handle is unloaded dynamically. Also used as
59 * http://www.codesourcery.com/cxx-abi/abi.html#dso-dtor
62 __cxa_atexit(void (*func)(void *), void *arg, void *dso)
99 fnp->fn_dso = dso;
110 * object owning 'dso'.
111 * Note: if 'dso' is NULL, then all remaining handlers are called.
114 __cxa_finalize(void *dso)
131 if (dso != NULL && dso != p->fns[n].fn_dso)
132 continue; /* wrong DSO */
    [all...]
  /frameworks/native/opengl/libs/EGL/
Loader.h 52 void* dso[3]; member in struct:android::Loader::driver_t
68 void init_api(void* dso,
eglApi.cpp 273 if (cnx->dso) {
298 if (cnx->dso) {
850 if (!cnx->dso)
861 if (!cnx->dso)
871 if (cnx->dso) {
954 if (cnx->dso && cnx->egl.eglGetProcAddress) {
    [all...]
egl.cpp 268 if (cnx->dso == 0) {
311 if (cnx->dso == 0) {
316 cnx->dso = loader.open(cnx);
319 return cnx->dso ? EGL_TRUE : EGL_FALSE;
  /device/asus/flo/camera/QCamera2/HAL/
QCamera2Hal.cpp 40 dso: NULL,
  /device/asus/flo/camera/QCamera2/HAL3/
QCamera3Hal.cpp 40 dso: NULL,
  /hardware/qcom/camera/QCamera2/HAL/
QCamera2Hal.cpp 40 dso: NULL,
  /hardware/qcom/camera/QCamera2/HAL3/
QCamera3Hal.cpp 40 dso: NULL,
  /external/linux-tools-perf/util/
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;
map.h 28 struct dso;
45 /* ip -> dso rip */
47 /* dso rip -> ip */
50 struct dso *dso; member in struct:map
115 u64 start, u64 end, u64 pgoff, struct dso *dso);
hist.h 87 void hists__filter_by_dso(struct hists *self, const struct dso *dso);
  /external/chromium_org/third_party/openssl/openssl/crypto/conf/
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>
  /external/openssl/crypto/conf/
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>
  /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);
  /external/linux-tools-perf/util/ui/browsers/
hists.c 785 const char *ev_name, const struct dso *dso,
800 if (dso)
802 ", DSO: %s", dso->short_name);
814 const struct dso *dso_filter = NULL;
831 const struct dso *dso = NULL; local
841 dso = browser->selection->map ? browser->selection->map->dso : NULL
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/evp/
evp_cnf.c 64 #include <openssl/dso.h>
  /external/libsepol/src/
private.h 17 #include <dso.h>
  /external/openssl/crypto/evp/
evp_cnf.c 64 #include <openssl/dso.h>

Completed in 1551 milliseconds

12 3 4 5