Searched refs:SDBM_File (Results 1 - 17 of 17) sorted by relevance

/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/SDBM_File/
H A DSDBM_File.xs16 typedef SDBM_File_type * SDBM_File ;
29 MODULE = SDBM_File PACKAGE = SDBM_File PREFIX = sdbm_
31 SDBM_File
43 RETVAL = (SDBM_File)safemalloc(sizeof(SDBM_File_type)) ;
54 SDBM_File db
69 SDBM_File db
74 SDBM_File db
89 SDBM_File db
94 SDBM_File d
[all...]
H A DSDBM_File.pm1 package SDBM_File; package
12 XSLoader::load 'SDBM_File', $VERSION;
20 SDBM_File - Tied access to sdbm files
25 use SDBM_File;
27 tie(%h, 'SDBM_File', 'filename', O_RDWR|O_CREAT, 0666)
39 C<SDBM_File> establishes a connection between a Perl hash variable and
40 a file in SDBM_File format;. You can manipulate the data in the file
45 Use C<SDBM_File> with the Perl built-in C<tie> function to establish
57 The string C<"SDBM_File">. (Ths tells Perl to use the C<SDBM_File>
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/DynaLoader/t/
H A DXSLoader.t8 print "1..0 # Skip: no SDBM_File\n";
23 package SDBM_File; package
24 XSLoader::load('SDBM_File');
25 ::ok( ref SDBM_File->can('TIEHASH') );
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Memoize/
H A DSDBM_File.pm1 package Memoize::SDBM_File;
5 Memoize::SDBM_File - glue to provide EXISTS for SDBM_File for Storable use
13 use SDBM_File;
14 @ISA = qw(SDBM_File);
20 warn "Nonexistent function $AUTOLOAD invoked in Memoize::SDBM_File\n";
24 warn "Importing Memoize::SDBM_File\n" if $Verbose;
42 warn "Memoize::SDBM_File EXISTS (@_)\n" if $Verbose;
46 warn "Memoize::SDBM_File EXISTS (@_) ==> $r\n" if $Verbose;
51 warn "Memoize::SDBM_File DEFINE
[all...]
H A DAnyDBM_File.pm15 @ISA = qw(DB_File GDBM_File Memoize::NDBM_File Memoize::SDBM_File ODBM_File) unless @ISA;
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Memoize/t/
H A Derrors.t27 SDBM_File => [$dummyfile, O_RDWR|O_CREAT, 0666],
29 for $mod (qw(DB_File GDBM_File SDBM_File ODBM_File NDBM_File)) {
H A Dtie_sdbm.t6 # use Memoize::SDBM_File;
23 eval {require Memoize::SDBM_File};
40 tryout('Memoize::SDBM_File', $file, 1); # Test 1..4
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/DBM_Filter/
H A Dcompress.pm30 use SDBM_File; # or DB_File, or GDBM_File, or NDBM_File, or ODBM_File
H A Dint32.pm30 use SDBM_File; # or DB_File, or GDBM_File, or NDBM_File, or ODBM_File
H A Dutf8.pm29 use SDBM_File; # or DB_File, or GDBM_File, or NDBM_File, or ODBM_File
H A Dencode.pm47 use SDBM_File; # or DB_File, or GDBM_File, or NDBM_File, or ODBM_File
H A Dnull.pm28 use SDBM_File; # or DB_File, or GDBM_File, or NDBM_File, or ODBM_File
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/SDBM_File/t/
H A Dsdbm.t10 print "1..0 # Skip: no SDBM_File\n";
27 require SDBM_File;
37 ok(1, tie %h,'SDBM_File','Op_dbmx', O_RDWR|O_CREAT, 0640);
77 print (tie(%h,'SDBM_File','Op_dbmx', O_RDWR, 0640) ? "ok 4\n" : "not ok 4\n");
158 use SDBM_File;
159 @ISA=qw(SDBM_File);
160 @EXPORT = @SDBM_File::EXPORT if defined @SDBM_File::EXPORT ;
237 ok(21, $db = tie(%h, 'SDBM_File','Op_dbmx', O_RDWR|O_CREAT, 0640)) ;
334 ok(42, $db = tie(%h, 'SDBM_File','Op_dbm
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/
H A DAnyDBM_File.pm5 our @ISA = qw(NDBM_File DB_File GDBM_File SDBM_File ODBM_File) unless @ISA;
22 NDBM_File, DB_File, GDBM_File, SDBM_File, ODBM_File - various DBM implementations
H A DDBM_Filter.pm233 use SDBM_File; # or DB_File, or GDBM_File, or NDBM_File, or ODBM_File
374 my $db = tie %hash, 'SDBM_File', ...
387 my $db = tie %hash, 'SDBM_File', ...
591 my $db = tie %hash, 'SDBM_File', ...
600 <DB_File>, L<GDBM_File>, L<NDBM_File>, L<ODBM_File>, L<SDBM_File>, L<perldbmfilter>
H A DMemoize.pm44 my %scalar_only = map {($_ => 1)} qw(DB_File GDBM_File SDBM_File ODBM_File NDBM_File);
931 C<SDBM_File> doesn't supply an C<EXISTS> method, so included in this
932 package is a glue module called C<Memoize::SDBM_File> which does
933 provide one. Use this instead of plain C<SDBM_File> to store your
934 cache table on disk in an C<SDBM_File> database:
936 tie my %cache => 'Memoize::SDBM_File', $filename, O_RDWR|O_CREAT, 0666;
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/ExtUtils/
H A DMakeMaker.pm1370 ] in ext/SDBM_File
1707 name of the library (see SDBM_File)
1963 extension (e.g. Fcntl for SDBM_File) are the keys of the hash and the

Completed in 42 milliseconds