/third_party/ffmpeg/libavfilter/ |
D | vf_frei0r.c | 59 void *dl_handle; /* dynamic library handle */ member 83 void *sym = dlsym(s->dl_handle, sym_name); in load_sym() 221 ret = load_path(ctx, &s->dl_handle, p1, dl_name); in frei0r_init() 225 if (s->dl_handle) in frei0r_init() 234 if (!s->dl_handle && (path = getenv("HOME"))) { in frei0r_init() 238 ret = load_path(ctx, &s->dl_handle, prefix, dl_name); in frei0r_init() 243 for (i = 0; !s->dl_handle && i < FF_ARRAY_ELEMS(frei0r_pathlist); i++) { in frei0r_init() 244 ret = load_path(ctx, &s->dl_handle, frei0r_pathlist[i], dl_name); in frei0r_init() 248 if (!s->dl_handle) { in frei0r_init() 308 if (s->dl_handle) in uninit() [all …]
|
D | af_ladspa.c | 42 void *dl_handle; member 468 s->dl_handle = dlopen(s->dl_name, RTLD_LOCAL|RTLD_NOW); in init() 477 while ((arg = av_strtok(p, separator, &saveptr)) && !s->dl_handle) { in init() 478 s->dl_handle = try_load(arg, s->dl_name); in init() 484 if (!s->dl_handle && home_path && (paths = av_asprintf("%s/.ladspa", home_path))) { in init() 485 s->dl_handle = try_load(paths, s->dl_name); in init() 489 if (!s->dl_handle && home_path && (paths = av_asprintf("%s/.ladspa/lib", home_path))) { in init() 490 s->dl_handle = try_load(paths, s->dl_name); in init() 494 if (!s->dl_handle) in init() 495 s->dl_handle = try_load("/usr/local/lib/ladspa", s->dl_name); in init() [all …]
|
/third_party/mesa3d/src/glx/apple/ |
D | apple_cgl.c | 42 static void *dl_handle = NULL; variable 86 dl_handle = h; in apple_cgl_init() 126 return dl_handle; in apple_cgl_get_dl_handle()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/eap_peer/ |
D | eap_methods.c | 215 eap_methods->dl_handle = handle; in eap_peer_method_load() 247 if (m == NULL || m->dl_handle == NULL) in eap_peer_method_unload() 255 handle = m->dl_handle; in eap_peer_method_unload() 363 handle = m->dl_handle; in eap_peer_unregister_methods()
|
D | eap_i.h | 263 void *dl_handle; member
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/eap_peer/ |
D | eap_methods.c | 216 eap_methods->dl_handle = handle; in eap_peer_method_load() 248 if (m == NULL || m->dl_handle == NULL) in eap_peer_method_unload() 256 handle = m->dl_handle; in eap_peer_method_unload() 365 handle = m->dl_handle; in eap_peer_unregister_methods()
|
D | eap_i.h | 263 void *dl_handle; member
|
/third_party/mesa3d/src/glx/windows/ |
D | windowsgl.c | 40 static void *dl_handle = NULL; in windows_get_dl_handle() local 42 if (!dl_handle) in windows_get_dl_handle() 43 dl_handle = dlopen("cygnativeGLthunk.dll", RTLD_NOW); in windows_get_dl_handle() 45 return dl_handle; in windows_get_dl_handle()
|
/third_party/alsa-lib/src/timer/ |
D | timer_local.h | 42 void *dl_handle; member 61 void *dl_handle; member
|
D | timer_query.c | 131 (*timer)->dl_handle = h; in snd_timer_query_open_conf() 205 if (timer->dl_handle) in snd_timer_query_close() 206 snd_dlclose(timer->dl_handle); in snd_timer_query_close()
|
D | timer.c | 173 (*timer)->dl_handle = h; in snd_timer_open_conf() 257 if (timer->dl_handle) in snd_timer_close() 258 snd_dlclose(timer->dl_handle); in snd_timer_close()
|
/third_party/alsa-lib/src/hwdep/ |
D | hwdep_local.h | 37 void *dl_handle; member
|
D | hwdep.c | 137 (*hwdep)->dl_handle = h; in snd_hwdep_open_conf() 214 if (hwdep->dl_handle) in snd_hwdep_close() 215 snd_dlclose(hwdep->dl_handle); in snd_hwdep_close()
|
/third_party/alsa-lib/src/seq/ |
D | seq_local.h | 79 void *dl_handle; member
|
D | seq.c | 922 (*seqp)->dl_handle = h; in snd_seq_open_conf() 1048 if (seq->dl_handle) in snd_seq_close() 1049 snd_dlclose(seq->dl_handle); in snd_seq_close()
|
/third_party/alsa-lib/src/pcm/ |
D | pcm_meter.c | 73 void *dl_handle; member 285 if (meter->dl_handle) in snd_pcm_meter_close() 286 snd_dlclose(meter->dl_handle); in snd_pcm_meter_close() 694 meter->dl_handle = h; in snd_pcm_meter_add_scope_conf()
|
D | pcm_ladspa.c | 104 void *dl_handle; member 187 if (plugin->dl_handle) in snd_pcm_ladspa_free_plugins() 188 dlclose(plugin->dl_handle); in snd_pcm_ladspa_free_plugins() 1134 plugin->dl_handle = handle; in snd_pcm_ladspa_check_file()
|