/osnet-11/usr/src/cmd/perl/contrib/Sun/Solaris/Kstat/ |
H A D | Kstat.pm | 33 use DynaLoader; 36 @ISA = qw(DynaLoader);
|
/osnet-11/usr/src/cmd/perl/contrib/Sun/Solaris/Intrs/ |
H A D | Intrs.pm | 31 use DynaLoader; 34 our @ISA = qw(Exporter DynaLoader);
|
/osnet-11/usr/src/cmd/perl/contrib/Sun/Solaris/Utils/ |
H A D | Utils.pm | 34 use DynaLoader; 37 @ISA = qw(Exporter DynaLoader);
|
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/ExtUtils/ |
H A D | Mkbootstrap.pm | 16 # We need DynaLoader here because we and/or the *_BS file may 18 # first building perl extensions the DynaLoader will not have 20 require DynaLoader; 27 package DynaLoader; # execute code as if in DynaLoader package 37 package DynaLoader; package 41 my(@all) = (@bsloadlibs, @DynaLoader::dl_resolve_using); 48 print BS "# $baseext DynaLoader bootstrap file for $^O architecture.\n"; 52 print BS "\@DynaLoader::dl_resolve_using = "; 61 print BS $DynaLoader [all...] |
H A D | Embed.pm | 111 my($dl) = canon('/','DynaLoader'); 122 # Must NOT install 'DynaLoader::boot_DynaLoader' as 'bootstrap'! 123 # boot_DynaLoader is called directly in DynaLoader.pm 124 $ccode = "\t/* DynaLoader is a special case */\n\tnewXS(\"${mname}::boot_${cname}\", boot_${cname}, file);\n"; 137 unshift @Extensions, qw(DynaLoader); 348 Note that B<DynaLoader> is a special case where it must call B<boot_DynaLoader> directly. 353 This will generate code for linking with B<DynaLoader> and 364 If you have a working B<DynaLoader> then there is rarely any need to statically link in any 425 This will print arguments for linking with B<libperl.a>, B<DynaLoader> and 440 perl -MExtUtils::Embed -e ldopts -- DynaLoader [all...] |
H A D | Mksymlists.pm | 48 # require DynaLoader; 49 if (defined &DynaLoader::mod2fname and not $spec{DLBASE}) { 50 $spec{DLBASE} = DynaLoader::mod2fname([ split(/::/,$spec{NAME}) ]); 137 # NOTE: DynaLoader itself only uses the names without underscores,
|
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/DynaLoader/ |
H A D | XSLoader_pm.PL | 19 # enable debug/trace messages from DynaLoader perl code 28 package DynaLoader; 30 # No prizes for guessing why we don't say 'bootstrap DynaLoader;' here. 32 boot_DynaLoader('DynaLoader') if defined(&boot_DynaLoader) && 37 package DynaLoader; 54 print OUT <<'EOT' if defined &DynaLoader::mod2fname; 89 # this section of code: XYZ failed at line 123 of DynaLoader.pm. 121 require DynaLoader; 122 goto &DynaLoader::bootstrap_inherit; 146 For more complicated interface see L<DynaLoader> [all...] |
H A D | Makefile.PL | 25 NAME => 'DynaLoader', 32 PL_FILES => {'DynaLoader_pm.PL'=>'DynaLoader.pm', 34 PM => {'DynaLoader.pm' => '$(INST_LIBDIR)/DynaLoader.pm', 36 depend => {'DynaLoader.o' => 'dlutils.c'}, 37 clean => {FILES => 'DynaLoader.c DynaLoader.xs DynaLoader.pm ' . 43 DynaLoader.xs: $(DLSRC)
|
H A D | dl_dlopen.xs | 152 MODULE = DynaLoader PACKAGE = DynaLoader
|
H A D | DynaLoader_pm.PL | 10 unlink "DynaLoader.pm" if -f "DynaLoader.pm"; 11 open OUT, ">DynaLoader.pm" or die $!; 14 # Generated from DynaLoader.pm.PL 16 package DynaLoader; 26 # See also ext/DynaLoader/README in source tree for other information. 46 # enable debug/trace messages from DynaLoader perl code 57 # behaviour unless a sub-class of DynaLoader defines its own version. 188 # No prizes for guessing why we don't say 'bootstrap DynaLoader;' here. 190 boot_DynaLoader('DynaLoader') i [all...] |
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ |
H A D | Makefile | 44 # DynaLoader is a special extension as it has to be built statically. 45 DYNALOADER=lib/auto/DynaLoader/DynaLoader.a 180 # Make DynaLoader. DynaLoader is statically linked into the perl executable 186 ext/DynaLoader/Makefile: ext/DynaLoader/Makefile.PL $(PERL_CONFIGDEP) cflags 187 @ cd ext/DynaLoader; pwd; $(PERL_MM_ENV); \ 191 $(DYNALOADER): ext/DynaLoader/Makefile $(PERL_CONFIGDEP) cflags FRC 192 @ cd ext/DynaLoader; pw [all...] |
H A D | writemain.SH | 92 if test "$ext" = "DynaLoader"; then 93 : Must NOT install 'DynaLoader::boot_DynaLoader' as 'bootstrap'! 94 : boot_DynaLoader is called directly in DynaLoader.pm
|
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/IPC/SysV/ |
H A D | SysV.pm | 50 # If I inherit DynaLoader then I inherit AutoLoader and I DON'T WANT TO 51 require DynaLoader; 53 # DynaLoader calls dl_load_flags as a static method. 54 *dl_load_flags = DynaLoader->can('dl_load_flags'); 57 __PACKAGE__->can('bootstrap') || \&DynaLoader::bootstrap
|
/osnet-11/usr/src/cmd/perl/contrib/Sun/Solaris/Task/ |
H A D | Task.xs | 27 # avoid the overhead of using the DynaLoader package, and in addition constants
|
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/ExtUtils/t/ |
H A D | Mkbootstrap.t | 112 like( $file, qr/# dasboot DynaLoader/, 'file should have boilerplate' ); 126 # if $DynaLoader::bscode is set, write its contents to the file 127 local $DynaLoader::bscode; 128 $DynaLoader::bscode = 'Wall'; 146 like( $file, qr/Wall\n1;\n/ms, 'should write $DynaLoader::bscode if set' );
|
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/t/lib/ |
H A D | 1_compile.t | 74 DynaLoader
|
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/I18N/Langinfo/ |
H A D | Langinfo.pm | 9 require DynaLoader; 12 our @ISA = qw(Exporter DynaLoader);
|
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/XS/Typemap/ |
H A D | Typemap.pm | 34 use base qw/ DynaLoader Exporter /;
|
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/MIME/Base64/ |
H A D | Base64.pm | 9 require DynaLoader; 10 @ISA = qw(Exporter DynaLoader);
|
/osnet-11/usr/src/cmd/perl/contrib/Sun/Solaris/Project/ |
H A D | Project.xs | 92 # avoid the overhead of using the DynaLoader package, and in addition constants
|
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/Devel/DProf/ |
H A D | DProf.pm | 51 + 26 28 566822884 DynaLoader::import 52 - 26 28 566822884 DynaLoader::import
|
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/List/Util/lib/List/ |
H A D | Util.pm | 21 require DynaLoader; 22 local @ISA = qw(DynaLoader);
|
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/XS/APItest/ |
H A D | APItest.pm | 8 use base qw/ DynaLoader Exporter /;
|
/osnet-11/usr/src/cmd/perl/contrib/Sun/Solaris/Privilege/ |
H A D | Privilege.xs | 77 # avoid the overhead of using the DynaLoader package, and in addition constants
|
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/Digest/MD5/ |
H A D | MD5.pm | 12 require DynaLoader; 13 @ISA=qw(DynaLoader);
|