Home
last modified time | relevance | path

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

/external/python/cpython2/Modules/
Ddlmodule.c19 PyUnivPtr *dl_handle; member
33 xp->dl_handle = handle; in newdlobject()
40 if (xp->dl_handle != NULL) in dl_dealloc()
41 dlclose(xp->dl_handle); in dl_dealloc()
48 if (xp->dl_handle != NULL) { in dl_close()
49 dlclose(xp->dl_handle); in dl_close()
50 xp->dl_handle = NULL; in dl_close()
68 func = dlsym(xp->dl_handle, name); in dl_sym()
98 dlsym(xp->dl_handle, PyString_AsString(name)); in dl_call()
/external/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()
/external/wpa_supplicant_8/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.h250 void *dl_handle; member
/external/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()