HomeSort by: relevance | last modified time | path
    Searched refs:dl_handle (Results 1 - 12 of 12) sorted by relevancy

  /src/tests/lib/libc/string/
t_strchr.c 61 void *dl_handle; local
249 dl_handle = dlopen(NULL, RTLD_LAZY);
250 strchr_fn = dlsym(dl_handle, "test_strchr");
285 (void)dlclose(dl_handle);
t_strchrnul.c 60 void *dl_handle; local
248 dl_handle = dlopen(NULL, RTLD_LAZY);
249 strchrnul_fn = dlsym(dl_handle, "test_strchrnul");
284 (void)dlclose(dl_handle);
t_strlen.c 43 void *dl_handle; local
111 dl_handle = dlopen(NULL, RTLD_LAZY);
112 strlen_fn = dlsym(dl_handle, "test_strlen");
139 (void)dlclose(dl_handle);
  /src/external/mpl/bind/dist/lib/dns/include/dns/
librpz.h 859 * @param[in,out] dl_handle: NULL or pointer to new dlopen handle
864 librpz_lib_open(librpz_emsg_t *emsg, void **dl_handle, const char *path) {
873 if (dl_handle != NULL && *dl_handle != NULL) {
874 if (dlclose(*dl_handle) != 0) {
879 *dl_handle = NULL;
891 if (dl_handle != NULL) {
892 *dl_handle = handle;
919 if (dl_handle != NULL) {
920 *dl_handle = handle
    [all...]
  /src/external/mpl/dhcp/bind/dist/lib/dns/include/dns/
librpz.h 866 * @param[in,out] dl_handle: NULL or pointer to new dlopen handle
871 librpz_lib_open(librpz_emsg_t *emsg, void **dl_handle, const char *path) {
880 if (dl_handle != NULL && *dl_handle != NULL) {
881 if (dlclose(*dl_handle) != 0) {
886 *dl_handle = NULL;
898 if (dl_handle != NULL) {
899 *dl_handle = handle;
925 if (dl_handle != NULL) {
926 *dl_handle = handle
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/
plugin.cc 632 HMODULE dl_handle;
635 dl_handle = LoadLibrary (plugin->full_name);
636 if (!dl_handle)
646 if (GetProcAddress (dl_handle, str_license) == NULL)
657 GetProcAddress (dl_handle, str_plugin_init_func_name);
662 FreeLibrary (dl_handle);
672 FreeLibrary (dl_handle);
676 /* Leak dl_handle on purpose to ensure the plugin is loaded for the
694 void *dl_handle;
703 dl_handle = dlopen (plugin->full_name, RTLD_NOW | RTLD_GLOBAL)
    [all...]
  /src/external/gpl3/gcc/dist/gcc/
plugin.cc 634 HMODULE dl_handle;
637 dl_handle = LoadLibrary (plugin->full_name);
638 if (!dl_handle)
648 if (GetProcAddress (dl_handle, str_license) == NULL)
659 GetProcAddress (dl_handle, str_plugin_init_func_name);
664 FreeLibrary (dl_handle);
674 FreeLibrary (dl_handle);
678 /* Leak dl_handle on purpose to ensure the plugin is loaded for the
696 void *dl_handle;
705 dl_handle = dlopen (plugin->full_name, RTLD_NOW | RTLD_GLOBAL)
    [all...]
  /src/external/bsd/wpa/dist/src/eap_peer/
eap_methods.c 216 eap_methods->dl_handle = handle;
248 if (m == NULL || m->dl_handle == NULL)
256 handle = m->dl_handle;
365 handle = m->dl_handle;
eap_i.h 257 * dl_handle - Handle for the dynamic library
263 void *dl_handle; member in struct:eap_method
  /src/external/gpl3/gcc.old/dist/libgomp/
oacc-profiling.c 137 void *dl_handle = dlopen (acc_proflib, RTLD_LAZY); local
138 if (dl_handle != NULL)
141 = dlsym (dl_handle, "acc_register_library");
154 if (dl_handle != NULL)
156 int err = dlclose (dl_handle);
157 dl_handle = NULL;
  /src/external/gpl3/gcc/dist/libgomp/
oacc-profiling.c 137 void *dl_handle = dlopen (acc_proflib, RTLD_LAZY); local
138 if (dl_handle != NULL)
141 = dlsym (dl_handle, "acc_register_library");
154 if (dl_handle != NULL)
156 int err = dlclose (dl_handle);
157 dl_handle = NULL;
  /src/external/mpl/bind/dist/bin/named/
dlz_dlopen_driver.c 39 uv_lib_t dl_handle; member in struct:dlopen_data
186 int r = uv_dlsym(&cd->dl_handle, symbol, &ptr);
188 const char *errmsg = uv_dlerror(&cd->dl_handle);
239 r = uv_dlopen(cd->dl_path, &cd->dl_handle);
241 const char *errmsg = uv_dlerror(&cd->dl_handle);
350 uv_dlclose(&cd->dl_handle);

Completed in 42 milliseconds