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

1 2 3 4

  /external/linux-tools-perf/perf-3.12.0/tools/perf/util/
dso.h 41 #define DSO__SWAP(dso, type, val) \
44 BUG_ON(dso->needs_swap == DSO_SWAP__UNSET); \
45 if (dso->needs_swap == DSO_SWAP__YES) { \
73 struct dso { struct
99 static inline void dso__set_loaded(struct dso *dso, enum map_type type)
101 dso->loaded |= (1 << type);
104 struct dso *dso__new(const char *name);
105 void dso__delete(struct dso *dso);
    [all...]
dso.c 2 #include "dso.h"
7 char dso__symtab_origin(const struct dso *dso)
25 if (dso == NULL || dso->symtab_type == DSO_BINARY_TYPE__NOT_FOUND)
27 return origin[dso->symtab_type];
30 int dso__binary_type_file(struct dso *dso, enum dso_binary_type type,
40 strncpy(file, dso->long_name, size);
41 debuglink = file + dso->long_name_len
338 struct dso *dso = dso__new(name); local
352 struct dso *dso = __dsos__findnew(&machine->kernel_dsos, name); local
441 struct dso *dso = calloc(1, sizeof(*dso) + strlen(name) + 1); local
567 struct dso *dso = dsos__find(head, name, false); local
    [all...]
build-id.h 10 struct dso;
13 char *dso__build_id_filename(struct dso *self, char *bf, size_t size);
vdso.c 92 struct dso *vdso__dso_findnew(struct list_head *head)
94 struct dso *dso = dsos__find(head, VDSO__MAP_NAME, true); local
96 if (!dso) {
103 dso = dso__new(VDSO__MAP_NAME);
104 if (dso != NULL) {
105 dsos__add(head, dso);
106 dso__set_long_name(dso, file);
110 return dso;
symbol.c 27 static int dso__load_kernel_sym(struct dso *dso, struct map *map,
29 static int dso__load_guest_kernel_sym(struct dso *dso, struct map *map,
407 struct symbol *dso__find_symbol(struct dso *dso,
410 return symbols__find(&dso->symbols[type], addr);
413 struct symbol *dso__first_symbol(struct dso *dso, enum map_type type)
415 return symbols__first(&dso->symbols[type])
504 struct dso *dso; member in struct:process_kallsyms_args
743 struct dso *dso; member in struct:kcore_mapfn_data
    [all...]
vdso.h 15 struct dso *vdso__dso_findnew(struct list_head *head);
symbol.h 22 #include "dso.h"
211 int symsrc__init(struct symsrc *ss, struct dso *dso, const char *name,
216 int dso__load(struct dso *dso, struct map *map, symbol_filter_t filter);
217 int dso__load_vmlinux(struct dso *dso, struct map *map,
219 int dso__load_vmlinux_path(struct dso *dso, struct map *map,
221 int dso__load_kallsyms(struct dso *dso, const char *filename, struct map *map
    [all...]
map.c 35 u64 start, u64 end, u64 pgoff, struct dso *dso)
41 map->dso = dso;
59 struct dso *dso; local
78 dso = vdso__dso_findnew(dsos__list);
80 dso = __dsos__findnew(dsos__list, filename);
82 if (dso == NULL)
85 map__init(map, type, start, start + len, pgoff, dso);
    [all...]
  /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/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);
  /bionic/libc/arch-mips64/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);
  /development/ndk/platforms/android-L/arch-mips64/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) {
  /external/linux-tools-perf/perf-3.12.0/tools/perf/scripts/python/Perf-Trace-Util/lib/Perf/Trace/
EventClass.py 24 def create_event(name, comm, dso, symbol, raw_buf):
26 event = PebsEvent(name, comm, dso, symbol, raw_buf)
28 event = PebsNHM(name, comm, dso, symbol, raw_buf)
30 event = PerfEvent(name, comm, dso, symbol, raw_buf)
36 def __init__(self, name, comm, dso, symbol, raw_buf, ev_type=EVTYPE_GENERIC):
39 self.dso = dso
46 print "PMU event: name=%12s, symbol=%24s, comm=%8s, dso=%12s" % (self.name, self.symbol, self.comm, self.dso)
55 def __init__(self, name, comm, dso, symbol, raw_buf, ev_type=EVTYPE_PEBS)
    [all...]
  /external/compiler-rt/test/asan/TestCases/Posix/
start-deactivated.cc 36 void *dso = dlopen(path.c_str(), RTLD_NOW); local
37 if (!dso) {
45 void *fn = dlsym(dso, "do_another_bad_thing");
  /bionic/libc/arch-arm/bionic/
atexit_legacy.c 40 extern int __cxa_atexit(void (*func)(void *), void *arg, void *dso);
  /device/generic/goldfish/camera/
EmulatedCameraHal.cpp 40 dso: NULL,
  /external/openssl/crypto/conf/
conf_mall.c 63 #include <openssl/dso.h>

Completed in 992 milliseconds

1 2 3 4