HomeSort by relevance Sort by last modified time
    Searched defs:dso (Results 1 - 14 of 14) sorted by null

  /frameworks/native/opengl/libs/EGL/
Loader.h 52 void* dso[3]; member in struct:android::Loader::driver_t
68 void init_api(void* dso,
egldefs.h 40 inline egl_connection_t() : dso(0) { }
41 void * dso; member in struct:android::egl_connection_t
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...]
  /hardware/libhardware/include/hardware/
hardware.h 144 /** module's dso */
145 void* dso; member in struct:hw_module_t
  /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...]
  /external/linux-tools-perf/util/
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);
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...]
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...]
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...]
header.c 142 struct dso *pos;
318 static int dso__cache_build_id(struct dso *dso, const char *debugdir)
320 bool is_kallsyms = dso->kernel && dso->long_name[0] != '/';
322 return build_id_cache__add_b(dso->build_id, sizeof(dso->build_id),
323 dso->long_name, debugdir, is_kallsyms);
328 struct dso *pos;
681 struct dso *dso local
    [all...]
probe-event.c 125 if (strncmp(pos->dso->short_name + 1, module,
126 pos->dso->short_name_len - 2) == 0) {
133 static struct dso *kernel_get_module_dso(const char *module)
135 struct dso *dso; local
140 list_for_each_entry(dso, &machine.kernel_dsos, node) {
141 if (strncmp(dso->short_name + 1, module,
142 dso->short_name_len - 2) == 0)
150 dso = map->dso;
168 struct dso *dso = kernel_get_module_dso(module); local
    [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/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...]
  /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...]

Completed in 8286 milliseconds