p11-kit

dlsymdlopen

0.23.20

2 / 446 files match, 2 filtered matches.

common/compat.h



235 | #define p11_dl_open(f) \
236 | 	(dlopen ((f), RTLD_LOCAL | RTLD_NOW))
237 | #define p11_dl_symbol(d, s) \
238 | 	(dlsym ((d), (s)))
239 | 
240 | char * p11_dl_error (void);


trust/frob-multi-init.c



28 | 		fprintf (stderr, "%s\n", dlerror());
29 | 	assert (dl != NULL);
30 | 
31 | 	C_GetFunctionList = dlsym (dl, "C_GetFunctionList");
32 | 	assert (C_GetFunctionList != NULL);
33 |