Home
last modified time | relevance | path

Searched refs:dl_handle (Results 1 – 17 of 17) sorted by relevance

/third_party/ffmpeg/libavfilter/
Dvf_frei0r.c59 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 …]
Daf_ladspa.c42 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/
Dapple_cgl.c42 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/
Deap_methods.c215 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()
Deap_i.h263 void *dl_handle; member
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/eap_peer/
Deap_methods.c216 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()
Deap_i.h263 void *dl_handle; member
/third_party/mesa3d/src/glx/windows/
Dwindowsgl.c40 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/
Dtimer_local.h42 void *dl_handle; member
61 void *dl_handle; member
Dtimer_query.c131 (*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()
Dtimer.c173 (*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/
Dhwdep_local.h37 void *dl_handle; member
Dhwdep.c137 (*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/
Dseq_local.h79 void *dl_handle; member
Dseq.c922 (*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/
Dpcm_meter.c73 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()
Dpcm_ladspa.c104 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()