Searched refs:kid (Results 1 - 18 of 18) sorted by relevance

/osnet-11/usr/src/lib/libbsm/
H A Dauditxml.pm36 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 DxmlHandlers.pm112 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 Dop.c137 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 Dop.h385 #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 Dpad.c1417 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 Dpp_ctl.c2049 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 Ddump.c729 OP *kid; local
730 for (kid = cUNOPo->op_first; kid; kid = kid->op_sibling)
731 do_op_dump(level, file, kid);
H A Dpp_sort.c1438 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 Dutil.c923 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 Dproto.h985 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 DDeparse.pm884 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 DConcise.pm326 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 Dpassprompt.c30 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 DOpen2.t53 ok 2, print WRITE "hi kid\n";
54 ok 3, <READ> =~ /^hi kid\r?\n$/;
H A DOpen3.t60 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 Ddprofpp.PL562 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 Dfork.t407 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 DB.pm123 my $kid;
125 for ($kid = $op->first; $$kid; $kid = $kid->sibling) {
126 walkoptree_slow($kid, $method, $level + 1);

Completed in 81 milliseconds