Searched refs:written (Results 1 - 25 of 97) sorted by relevance

1234

/osnet-11/usr/src/cmd/perl/5.8.4/distrib/t/io/
H A Dtell.t101 my $written = "tell_write.txt";
103 END { unlink($written) }
106 open($tst,">$written") || die "Cannot open $written:$!";
121 open($tst,"+>>$written") || die "Cannot open $written:$!";
146 open($tst,">$written") || die "Cannot open $written:$!";
149 open($tst,">>$written") || die "Cannot open $written
[all...]
/osnet-11/usr/src/lib/libresolv2/common/bsd/
H A Dwritev.c73 int written = write(fd, vp->iov_base, vp->iov_len); local
75 if (written < 0)
77 count += written;
78 if (written != vp->iov_len)
/osnet-11/usr/src/lib/libast/common/sfio/
H A Dsfflsbuf.c35 int c; /* if c>=0, c is also written out */
38 ssize_t n, w, written; local
49 for(written = 0;; f->mode &= ~SF_LOCK)
99 written += w;
105 { if(written > 0) /* some buffer was cleared */
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/DBM_Filter/
H A Dnull.pm36 This filter ensures that all data written to the DBM file is null
41 all data written to the DBM file can be read by the C application.
H A Dcompress.pm38 This DBM filter will compress all data before it is written to the database
H A Dutf8.pm38 This Filter will ensure that all data written to the DBM will be encoded
/osnet-11/usr/src/lib/libc/port/stdio/
H A Dfwrite.c97 ssize_t written = 0; local
126 * written is in bytes until the return.
133 return (written / size);
137 written += n;
140 written += n;
141 return (written / size);
/osnet-11/usr/src/lib/libntfs/common/libntfs/
H A Ddevice.c268 * On success, return the number of successfully written bytes. If this number
271 * is partial. 0 means nothing was written (also return 0 when @count is 0).
273 * On error and nothing has been written, return -1 with errno set
280 s64 written, total; local
311 for (total = 0; count; count -= written, total += written) {
312 written = _pwrite(dev, (const char*)b + total, count,
315 if (written > 0)
318 * If nothing written or error return number of bytes written
429 s64 written, i; local
[all...]
H A Drunlist.c1110 * On success, return the number of successfully written bytes. If this number
1113 * is partial. 0 means nothing was written (also return 0 when @count is 0).
1115 * On error and nothing has been written, return -1 with errno set
1122 s64 written, to_write, ofs, total; local
1152 written = to_write / sizeof(unsigned long);
1153 for (t = 0; t < written; t++) {
1183 written = ntfs_pwrite(vol->u.dev, (rl->lcn <<
1187 written = to_write;
1189 if (written > 0) {
1190 total += written;
1224 s64 written, size, end = pos + count; local
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/ExtUtils/t/
H A Drecurs.t55 ok( -e $makefile, 'Makefile written' );
56 ok( -e File::Spec->catfile('prj2',$makefile), 'sub Makefile written' );
78 ok( -e $makefile, 'Makefile written' );
79 ok( !-e File::Spec->catfile('prj2',$makefile), 'sub Makefile not written' );
104 ok( -e $makefile, 'Makefile written' );
105 ok( -e $submakefile, 'sub Makefile written' );
/osnet-11/usr/src/cmd/sendmail/libmilter/
H A Dcomm.c226 ** until all the data is written out or an error occurs.
236 ** success: number of bytes written
248 ssize_t n, written; local
251 written = 0;
260 return written;
288 written += n;
301 return written;
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/B/B/
H A DTerse.pm85 first written, much more information in OPs has migrated to the
93 The original version of B::Terse was written by Malcolm Beattie,
94 E<lt>mbeattie@sable.ox.ac.ukE<gt>. This wrapper was written by Stephen
/osnet-11/usr/src/cmd/hal/hald/
H A Dhald.c244 ssize_t written; local
253 written = write (sigterm_unix_signal_pipe_fds[1], marker, 1);
330 /* written from handle_sigchld */
474 ssize_t written; local
528 written = write (pf, pid, strlen(pid));
612 ssize_t written; local
623 written = write (startup_daemonize_pipe[1], buf, sizeof (buf));
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/Storable/
H A DMakefile.PL50 variables. If you have existing data written with an earlier version of
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/File/
H A DCompare.pm174 File::Compare was written by Nick Ing-Simmons.
175 Its original documentation was written by Chip Salzenberg.
H A DSpec.pm50 written by Andreas KE<ouml>nig, Andy Dougherty, Charles Bailey, Ilya
246 Based on code written by Shigio Yamaguchi.
275 Based on code written by Shigio Yamaguchi.
297 <wegner_thomas@yahoo.com>. abs2rel() and rel2abs() written by Shigio
/osnet-11/usr/src/cmd/ntfsprogs/
H A Dntfscat.c338 s64 bytes_read, written; local
379 written = fwrite(buffer, 1, bytes_read, stdout);
380 if (written != bytes_read) {
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/ExtUtils/
H A DPacklist.pm202 scalar, the entry written to the .packlist by any subsequent write() will be a
203 simple filename. If the value is a hash, the entry written will be the
229 This takes an optional parameter, the name of the .packlist to be written. If
/osnet-11/usr/src/lib/libsasl/lib/
H A Dcheckpw.c29 * prior written permission. For permission or any other legal
350 * until all the data is written out or an error occurs.
356 int written = 0; local
375 if (!iovcnt) return written;
387 written += n;
399 if (i == iovcnt) return written;
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/
H A DDBM_Filter.pm282 by some user-defined code just before it is written to the DBM file and
379 key/value is written to the database and the code reference associated
384 to all strings before they are written to the DBM file, and removes the
506 This module will ensure that all data written to the DBM will be encoded
517 This filter will compress all data before it is written to the database
529 This module ensures that all data written to the DBM file is null
534 all data written to the DBM file can be read by the C application.
543 possible to retrieve all data that you have written when the DBM filter
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/
H A Dminimod.pl119 This whole module is written when perl itself is built from a script
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/Storable/t/
H A Dinterwork56.t100 # However, as the file is written with Storable pre 2.01, it's a known
106 qr/^This file was written with [0-9.]+ on perl [0-9.]+\z/,
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/pod/
H A Dpodselect.PL105 Based on code for B<Pod::Text::pod2text(1)> written by
H A Dpod2man.PL122 given, the formatted output is written to STDOUT. Several POD files can be
287 The name of the program being documented is conventionally written in bold
289 Arguments should be written in italics (IE<lt>E<gt>). Functions are
290 traditionally written in italics; if you write a function as function(),
303 historically written in the rather startling ALL UPPER CASE format, although
360 B<--section> can also be written as B<-s>, the above would be:
/osnet-11/usr/src/lib/libc/capabilities/sun4u-opl/common/
H A Dmemcpy.s821 ! At least one, and possibly all, of these need to be written.
969 ! %o2 I/O count (number of bytes that need to be written)
970 ! %o3 I Not written. If zero, then SRC is double aligned.
971 ! %o4 I Not written. Holds fprs.
972 ! %o5 O The number of doubles that remain to be written.
1004 ! Some bytes will be loaded that won't yet be written.
1145 ! %o2 I/O count (number of bytes that need to be written)
1146 ! %o3 I Not written. If zero, then SRC is double aligned.
1147 ! %o4 I Not written. Holds fprs.
1148 ! %o5 O The number of doubles that remain to be written
[all...]

Completed in 80 milliseconds

1234