Searched refs:dlsym (Results 1 - 25 of 88) sorted by relevance

1234

/freebsd-13-stable/contrib/openpam/lib/libpam/
H A Dopenpam_dlfunc.h42 return ((dlfunc_t)dlsym(handle, symbol));
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/builtins/
H A Dos_version_check.c79 const void *NullAllocator = dlsym(RTLD_DEFAULT, "kCFAllocatorNull");
84 (CFDataCreateWithBytesNoCopyFuncTy)dlsym(RTLD_DEFAULT,
89 (CFPropertyListCreateWithDataFuncTy)dlsym(RTLD_DEFAULT,
96 (CFPropertyListCreateFromXMLDataFuncTy)dlsym(
104 (CFStringCreateWithCStringNoCopyFuncTy)dlsym(
109 (CFDictionaryGetValueFuncTy)dlsym(RTLD_DEFAULT, "CFDictionaryGetValue");
113 (CFGetTypeIDFuncTy)dlsym(RTLD_DEFAULT, "CFGetTypeID");
117 (CFStringGetTypeIDFuncTy)dlsym(RTLD_DEFAULT, "CFStringGetTypeID");
121 (CFStringGetCStringFuncTy)dlsym(RTLD_DEFAULT, "CFStringGetCString");
125 (CFReleaseFuncTy)dlsym(RTLD_DEFAUL
[all...]
/freebsd-13-stable/tools/regression/tls/ttls3/
H A Dtls-test.c46 __gl_tls_test = dlsym(handle, "__gl_tls_test");
51 printf("dlsym failed (%s)!\n", error);
/freebsd-13-stable/contrib/ofed/librdmacm/
H A Dpreload.c386 real.socket = dlsym(RTLD_NEXT, "socket");
387 real.bind = dlsym(RTLD_NEXT, "bind");
388 real.listen = dlsym(RTLD_NEXT, "listen");
389 real.accept = dlsym(RTLD_NEXT, "accept");
390 real.connect = dlsym(RTLD_NEXT, "connect");
391 real.recv = dlsym(RTLD_NEXT, "recv");
392 real.recvfrom = dlsym(RTLD_NEXT, "recvfrom");
393 real.recvmsg = dlsym(RTLD_NEXT, "recvmsg");
394 real.read = dlsym(RTLD_NEXT, "read");
395 real.readv = dlsym(RTLD_NEX
[all...]
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerExtFunctionsDlsym.cpp8 // Implementation for operating systems that support dlsym(). We only use it on
25 void *Fn = dlsym(RTLD_DEFAULT, FnName);
/freebsd-13-stable/contrib/netbsd-tests/lib/libpthread/dlopen/
H A Dt_dlopen.c59 testf_dso_null = dlsym(handle, "testf_dso_null");
60 ATF_REQUIRE_MSG(testf_dso_null != NULL, "dlsym fails: %s", dlerror());
87 testf_dso_null = dlsym(handle, "testf_dso_null");
88 ATF_REQUIRE_MSG(testf_dso_null != NULL, "dlsym fails: %s", dlerror());
119 testf_dso_mutex_unlock = dlsym(handle, "testf_dso_mutex_unlock");
121 "dlsym fails: %s", dlerror());
150 testf_dso_mutex_lock = dlsym(handle, "testf_dso_mutex_lock");
152 "dlsym fails: %s", dlerror());
H A Dt_dso_pthread_create.c80 testf_dso_pthread_create = dlsym(handle, "testf_dso_pthread_create");
82 "dlsym fails: %s", dlerror());
H A Dt_main_pthread_create.c89 testf_dso_pthread_create = dlsym(handle, "testf_dso_pthread_create");
91 "dlsym fails: %s", dlerror());
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/interception/
H A Dinterception_linux.cpp19 #include <dlfcn.h> // for dlsym() and dlvsym()
42 void *addr = dlsym(RTLD_NEXT, name);
49 addr = dlsym(RTLD_DEFAULT, name);
51 // In case `name' is not loaded, dlsym ends up finding the actual wrapper.
/freebsd-13-stable/contrib/netbsd-tests/libexec/ld.elf_so/
H A Dt_dlerror-false.c62 sym = dlsym(handle, "sin");
H A Dt_ifunc.c67 sym = dlsym(handle, "ifunc");
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_unwind_linux_libcdep.cpp109 (acquire_my_map_info_list_func)(uptr)dlsym(p, "acquire_my_map_info_list");
111 (release_my_map_info_list_func)(uptr)dlsym(p, "release_my_map_info_list");
112 unwind_backtrace_signal_arch = (unwind_backtrace_signal_arch_func)(uptr)dlsym(
/freebsd-13-stable/crypto/heimdal/lib/gssapi/mech/
H A Dgss_mech_switch.c154 m->gm_mech.gm_ ## name = dlsym(so, "gss_" #name); \
164 m->gm_mech.gm_ ## name = dlsym(so, "gss_" #name); \
171 m->gm_mech.gm_ ## name = dlsym(so, "gssspi_" #name); \
176 m->gm_mech.gm_compat->gmc_ ## name = dlsym(so, "gss_" #name); \
183 m->gm_mech.gm_compat->gmc_ ## name = dlsym(so, "gssspi_" #name);\
387 mi = dlsym(so, "gss_mo_init");
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/safestack/
H A Dsafestack_platform.h46 void *real = dlsym(RTLD_NEXT, symbol);
48 real = dlsym(RTLD_DEFAULT, symbol);
/freebsd-13-stable/include/
H A Ddlfcn.h63 * Special handle arguments for dlsym()/dlinfo().
122 void *dlsym(void * __restrict, const char * __restrict);
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/stats/
H A Dstats_client.cpp37 return dlsym(RTLD_DEFAULT, name);
/freebsd-13-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pid/
H A Dtst.provregex2.ksh92 if ((alt_go = dlsym(alt, "go")) == NULL) {
/freebsd-13-stable/contrib/netbsd-tests/lib/libc/tls/
H A Dt_tls_dlopen.c96 testf_helper = dlsym(handle, "testf_dso_helper");
/freebsd-13-stable/contrib/openbsm/bin/auditfilterd/
H A Dauditfilterd_conf.c132 * Given a filled out auditfilter_module, use dlopen() and dlsym() to attach
153 am->am_attach = dlsym(am->am_dlhandle, AUDIT_FILTER_ATTACH_STRING);
154 am->am_reinit = dlsym(am->am_dlhandle, AUDIT_FILTER_REINIT_STRING);
155 am->am_record = dlsym(am->am_dlhandle, AUDIT_FILTER_RECORD_STRING);
156 am->am_rawrecord = dlsym(am->am_dlhandle,
158 am->am_detach = dlsym(am->am_dlhandle, AUDIT_FILTER_DETACH_STRING);
/freebsd-13-stable/lib/libc/gen/
H A Ddlfcn.c122 #pragma weak dlsym macro
124 dlsym(void * __restrict handle __unused, const char * __restrict name __unused) function
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Support/Unix/
H A DDynamicLibrary.inc49 return ::dlsym(Handle, Symbol);
/freebsd-13-stable/contrib/netbsd-tests/rump/rumpkern/
H A Dt_modcmd.c143 mi_start = dlsym(handle, "__start_link_set_modules");
144 mi_end = dlsym(handle, "__stop_link_set_modules");
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/ubsan/
H A Dubsan_value.cpp57 ObjCObjectGetClassName = dlsym(ObjCHandle, "object_getClassName");
/freebsd-13-stable/contrib/ofed/opensm/opensm/
H A Dosm_event_plugin.c93 (osm_event_plugin_t *) dlsym(rc->handle,
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Support/Windows/
H A DDynamicLibrary.inc131 // Try EXE first, mirroring what dlsym(dlopen(NULL)) does.
136 // This is different behaviour than what Posix dlsym(dlopen(NULL)) does.

Completed in 312 milliseconds

1234