/osnet-11/usr/src/lib/libbsm/ |
H A D | auditxml.pm | 36 my @kid = $obj->getKids(); # kids of event are entry or allowed_types 47 my $kid; 48 foreach $kid (@kid) { 49 my $class = $kid->getClass(); 50 my $kidId = $kid->getAttr('id'); 55 my $internal = $kid->getKid('internal'); 62 my $commentKid = $kid->getKid('comment'); 66 my $external = $kid->getKid('external'); 68 $entry{$kidId} = [$external, $kid, [all...] |
H A D | xmlHandlers.pm | 112 my $kid = shift; 114 push (@{$parent->{'kids'}}, $kid); 115 # $kid->{'parent'} = $parent; 283 my $kid; 284 foreach $kid (@kids) { 285 my $class = $kid->getClass(); 286 return $kid if $class eq $whichKid;
|
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ |
H A D | op.c | 137 S_bad_type(pTHX_ I32 n, char *t, char *name, OP *kid) argument 140 (int)n, name, t, OP_DESC(kid))); 283 register OP *kid, *nextkid; local 310 for (kid = cUNOPo->op_first; kid; kid = nextkid) { 311 nextkid = kid->op_sibling; /* Get before next freeing kid */ 312 op_free(kid); 504 register OP *kid; local 528 OP *kid; local 555 OP *kid; local 625 OP *kid; local 843 OP *kid; local 854 OP *kid; local 929 OP *kid; local 956 OP *kid; local 967 OP *kid; local 1022 OP *kid = cUNOPo->op_first; local 1365 OP *kid; local 1376 OP *kid; local 1626 OP *kid; local 1799 OP *kid; local 4839 OP *kid = cUNOPo->op_first; local 4851 OP* kid; local 4877 OP *kid = cUNOPo->op_first; local 4928 SVOP *kid = (SVOP*)cUNOPo->op_first; local 4983 OP *kid; local 5000 OP *kid = cUNOPo->op_first; local 5032 SVOP *kid = (SVOP*)cUNOPo->op_first; local 5148 SVOP *kid = (SVOP*)cUNOPo->op_first; local 5176 register OP *kid; local 5488 OP *kid; local 5539 OP *kid = cLISTOPo->op_first->op_sibling; /* get past pushmark */ local 5610 register OP *kid; local 5640 OP *kid = cLISTOPo->op_first; local 5690 OP *kid = cUNOPo->op_first; local 5782 SVOP *kid = (SVOP*)cUNOPo->op_first; local 5809 OP *kid = cUNOPo->op_first; local 5825 OP *kid; local 5846 OP* kid; local 5901 OP *kid = cUNOPx(firstkid)->op_first; /* get past null */ local 5957 register OP *kid = cLISTOPo->op_first->op_sibling; /* get past pushmark */ local 6021 register OP *kid; local 6077 OP *kid = cLISTOPo->op_first->op_sibling; local 6269 OP* kid = o2; local 6318 SVOP *kid = (SVOP*)cUNOPo->op_first; local 6337 OP *kid = cLISTOPo->op_first; local [all...] |
H A D | op.h | 385 #define kUNOP cUNOPx(kid) 386 #define kBINOP cBINOPx(kid) 387 #define kLISTOP cLISTOPx(kid) 388 #define kLOGOP cLOGOPx(kid) 389 #define kPMOP cPMOPx(kid) 390 #define kSVOP cSVOPx(kid) 391 #define kPADOP cPADOPx(kid) 392 #define kPVOP cPVOPx(kid) 393 #define kCOP cCOPx(kid) 394 #define kLOOP cLOOPx(kid) [all...] |
H A D | pad.c | 1417 CV *kid = cv_clone2((CV*)ppad[ix], cv); local 1419 CvCLONE_on(kid); 1420 SvPADMY_on(kid); 1421 PL_curpad[ix] = (SV*)kid; 1423 CvWEAKOUTSIDE_on(kid);
|
H A D | pp_ctl.c | 2049 OP *kid = Nullop; local 2068 for (kid = cUNOPo->op_first; kid; kid = kid->op_sibling) { 2069 if ((kid->op_type == OP_NEXTSTATE || kid->op_type == OP_DBSTATE) && 2071 return kid; 2073 for (kid = cUNOPo->op_first; kid; ki [all...] |
H A D | dump.c | 729 OP *kid; local 730 for (kid = cUNOPo->op_first; kid; kid = kid->op_sibling) 731 do_op_dump(level, file, kid);
|
H A D | pp_sort.c | 1438 OP *kid = cLISTOP->op_first->op_sibling; /* pass pushmark */ local 1439 kid = kUNOP->op_first; /* pass rv2gv */ 1440 kid = kUNOP->op_first; /* pass leave */ 1441 PL_sortcop = kid->op_next;
|
H A D | util.c | 923 OP *kid; local 924 for (kid = cUNOPo->op_first; kid; kid = kid->op_sibling) 931 if (kid->op_type == OP_NULL && kid->op_targ == OP_NEXTSTATE) 932 cop = (COP *)kid; 936 new_cop = closest_cop(cop, kid); 1918 Perl_croak(aTHX_ "panic: kid pope [all...] |
H A D | proto.h | 985 STATIC void S_bad_type(pTHX_ I32 n, char *t, char *name, OP *kid);
|
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/B/B/ |
H A D | Deparse.pm | 884 my $kid; 891 $kid = $op->first->sibling; # skip pushmark 892 push @text, "\f".$self->const_sv($kid)->PV; 893 $kid = $kid->sibling; 894 for (; not null $kid; $kid = $kid->sibling) { 895 push @exprs, $self->deparse($kid, 0); 974 my($name, $kid, [all...] |
H A D | Concise.pm | 326 for (my $kid = $op->first; $$kid; $kid = $kid->sibling) { 327 walk_topdown($kid, $sub, $level + 1); 716 my($space, $single, $kids, $kid, $nokid, $last, $lead, $size) = @$style; 722 for (my $kid = $op->first; $$kid; $kid = $kid [all...] |
/osnet-11/usr/src/cmd/cmd-inet/usr.bin/pppd/plugins/ |
H A D | passprompt.c | 30 pid_t kid; local 45 if ((kid = fork()) == (pid_t) -1) { 51 if (kid == (pid_t)0) { 100 while (waitpid(kid, &wstat, 0) < 0) {
|
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/IPC/ |
H A D | Open2.t | 53 ok 2, print WRITE "hi kid\n"; 54 ok 3, <READ> =~ /^hi kid\r?\n$/;
|
H A D | Open3.t | 60 ok 2, print WRITE "hi kid\n"; 61 ok 3, <READ> =~ /^hi kid\r?\n$/;
|
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/utils/ |
H A D | dprofpp.PL | 562 my $kid; 564 for $kid (keys %{$deep_times->{kids}}) { 565 $kids_time += $deep_times->{kids}{$kid}{incl_time}; 570 for $kid (keys %{$deep_times->{kids}}) { 571 exclusives_in_tree($deep_times->{kids}{$kid}); 584 my $kid; 598 for $kid (sort kids_by_incl %{$deep_times->{kids}}) { 599 display_tree( $deep_times->{kids}{$kid}, $kid, $level + 1 );
|
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/t/op/ |
H A D | fork.t | 407 print "forked first kid\n"; 415 print "forked second kid\n"; 423 forked first kid 426 forked second kid
|
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/B/ |
H A D | B.pm | 123 my $kid; 125 for ($kid = $op->first; $$kid; $kid = $kid->sibling) { 126 walkoptree_slow($kid, $method, $level + 1);
|