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

1 2 3 4 5

  /system/extras/perfprofd/quipper/kernel-headers/tools/perf/util/
build-id.h 23 struct dso;
  /external/linux-tools-perf/src/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
414 struct dso *dso = calloc(1, sizeof(*dso) + strlen(name) + 1); local
540 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"
201 int symsrc__init(struct symsrc *ss, struct dso *dso, const char *name,
206 int dso__load(struct dso *dso, struct map *map, symbol_filter_t filter);
207 int dso__load_vmlinux(struct dso *dso, struct map *map,
209 int dso__load_vmlinux_path(struct dso *dso, struct map *map,
211 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...]
symbol-elf.c 179 * And always look at the original dso, not at debuginfo packages, that
182 int dso__synthesize_plt_symbols(struct dso *dso, struct symsrc *ss, struct map *map,
274 symbols__insert(&dso->symbols[map->type], f);
296 symbols__insert(&dso->symbols[map->type], f);
307 __func__, dso->long_name);
517 static int dso__swap_init(struct dso *dso, unsigned char eidata)
521 dso->needs_swap = DSO_SWAP__NO;
525 /* We are big endian, DSO is little endian. *
    [all...]
  /device/generic/goldfish/opengl/tests/gles_android_wrapper/
ApiInitializer.h 24 ApiInitializer(void *dso) :
25 m_dso(dso) {
  /system/extras/perfprofd/quipper/original-kernel-headers/tools/perf/util/
build-id.h 10 struct dso;
13 char *dso__build_id_filename(struct dso *self, char *bf, size_t size);
  /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
381 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
Loader.h 52 void* dso[3]; member in struct:android::Loader::driver_t
68 void init_api(void* dso,
  /external/linux-tools-perf/src/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...]
  /bionic/libc/arch-common/bionic/
pthread_atfork.h 19 extern int __register_atfork(void (*prepare)(void), void (*parent)(void), void (*child)(void), void* dso);
  /external/compiler-rt/test/asan/TestCases/Posix/
start-deactivated.cc 49 void *dso = dlopen(path.c_str(), RTLD_NOW); local
50 if (!dso) {
59 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);
  /bionic/libc/stdlib/
atexit.c 55 extern void __unregister_atfork(void* dso);
70 * with the given dso handle is unloaded dynamically. Also used as
73 * http://www.codesourcery.com/cxx-abi/abi.html#dso-dtor
76 __cxa_atexit(void (*func)(void *), void *arg, void *dso)
111 fnp->fn_dso = dso;
123 * object owning 'dso'.
124 * Note: if 'dso' is NULL, then all remaining handlers are called.
127 __cxa_finalize(void *dso)
143 if (dso != NULL && dso != p->fns[n].fn_dso
    [all...]
  /external/linux-tools-perf/src/tools/perf/tests/
dso-data.c 98 struct dso *dso; local
106 dso = dso__new((const char *)file);
115 size = dso__data_read_offset(dso, &machine, data->offset,
134 size = dso__data_read_offset(dso, &machine, 10,
148 dso__delete(dso);
  /device/generic/goldfish/camera/
EmulatedCameraHal.cpp 40 dso: NULL,
  /external/linux-tools-perf/src/tools/perf/
builtin-buildid-list.c 47 static bool dso__skip_buildid(struct dso *dso, int with_hits)
49 return with_hits && !dso->hit;
  /bionic/libc/bionic/
pthread_atfork.cpp 154 void(*child)(void), void* dso) {
163 entry->dso_handle = dso;
174 extern "C" __LIBC_HIDDEN__ void __unregister_atfork(void* dso) {
177 return entry->dso_handle == dso;
  /device/asus/flo/camera/QCamera2/HAL/
QCamera2Hal.cpp 40 dso: NULL,

Completed in 317 milliseconds

1 2 3 4 5