Searched refs:got (Results 51 - 74 of 74) sorted by relevance

123

/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/Storable/t/
H A Dtied_hook.t178 $got = &dump($root);
181 ok 5, $got ne $dumped; # our hooks did not handle refs in array
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/t/op/
H A Dfork.t289 print "parent got $?"
295 parent got 10752
302 print "parent got $?"
309 parent got 0
/osnet-11/usr/src/lib/libntfs/common/libntfs/
H A Dgnome-vfs-method.c618 s64 count_s64, got; local
635 got = ntfs_attr_pread(libntfs_file->attr, libntfs_file->pos, count_s64,
638 if (got == -1)
641 libntfs_file->pos += got;
642 *bytes_read_return = got;
643 g_assert((s64)*bytes_read_return == got);
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/
H A DDBM_Filter.pm135 my @got = ();
141 push @got, 'Fetch';
150 push @got, 'Store';
165 if ( @got != 2 ) {
166 push @got, 'neither' if @got == 0 ;
167 croak "$caller: expected both Store & Fetch - got @got";
H A Doverload.t1137 my $got = eval $ocode;
1141 test ($got, $expect, $ocode) or print "# $rcode\n";
H A Dperl5db.pl44 API, but for now, the variables are what we've got.
511 C<$^E>, C<$,>, C<$/>, C<$\>, and C<$^W>, grabbed when C<DB::DB> got control,
1532 # EPOC also falls into the 'got to use STDIN' camp.
1865 # trace set appropriately, or we got a signal).
2051 # ... and we got a line of command input ...
2224 # We got it. Turn off subroutine entry/exit messages
2408 # See if we've got the necessary support.
2534 # If we got a line number, we found the sub.
2561 # got a request to break at some line somewhere. On
2842 bad one, we return the error we got fro
[all...]
H A DPerlIO.pm74 got straight to the operating system via the C library as usual.
H A Dbignum.pm278 This means somewhere a routine got a BigFloat/Lite but expected a BigInt (or
H A DMemoize.pm884 just return the same reference to the same list it got last time. But
/osnet-11/usr/src/lib/libdscfg/common/
H A Dcfg.c763 int got; local
817 got = cfg_cnt_flds(value);
828 if (got < nflds) {
829 for (/* CSTYLED */; got < nflds; got++)
831 } else if (got > nflds) {
834 /* got == nflds, so cnode was included */
933 int got; local
949 got = cfg_cnt_flds(value);
952 if (cnodepos < 0 || got >
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/
H A Dperlio.c2964 SSize_t got = 0; local
2975 got = 1;
2979 got = PerlSIO_fread(vbuf, 1, count, s);
2980 if (got == 0 && PerlSIO_ferror(s))
2981 got = -1;
2982 if (got >= 0 || errno != EINTR)
2987 return got;
3051 SSize_t got; local
3053 got = PerlSIO_fwrite(vbuf, 1, count,
3055 if (got >
3962 SSize_t got = 0; local
[all...]
H A Dutil.c3555 * century and year contributions. If we got 4 extra centuries in a qcent,
3618 /* got negative remainder, but need positive time */
3961 int got; local
4002 got = PerlLIO_write(sockets[i], &port, sizeof(port));
4003 if (got != sizeof(port)) {
4004 if (got == -1)
4029 got = PerlSock_select(max + 1, &rset, NULL, NULL, &waitfor);
4030 if (got != 2 || !FD_ISSET(sockets[0], &rset)
4033 if (got == -1)
4048 got
[all...]
H A Dpp_sys.c1549 Size_t got = 0; local
1714 /* Look at utf8 we got back and count the characters */
1730 got++;
1736 /* If we have not 'got' the number of _characters_ we 'wanted' get some more
1739 if (got < wanted && count == length) {
1740 length = wanted - got;
1745 count = got;
/osnet-11/usr/src/grub/grub2/util/
H A Dgrub-mkimagexx.c916 grub_size_t got = 0; local
1002 grub_ia64_dl_get_tramp_got_size (e, &tramp, &got);
1014 *kernel_sz += ALIGN_UP (got * sizeof (grub_uint64_t), 16);
1053 2 * ia64jmpnum + got,
/osnet-11/usr/src/cmd/sendmail/src/
H A Dusersmtp.c249 /* got a 421 error code during startup */
855 int i, r, l, got, ret; local
881 got = 0;
931 got |= 1 << r;
948 got |= 1 << r;
960 if (!(bitset(SASL_USER_BIT|SASL_AUTHID_BIT, got) &&
961 bitset(SASL_PASSWORD_BIT, got)))
965 if (!bitset(SASL_AUTHID_BIT, got))
976 if (!bitset(SASL_USER_BIT, got))
/osnet-11/usr/src/grub/grub2/grub-core/kern/ia64/
H A Ddl.c173 gpptr = (grub_uint64_t *) mod->got;
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Test/
H A DMore.pm308 # got: 'waffle'
539 WHOA! I tried to call ->isa on your object and got some weird error.
575 the case is you've got some complicated condition that is difficult to
980 ($vars[0] = $var) =~ s/\$FOO/ \$got/;
H A DHarness.pm231 # got 'Bush' expected 'Gore'
425 got a successful test.
563 print "Don't know which tests failed: got $test{ok} ok, ".
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/utils/
H A Dc2ph.PL112 So I got smart: I decided to be lazy and let the C compiler parse the C,
786 #warn "got size $size for $name\n";
1346 &panic("already got a template for $name") if defined $template{$name};
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/Devel/PPPort/
H A DPPPort.pm1012 /* Now got 9 digits, so need to check
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/I18N/LangTags/
H A DList.pm741 =item {got} : Gothic
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/Storable/
H A DStorable.pm907 If you got a precompiled perl, rather than running Configure to build
/osnet-11/usr/src/grub/grub-0.97/docs/
H A Dtexinfo.tex3848 % \endgroup where \vsize got restored).
/osnet-11/usr/src/grub/grub2/docs/
H A Dtexinfo.tex4673 % \endgroup where \vsize got restored).

Completed in 137 milliseconds

123