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

/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/IPC/SysV/
H A DMsg.pm39 @_ == 3 || croak 'new IPC::Msg ( KEY , FLAGS )';
88 @_ <= 5 && @_ >= 3 or croak '$msg->rcv( BUF, LEN, TYPE, FLAGS )';
99 @_ <= 4 && @_ >= 3 or croak '$msg->snd( TYPE, BUF, FLAGS )';
136 =item new ( KEY , FLAGS )
150 associated with it, and C<I<FLAGS> & IPC_CREAT> is true.
154 On creation of a new message queue C<FLAGS> is used to set the
161 =item rcv ( BUF, LEN [, TYPE [, FLAGS ]] )
185 =item snd ( TYPE, MSG [, FLAGS ] )
H A DSemaphore.pm36 @_ == 4 || croak 'new ' . __PACKAGE__ . '( KEY, NSEMS, FLAGS )';
182 =item new ( KEY , NSEMS , FLAGS )
196 associated with it, and C<I<FLAGS> & IPC_CREAT> is true.
200 On creation of a new semaphore set C<FLAGS> is used to set the
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/Devel/Peek/
H A DPeek.pm114 If C<use Devel::Peek> directive has a C<:opd=FLAGS> argument,
115 this switches on debugging of opcode dispatch. C<FLAGS> should be a
221 FLAGS = (POK,pPOK)
232 If the FLAGS had been IOK we would look
250 FLAGS = (IOK,pIOK)
271 FLAGS = (IOK,pIOK)
291 FLAGS = (ROK)
295 FLAGS = (IOK,pIOK)
321 FLAGS = (ROK)
325 FLAGS
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/B/B/
H A DBytecode.pm84 asm "newsvx", $sv->FLAGS;
101 asm "sv_flags", $gv->FLAGS;
136 asm "newsvx", $gv->FLAGS;
156 asm "sv_flags", $hv->FLAGS;
164 asm "newsvx", $hv->FLAGS;
237 asm "xiv", !ITHREADS && $sv->FLAGS & (SVf_FAKE|SVf_READONLY) ?
392 asm "sv_flags", $v->FLAGS;
H A DC.pm301 # confess "Can't save RV: not ROK" unless $sv->FLAGS & SVf_ROK;
313 my $rok = $sv->FLAGS & SVf_ROK;
314 my $pok = $sv->FLAGS & SVf_POK;
630 $svsect->add(sprintf("0, %u, 0x%x", $sv->REFCNT , $sv->FLAGS));
640 $xpvivsect->index, $sv->REFCNT , $sv->FLAGS));
652 $xpvnvsect->index, $sv->REFCNT , $sv->FLAGS));
691 $xpvlvsect->index, $sv->REFCNT , $sv->FLAGS));
707 $xpvivsect->index, $sv->REFCNT , $sv->FLAGS));
725 $xpvnvsect->index, $sv->REFCNT , $sv->FLAGS));
743 $xpvbmsect->index, $sv->REFCNT , $sv->FLAGS));
[all...]
H A DDebug.pm122 printf <<'EOT', class($sv), $$sv, $sv->REFCNT, $sv->FLAGS;
125 FLAGS 0x%x
H A DStackobj.pm250 my $svflags = $sv->FLAGS;
H A DConcise.pm513 if $hr->{svclass} eq "IV" and $sv->FLAGS & SVf_IVisUV;
532 } elsif ($sv->FLAGS & SVf_NOK) {
534 } elsif ($sv->FLAGS & SVf_IOK) {
536 } elsif ($sv->FLAGS & SVf_POK) {
567 if ($padname->FLAGS & SVf_FAKE) {
H A DLint.pm257 if( $sv->FLAGS & SVf_POK && exists &{$curstash.'::'.$sv->PV} ) {
H A DXref.pm285 (class($sv) ne "SPECIAL" && $sv->FLAGS & SVf_POK)
H A DDeparse.pm829 if ($cv->FLAGS & SVf_POK) {
1282 next if $ns[$i]->FLAGS & SVpad_OUR; # Skip "our" vars
1289 ($ns[$i]->FLAGS & SVf_FAKE)
3108 $proto = $gv->CV->PV if $gv->CV->FLAGS & SVf_POK;
3427 if ($sv->FLAGS & SVs_RMG) {
3433 if ($sv->FLAGS & SVf_IOK) {
3437 } elsif ($sv->FLAGS & SVf_NOK) {
3484 } elsif ($sv->FLAGS & SVf_ROK && $sv->can("RV")) {
3498 if ($ref->FLAGS & SVs_SMG) {
3508 } elsif ($sv->FLAGS
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/POSIX/t/
H A Dsigaction.t58 if($oldaction->{FLAGS}) {
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/POSIX/
H A DPOSIX.pm57 sub new { bless {HANDLER => $_[1], MASK => $_[2], FLAGS => $_[3] || 0, SAFE => 0}, $_[0] }
964 sub flags { $_[0]->{FLAGS} = $_[1] if @_ > 1; $_[0]->{FLAGS} };
H A DPOSIX.xs1316 svp = hv_fetch(oldaction, "FLAGS", 5, TRUE);
1367 svp = hv_fetch(action, "FLAGS", 5, FALSE);
/osnet-11/usr/src/lib/libast/common/tm/
H A Dtmxdate.c66 #define FLAGS(f) (f&EXACT)?"|EXACT":"",(f&LAST)?"|LAST":"",(f&THIS)?"|THIS":"",(f&NEXT)?"|NEXT":"",(f&ORDINAL)?"|ORDINAL":"",(f&FINAL)?"|FINAL":"",(f&WORK)?"|WORK":"" macro
231 message((-1, "AHA#%d state=" FFMT " set=" FFMT, __LINE__, FLAGS(state), FLAGS(set)));
829 message((-1, "AHA#%d f=%d n=%d state=" FFMT, __LINE__, f, n, FLAGS(state)));
1309 message((-1, "AHA#%d n=%d j=%d f=%d state=" FFMT, __LINE__, n, j, f, FLAGS(state)));
1352 message((-1, "AHA#%d f=%d n=%d i=%d j=%d k=%d l=%d m=%d state=" FFMT, __LINE__, f, n, i, j, k, l, m, FLAGS(state)));
1452 message((-1, "AHA#%d day=%d mday=%d f=%d m=%d j=%d state=" FFMT, __LINE__, day, tm->tm_mday, f, m, j, FLAGS(state)));
1688 message((-1, "AHA#%d day=%d dir=%d state=" FFMT, __LINE__, day, dir, FLAGS(state)));
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/B/
H A DB.pm84 return (($self->FLAGS() & SVf_IVisUV()) ? $self->UVX : $self->IV);
571 =item FLAGS
591 if C<FLAGS & SVf_IVisUV>. Perhaps you want the
682 =item FLAGS
776 =item FLAGS
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/
H A Dperl5db.pl111 =head2 FLAGS, FLAGS, FLAGS

Completed in 1702 milliseconds