Home
last modified time | relevance | path

Searched refs:libref (Results 1 – 7 of 7) sorted by relevance

/openbsd-src/gnu/usr.bin/perl/ext/DynaLoader/
H A Ddl_dllload.xs121 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 Ddl_dlopen.xs209 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 Ddl_hpux.xs98 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 Ddl_win32.xs149 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 Ddl_vms.xs69 struct libref { struct
238 struct libref *dlptr;
251 Newx(dlptr,1,struct libref);
310 struct libref thislib = *((struct libref *)librefptr);
H A Ddl_aix.xs704 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 DDynaLoader.t152 for my $libref (reverse @DynaLoader::dl_librefs) {
158 my $r = eval { DynaLoader::dl_unload_file($libref) };