Searched refs:libref (Results 1 – 7 of 7) sorted by relevance
| /openbsd-src/gnu/usr.bin/perl/ext/DynaLoader/ |
| H A D | dl_dllload.xs | 121 DLDEBUG(2,PerlIO_printf(Perl_debug_log, " libref=%lx\n", (unsigned long) retv)); 131 dl_unload_file(libref) 132 void * libref 134 DLDEBUG(1,PerlIO_printf(Perl_debug_log, "dl_unload_file(%lx):\n", PTR2ul(libref))); 135 /* RETVAL = (dllfree((dllhandle *)libref) == 0 ? 1 : 0); */ 136 RETVAL = (dllfree(libref) == 0 ? 1 : 0);
|
| H A D | dl_dlopen.xs | 209 DLDEBUG(2,PerlIO_printf(Perl_debug_log, " libref=%lx\n", (unsigned long) handle)); 219 dl_unload_file(libref) 220 void * libref 222 DLDEBUG(1,PerlIO_printf(Perl_debug_log, "dl_unload_file(%lx):\n", PTR2ul(libref))); 223 RETVAL = (dlclose(libref) == 0 ? 1 : 0);
|
| H A D | dl_hpux.xs | 98 DLDEBUG(2,PerlIO_printf(Perl_debug_log, " libref=%p\n", (void*)obj)); 108 dl_unload_file(libref) 109 void * libref 111 DLDEBUG(1,PerlIO_printf(Perl_debug_log, "dl_unload_file(%lx):\n", PTR2ul(libref))); 112 RETVAL = (shl_unload((shl_t)libref) == 0 ? 1 : 0);
|
| H A D | dl_win32.xs | 149 dl_unload_file(libref) 150 void * libref 152 DLDEBUG(1,PerlIO_printf(Perl_debug_log, "dl_unload_file(%lx):\n", PTR2ul(libref))); 153 RETVAL = FreeLibrary((HMODULE)libref);
|
| H A D | dl_vms.xs | 69 struct libref { struct 238 struct libref *dlptr; 251 Newx(dlptr,1,struct libref); 310 struct libref thislib = *((struct libref *)librefptr);
|
| H A D | dl_aix.xs | 704 DLDEBUG(2,PerlIO_printf(Perl_debug_log, " libref=%x\n", retv)); 713 dl_unload_file(libref) 714 void * libref 716 DLDEBUG(1,PerlIO_printf(Perl_debug_log, "dl_unload_file(%lx):\n", libref)); 717 RETVAL = (dlclose(libref) == 0 ? 1 : 0);
|
| /openbsd-src/gnu/usr.bin/perl/ext/DynaLoader/t/ |
| H A D | DynaLoader.t | 152 for my $libref (reverse @DynaLoader::dl_librefs) { 158 my $r = eval { DynaLoader::dl_unload_file($libref) };
|