/openbmc/phosphor-ipmi-blobs/internal/ |
H A D | sys.cpp | 37 void* DlSysImpl::dlsym(void* handle, const char* symbol) const in dlsym() function in blobs::internal::DlSysImpl 39 return ::dlsym(handle, symbol); in dlsym()
|
H A D | sys.hpp | 40 virtual void* dlsym(void* handle, const char* symbol) const = 0; 48 void* dlsym(void* handle, const char* symbol) const override;
|
/openbmc/linux/tools/testing/selftests/rseq/ |
H A D | rseq.c | 202 libc_rseq_offset_p = dlsym(RTLD_NEXT, "__rseq_offset"); in rseq_init() 203 libc_rseq_size_p = dlsym(RTLD_NEXT, "__rseq_size"); in rseq_init() 204 libc_rseq_flags_p = dlsym(RTLD_NEXT, "__rseq_flags"); in rseq_init()
|
/openbmc/phosphor-networkd/test/ |
H A D | mock_syscall.cpp | 194 reinterpret_cast<decltype(&ioctl)>(dlsym(RTLD_NEXT, "ioctl")); in ioctl() 201 reinterpret_cast<decltype(&socket)>(dlsym(RTLD_NEXT, "socket")); in socket() 224 reinterpret_cast<decltype(&close)>(dlsym(RTLD_NEXT, "close")); in close() 234 reinterpret_cast<decltype(&sendmsg)>(dlsym(RTLD_NEXT, "sendmsg")); in sendmsg() 272 reinterpret_cast<decltype(&recvmsg)>(dlsym(RTLD_NEXT, "recvmsg")); in recvmsg()
|
/openbmc/linux/tools/perf/util/ |
H A D | dlfilter.c | 403 d->start = dlsym(d->handle, "start"); in dlfilter__open() 404 d->filter_event = dlsym(d->handle, "filter_event"); in dlfilter__open() 405 d->filter_event_early = dlsym(d->handle, "filter_event_early"); in dlfilter__open() 406 d->stop = dlsym(d->handle, "stop"); in dlfilter__open() 407 d->fns = dlsym(d->handle, "perf_dlfilter_fns"); in dlfilter__open() 587 if (!handle || !(dlsym(handle, "filter_event") || dlsym(handle, "filter_event_early"))) in get_filter_desc() 589 desc_fn = dlsym(handle, "filter_description"); in get_filter_desc()
|
/openbmc/openbmc/meta-openembedded/meta-gnome/recipes-gnome/metacity/metacity/ |
H A D | 0001-drop-zenity-detection.patch | 28 AC_SEARCH_LIBS([dlsym], [dl], [], [ 29 AC_MSG_ERROR([unable to find the dlsym() function])
|
/openbmc/linux/tools/perf/ui/ |
H A D | setup.c | 35 perf_ui_init = dlsym(perf_gtk_handle, "perf_gtk__init"); in setup_gtk_browser() 54 perf_ui_exit = dlsym(perf_gtk_handle, "perf_gtk__exit"); in exit_gtk_browser()
|
/openbmc/linux/tools/testing/selftests/timens/ |
H A D | gettime_perf.c | 39 vdso_clock_gettime = (vgettime_t)dlsym(vdso, "__vdso_clock_gettime"); in fill_function_pointers() 41 vdso_clock_gettime = (vgettime_t)dlsym(vdso, "__kernel_clock_gettime"); in fill_function_pointers()
|
/openbmc/linux/tools/testing/selftests/vDSO/ |
H A D | vdso_test_correctness.c | 128 vdso_getcpu = (getcpu_t)dlsym(vdso, name[4]); in fill_function_pointers() 134 vdso_clock_gettime = (vgettime_t)dlsym(vdso, name[1]); in fill_function_pointers() 139 vdso_clock_gettime64 = (vgettime64_t)dlsym(vdso, name[5]); in fill_function_pointers() 144 vdso_gettimeofday = (vgtod_t)dlsym(vdso, name[0]); in fill_function_pointers()
|
/openbmc/linux/tools/testing/selftests/x86/ |
H A D | test_vsyscall.c | 82 vdso_gtod = (gtod_t)dlsym(vdso, "__vdso_gettimeofday"); in init_vdso() 86 vdso_gettime = (vgettime_t)dlsym(vdso, "__vdso_clock_gettime"); in init_vdso() 90 vdso_time = (time_func_t)dlsym(vdso, "__vdso_time"); in init_vdso() 94 vdso_getcpu = (getcpu_t)dlsym(vdso, "__vdso_getcpu"); in init_vdso()
|
/openbmc/phosphor-ipmi-blobs/test/ |
H A D | dlsys_mock.hpp | 19 MOCK_METHOD(void*, dlsym, (void*, const char*), (const, override));
|
H A D | utils_unittest.cpp | 75 EXPECT_CALL(dlsys, dlsym(handle, StrEq("createHandler"))) in TEST_F()
|
/openbmc/phosphor-ipmi-blobs/ |
H A D | utils.cpp | 64 sys->dlsym(libHandle, "createHandler")); in loadLibraries()
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-benchmark/libhugetlbfs/files/ |
H A D | 0009-shm.c-Mark-glibc-specific-changes-so.patch | 22 extern void *dlsym (void *__restrict __handle, __const char *__restrict __name)
|
/openbmc/openbmc/poky/meta/recipes-graphics/libepoxy/ |
H A D | libepoxy_1.5.10.bb | 2 DESCRIPTION = "It hides the complexity of dlopen(), dlsym(), \
|
/openbmc/openbmc/poky/meta/recipes-support/apr/apr/ |
H A D | 0001-dso-Check-for-NULL-handle-in-apr_dso_sym.patch | 24 + * musl's `dlsym()` assumes the handle is never NULL and
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/fltk/fltk/ |
H A D | fltk-native-link-libdl.patch | 20 77f876c0e3 dlfcn: Move dlsym into libc
|
/openbmc/linux/tools/perf/ |
H A D | builtin-annotate.c | 367 annotate = dlsym(perf_gtk_handle, in hists__find_annotations() 473 show_annotations = dlsym(perf_gtk_handle, in __cmd_annotate()
|
H A D | builtin-report.c | 636 hist_browser = dlsym(perf_gtk_handle, "evlist__gtk_browse_hists"); in report__gtk_browse_hists()
|
/openbmc/openbmc/poky/meta/recipes-gnome/librsvg/ |
H A D | librsvg_2.59.2.bb | 61 # needed on ubuntu 20.04/debian 11 to avoid 'undefined reference to `dlsym'' errors
|
/openbmc/qemu/docs/devel/ |
H A D | control-flow-integrity.rst | 66 * Libraries loaded dynamically, e.g. with dlopen/dlsym, since the library was
|