/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/ExtUtils/t/ |
H A D | Packlist.t | 21 my $pl = ExtUtils::Packlist->new(); 22 isa_ok( $pl, 'ExtUtils::Packlist' ); 23 is( ref tied %$pl, 'ExtUtils::Packlist', 'obj should be tied underneath' ); 26 $pl = ExtUtils::Packlist::TIEHASH( 'tieclass', 'packfile' ); 27 is( ref($pl), 'tieclass', 'TIEHASH() should bless into class' ); 28 is( $pl->{packfile}, 'packfile', 'TIEHASH() should store packfile name' ); 31 ExtUtils::Packlist::STORE($pl, 'key', 'value'); 32 is( $pl->{data}{key}, 'value', 'STORE() should stuff stuff in data member' ); 35 $pl->{data}{foo} = 'bar'; 36 is( ExtUtils::Packlist::FETCH($pl, 'fo [all...] |
/osnet-11/usr/src/lib/libnsl/rpc/ |
H A D | svc_simple.c | 114 struct proglst *pl; local 123 for (pl = proglst; pl; pl = pl->p_nxt) 124 if (strcmp(pl->p_netid, nconf->nc_netid) == 0) { 125 svcxprt = pl->p_transp; 126 xdrbuf = pl->p_xdrbuf; 127 recvsz = pl->p_recvsz; 128 netid = pl 242 struct proglst *pl; local [all...] |
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/File/Glob/t/ |
H A D | basic.t | 121 @a = (grep !/test.pl/, @a) if $^O eq 'VMS'; 147 @f_names = qw(Ax.pl Bx.pl Cx.pl aY.pl bY.pl cY.pl); 148 @f_alpha = qw(Ax.pl aY.pl Bx.pl b [all...] |
/osnet-11/usr/src/lib/pkcs11/pkcs11_kernel/common/ |
H A D | kernelSlottable.c | 39 crypto_get_provider_list_t *pl; local 42 pl = malloc(sizeof (crypto_get_provider_list_t)); 43 if (pl == NULL) 46 pl->pl_count = 0; 47 while ((r = ioctl(kernel_fd, CRYPTO_GET_PROVIDER_LIST, pl)) < 0) { 54 if (pl->pl_return_value != CRYPTO_SUCCESS) { 55 rv = crypto2pkcs11_error_number(pl->pl_return_value); 62 slot_count = pl->pl_count; 65 (void) free(pl); 173 crypto_get_provider_list_t *pl local [all...] |
/osnet-11/usr/src/lib/libmd/amd64/ |
H A D | Makefile | 73 md5_amd64.s: $(COMDIR)/md5/amd64/md5_amd64.pl 76 sha1-x86_64.s: $(COMDIR)/sha1/amd64/sha1-x86_64.pl 79 sha512-x86_64.s: $(COMDIR)/sha2/amd64/sha512-x86_64.pl 82 sha256-x86_64.s: $(COMDIR)/sha2/amd64/sha512-x86_64.pl
|
/osnet-11/usr/src/lib/efcode/engine/ |
H A D | extend.c | 39 void *pl; local 43 pl = dlopen(name, mode); 44 PUSH(DS, (fstack_t)pl); 59 void *pl = (void *)POP(DS); local 60 dlclose(pl);
|
/osnet-11/usr/src/lib/crypt_modules/bsdmd5/ |
H A D | bsdmd5.c | 77 int sl, l, pl, i; local 114 for (pl = strlen(plaintext); pl > 0; pl -= 16) 115 MD5Update(&ctx, final, pl > 16 ? 16 : pl);
|
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/t/run/ |
H A D | exit.t | 26 require "test.pl";
|
/osnet-11/usr/src/lib/cfgadm_plugins/sbd/ |
H A D | Makefile.com | 93 sbdgenerr: $(GENERRDIR)/sbdgenerr.pl 95 cat $(GENERRDIR)/sbdgenerr.pl > $(GENERRDIR)/sbdgenerr
|
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/utils/ |
H A D | pl2pm.PL | 40 pl2pm - Rough tool to translate Perl4 .pl files to Perl5 .pm modules. 48 B<pl2pm> is a tool to aid in the conversion of Perl4-style .pl 49 library files to Perl5-style library modules. Usually, your old .pl 78 $newname =~ s/\.pl$/.pm/ || next; 104 s/(#.*)require ['"]$oldpack\.pl['"]/$1use $newpack/;
|
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/ExtUtils/ |
H A D | Packlist.pm | 177 my ($pl) = ExtUtils::Packlist->new('.packlist'); 178 $pl->read('/an/old/.packlist'); 179 my @missing_files = $pl->validate(); 180 $pl->write('/a/new/.packlist'); 182 $pl->{'/some/file/name'}++; 184 $pl->{'/some/other/file/name'} = { type => 'file',
|
/osnet-11/usr/src/lib/libzfs/common/ |
H A D | libzfs_util.c | 1160 property_width(zprop_list_t *pl, void *arg) argument 1165 if (pl->pl_prop != NULL) { 1166 const char *name = pl->pl_prop->zpd_name; 1177 if (ZPROP_IS_SUBLIST(pl->pl_prop)) 1182 width = strlen(pl->pl_user_prop); 1190 value_width(zprop_list_t *pl, void *arg) argument 1192 return (pl->pl_width); 1197 received_width(zprop_list_t *pl, void *arg) argument 1199 return (pl->pl_recvd_width); 1207 zprop_list_t *pl local 1878 zprop_list_t *pl; local 2156 zprop_free_list(zprop_list_t *pl) argument [all...] |
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/t/ |
H A D | harness | 74 if (m!^(ext/\S+/?(?:[^/\s]+\.t|test\.pl)|lib/\S+?(?:\.t|test\.pl))\s!) {
|
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/Storable/t/ |
H A D | restrict.t | 34 require 'st-dump.pl';
|
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Net/t/ |
H A D | config.t | 50 (my $libnet_t = __FILE__) =~ s/config.t/libnet_t.pl/;
|
H A D | netrc.t | 40 (my $libnet_t = __FILE__) =~ s/\w+.t$/libnet_t.pl/;
|
H A D | time.t | 19 (my $libnet_t = __FILE__) =~ s/time.t/libnet_t.pl/;
|
/osnet-11/usr/src/lib/libdhcpagent/common/ |
H A D | dhcp_hostconf.c | 339 PKT_LIST *pl[], 371 iov[iovlen].iov_base = (caddr_t)&pl[i]->len; 372 explen += iov[iovlen++].iov_len = sizeof (pl[i]->len); 373 iov[iovlen].iov_base = (caddr_t)pl[i]->pkt; 374 explen += iov[iovlen++].iov_len = pl[i]->len; 337 write_hostconf( const char *ifname, PKT_LIST *pl[], uint_t pllen, time_t relative_to, boolean_t isv6) argument
|
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/ |
H A D | charnames.t | 9 require './test.pl'; 275 my $alifile = File::Spec->catfile(File::Spec->updir, qw(lib unicore xyzzy_alias.pl)); 390 unicore/e_ACUTE_alias.pl cannot be used as alias file for charnames at 453 unicore/xyzzy_alias.pl cannot be used as alias file for charnames at 465 unicore/perl_alias.pl cannot be used as alias file for charnames at 474 unicore/xyzzy_alias.pl did not return a \(valid\) list of alias pairs at
|
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/t/op/ |
H A D | inccode.t | 12 require "test.pl"; 60 $evalret = eval { do 'Foo2.pl'; 1 }; 62 ok( $evalret, 'do "Foo2.pl"' ); 63 ok( exists $INC{'Foo2.pl'}, ' %INC sees Foo2.pl' ); 64 is( ref $INC{'Foo2.pl'}, 'CODE', ' val Foo2.pl is a coderef in %INC' ); 65 is( $INC{'Foo2.pl'}, \&fooinc, ' val Foo2.pl is correct in %INC' ); 101 ok( eval { do 'Bar2.pl'; [all...] |
/osnet-11/usr/src/lib/libsoftcrypto/amd64/ |
H A D | Makefile | 83 arcfour-x86_64.s: $(ARCFOUR_DIR)/amd64/arcfour-x86_64.pl
|
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/B/B/ |
H A D | Showlex.pm | 11 # perl -MO=Showlex,foo bar.pl 14 # perl -MO=Showlex bar.pl 15 # to see the names of file scope lexicals used by bar.pl 88 perl -MO=Showlex[,SUBROUTINE] foo.pl
|
/osnet-11/usr/src/lib/fm/libfmd_snmp/common/ |
H A D | problem.c | 1073 ulong_t pl; local 1077 pl = (ulong_t)pct; 1079 ASN_UNSIGNED, (uchar_t *)&pl, sizeof (pl)); 1132 ulong_t pl = SUNFMFAULTEVENT_STATE_OTHER; local 1135 pl = SUNFMFAULTEVENT_STATE_FAULTY; 1137 pl = SUNFMFAULTEVENT_STATE_REMOVED; 1139 pl = SUNFMFAULTEVENT_STATE_REPLACED; 1141 pl = SUNFMFAULTEVENT_STATE_REPAIRED; 1143 pl [all...] |
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/File/Glob/ |
H A D | bsd_glob.c | 434 const Char *pe, *pm, *pl; local 470 for (i = 0, pl = pm = ptr; pm <= pe; pm++) { 474 for (pl = pm++; *pm != BG_RBRACKET && *pm != BG_EOS; pm++) 481 pm = pl; 500 for (lm = ls; (pl < pm); *lm++ = *pl++) 507 for (pl = pe + 1; (*lm++ = *pl++) != BG_EOS; ) 517 pl = pm + 1;
|
/osnet-11/usr/src/lib/libpicltree/ |
H A D | picltree.c | 3354 picld_plugin_desc_t *pl; local 3357 pl = plugin_desc; 3358 while (pl != NULL) { 3359 if (strcmp(pl->libname, name) == 0) 3362 pl = pl->next; 3365 pl = malloc(sizeof (picld_plugin_desc_t)); 3366 if (pl == NULL) 3369 pl->libname = strdup(name); 3370 if (pl 3448 picld_plugin_desc_t *pl; local [all...] |