Lines Matching defs:handle
34 void *handle = dlopen(dso_no_symver_name, RTLD_LAZY);
35 if (!handle) {
43 functype func = (functype)dlsym(handle, dso_no_symver_symbol);
53 dlclose(handle);
67 void *handle = dlopen(dso_no_symver_name, RTLD_LAZY);
68 if (!handle) {
76 functype func = (functype)dlsym(handle, dso_symbol_invalid);
85 dlclose(handle);
115 void *handle = dlopen(dso_easy_symver_name, RTLD_LAZY);
116 if (!handle) {
124 functype func = (functype)dlsym(handle, dso_easy_symver_symbol);
134 dlclose(handle);
148 void *handle = dlopen(dso_easy_symver_name, RTLD_LAZY);
149 if (!handle) {
157 functype func = (functype)dlsym(handle, dso_symbol_invalid);
166 dlclose(handle);
196 void *handle = dlopen(dso_hard_symver_name, RTLD_LAZY);
197 if (!handle) {
205 functype func = (functype)dlsym(handle, dso_hard_symver_if_symbol);
215 dlclose(handle);
229 void *handle = dlopen(dso_hard_symver_name, RTLD_LAZY);
230 if (!handle) {
238 functype func = (functype)dlsym(handle, dso_symbol_invalid);
247 dlclose(handle);
261 void *handle = dlopen(dso_no_symver_name, RTLD_LAZY);
262 if (!handle) {
270 functype func = (functype)__dlsym_time64(handle, dso_no_symver_symbol);
280 dlclose(handle);