Searched refs:dl_handle (Results 1 – 8 of 8) sorted by relevance
/external/python/cpython2/Modules/ |
D | dlmodule.c | 19 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/tensorflow/tensorflow/lite/delegates/hexagon/ |
D | hexagon_implementation.cc | 30 void* LoadFunction(void* dl_handle, const char* name) { in LoadFunction() argument 31 TFLITE_DCHECK(dl_handle != nullptr); in LoadFunction() 32 auto* func_pt = dlsym(dl_handle, name); in LoadFunction() 39 #define LOAD_FUNCTION(dl_handle, method_name, hexagon_obj) \ argument 41 LoadFunction(dl_handle, #method_name)); \
|
/external/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()
|
/external/wpa_supplicant_8/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
|
/external/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()
|
/external/tpm2-tss/src/tss2-tcti/ |
D | tctildr.c | 402 void *dl_handle = NULL; in Tss2_TctiLdr_Initialize_Ex() local 416 rc = tctildr_get_tcti (local_name, local_conf, tctiContext, &dl_handle); in Tss2_TctiLdr_Initialize_Ex() 435 ldr_ctx->library_handle = dl_handle; in Tss2_TctiLdr_Initialize_Ex() 445 tctildr_finalize_data (&dl_handle); in Tss2_TctiLdr_Initialize_Ex()
|
/external/python/cffi/c/ |
D | _cffi_backend.c | 4269 void *dl_handle; member 4276 if (dlobj->dl_handle != NULL && dlobj->dl_auto_close) in dl_dealloc() 4277 dlclose(dlobj->dl_handle); in dl_dealloc() 4289 if (dlobj->dl_handle == NULL) in dl_check_closed() 4318 funcptr = dlsym(dlobj->dl_handle, funcname); in dl_load_function() 4347 data = dlsym(dlobj->dl_handle, varname); in dl_read_variable() 4375 data = dlsym(dlobj->dl_handle, varname); in dl_write_variable() 4391 if (dlobj->dl_handle != NULL) in dl_close_lib() 4393 dlclose(dlobj->dl_handle); in dl_close_lib() 4394 dlobj->dl_handle = NULL; in dl_close_lib() [all …]
|