| /onnv-gate/usr/src/cmd/perl/5.8.4/distrib/t/op/ |
| H A D | sysio.t | 70 eval { syswrite(O, $x, -1) }; 83 eval { syswrite(O, $x, 1, 3) }; 100 eval { syswrite(O, $x, 1, -4) }; 116 if (syswrite(O, $a, 2) == 2){ 137 print 'not ' unless (syswrite(O, $a, 2, 5) == 2); 152 print 'not ' unless (syswrite(O, $a, 5, -3) == 3); 167 print 'not ' unless (syswrite(O, $x) == 3); 228 syswrite I, $a; 234 eval {syswrite I, 2;};
|
| H A D | tiehandle.t | 127 $r = syswrite $fh,$buf,4,1; 134 $r = syswrite $fh,$buf,4; 141 $r = syswrite $fh,$buf;
|
| H A D | lfs.t | 2 # sysopen(), sysseek(), syswrite(), sysread() are tested in t/lib/syslfs.t.
|
| /onnv-gate/usr/src/cmd/perl/5.8.4/distrib/ext/Fcntl/t/ |
| H A D | syslfs.t | 86 syswrite(BIG, "big") or 87 do { warn "syswrite big1 failed; $!\n"; bye }; 99 syswrite(BIG, "big") or 100 do { warn "syswrite big2 failed; $!\n"; bye }; 128 my $syswrite = syswrite(BIG, "big"); 142 # The syswrite will fail if there are are filesize limitations (process or fs). 143 my $syswrite = syswrite(BIG, "big"); 144 print "# syswrite failed: $! (syswrite returned ", 145 defined $syswrite ? $syswrite : 'undef', ")\n" 146 unless defined $syswrite && $syswrite == 3; [all …]
|
| H A D | fcntl.t | 21 if (syswrite($wo, "foo") == 3) {
|
| /onnv-gate/usr/src/cmd/perl/5.8.4/distrib/ext/Socket/t/ |
| H A D | socketpair.t | 96 is (syswrite (LEFT, $_), length $_, "syswrite to left"); 100 is (syswrite (RIGHT, $_), length $_, "syswrite to right"); 139 my $ans = syswrite (LEFT, "void"); 154 is (syswrite (RIGHT, $_), length $_, "syswrite to right"); 187 is (syswrite (LEFT, $_), length $_, "syswrite to left"); 191 is (syswrite (RIGHT, $_), length $_, "syswrite to right"); 232 is (syswrite (RIGHT, $_), length $_, "syswrite to right");
|
| H A D | Socket.t | 42 syswrite(T,"hello",5); 86 syswrite(S,"olleh",5);
|
| /onnv-gate/usr/src/cmd/perl/5.8.4/distrib/t/lib/warnings/ |
| H A D | pp_sys | 39 syswrite() on closed filehandle %s [pp_send] 41 syswrite STDIN, "fred", 1; 200 syswrite STDIN, "fred", 1; 202 syswrite STDIN, "fred", 1; 205 syswrite STDIN, "fred", 1; 207 syswrite STDIN, "fred", 1; 209 syswrite() on closed filehandle STDIN at - line 4. 210 syswrite() on closed filehandle STDIN at - line 6. 211 (Are you trying to call syswrite() on dirhandle STDIN?)
|
| /onnv-gate/usr/src/uts/common/sys/ |
| H A D | sysinfo.h | 86 uint_t syswrite; /* write() + writev() system calls */ member 212 uint64_t syswrite; /* write() + writev() system calls */ member
|
| /onnv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/ |
| H A D | open.t | 133 ($c = syswrite(G, $_, 1)) == 1 &&
|
| /onnv-gate/usr/src/cmd/sa/ |
| H A D | sa.h | 109 uint64_t syswrite; member
|
| H A D | sar.c | 885 (float)xx->csi.syswrite / sec_diff, in prt_c_opt()
|
| /onnv-gate/usr/src/uts/common/syscall/ |
| H A D | rw.c | 314 CPU_STATS_ADDQ(cp, sys, syswrite, 1); in write() 594 CPU_STATS_ADDQ(cp, sys, syswrite, 1); in pwrite() 903 CPU_STATS_ADDQ(cp, sys, syswrite, 1); in writev() 1162 CPU_STATS_ADDQ(cp, sys, syswrite, 1); in pwrite64()
|
| /onnv-gate/usr/src/cmd/perl/5.8.4/distrib/t/io/ |
| H A D | utf8.t | 308 syswrite(F, $a = chr(0x100));
|
| /onnv-gate/usr/src/uts/common/os/ |
| H A D | cpu.c | 199 kstat_named_t syswrite; member 3224 csskd->syswrite.value.ui64 = css->syswrite; in cpu_sys_stats_ks_update() 3362 cso->cpu_sysinfo.syswrite = CPU_STATS(cp, sys.syswrite); in cpu_stat_ks_update()
|
| /onnv-gate/usr/src/cmd/perl/5.8.4/distrib/pod/ |
| H A D | perl584delta.pod | 202 C<syswrite> and interact with utf8 data. Concatenation now works correctly
|
| H A D | perldelta.pod | 202 C<syswrite> and interact with utf8 data. Concatenation now works correctly
|
| H A D | perlfaq5.pod | 13 insofar as you can C<syswrite(OUT, $char, 1)>), although it 22 normally buffer output, while syswrite() bypasses buffering 606 anyone else's output. You can also use the syswrite() function which is
|
| H A D | perl581delta.pod | 973 =head2 Win32: sysopen, sysread, syswrite 975 As of the 5.8.0 release, sysopen()/sysread()/syswrite() do not behave 983 then, the use of sysopen(), sysread() and syswrite() is not supported
|
| H A D | perl.pod | 426 and syswrite().)
|
| H A D | perlopentut.pod | 788 enough, even unbuffered I/O using C<sysread> and C<syswrite> might do 792 syswrite(WHITHER, $buf, length($buf));
|
| H A D | perlfaq8.pod | 420 sometimes avoid this by using syswrite() instead of print(). 432 syswrite(STDERR, "ouch\n", 5);
|
| H A D | perlsec.pod | 47 Arguments to C<print> and C<syswrite> are B<not> checked for taintedness.
|
| H A D | perl56delta.pod | 644 =head2 syswrite() ease-of-use 646 The length argument of C<syswrite()> has become optional. 1055 write() and syswrite() will now accept a single-argument 1056 form of the call, for consistency with Perl's syswrite().
|
| /onnv-gate/usr/src/cmd/perl/contrib/Sun/Solaris/Kstat/ |
| H A D | Kstat.xs | 213 SAVE_UINT32(self, sysinfop, syswrite); in save_cpu_stat()
|