HomeSort by relevance Sort by last modified time
    Searched defs:write (Results 1 - 25 of 67) sorted by null

1 2 3

  /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/Net/FTP/
I.pm 2 ## Package to read/write on BINARY data connections
47 sub write { subroutine
50 my $size = shift || croak 'write($buf,$size,[$timeout])';
54 # when we write. This can happen if the disk on the remote server fills up
A.pm 2 ## Package to read/write on ASCII data connections
68 sub write { subroutine
71 my $size = shift || croak 'write($buf,$size,[$timeout])';
77 # when we write. This can happen if the disk on the remote server fills up
  /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/t/lib/
TieIn.pm 7 sub write { subroutine
  /onnv/onnv-gate/usr/src/lib/libbc/libc/sys/4.2/
write.c 45 write(int fd, char *buf, int size) function
62 (void) fprintf(stderr, "write: malloc failed\n");
  /onnv/onnv-gate/usr/src/lib/libbc/libc/sys/sys5/
write.c 41 write(int fd, char *buf, int size) function
58 (void) fprintf(stderr, "write: malloc failed\n");
  /onnv/onnv-gate/usr/src/lib/libslp/javalib/com/sun/slp/
StderrLog.java 39 * This class does not actually write anything until the flush() method
40 * in invoked; this will write the concatenation of all messages
41 * passed to the write() method since the last invokation of flush().
57 public void write(char[] cbuf, int off, int len) throws IOException { method in class:StderrLog
Syslog.java 42 * This class does not actually write anything until the flush() method
43 * in invoked; this will write the concatenation of all messages
44 * passed to the write() method since the last invokation of flush().
67 public void write(char[] cbuf, int off, int len) throws IOException { method in class:Syslog
SDAAdvert.java 205 baos.write((byte)(auth.size() & 0xFF)); // auth block count
211 baos.write((byte)0);
232 baos.write((byte) ((i >> 24) & 0xFF));
233 baos.write((byte) ((i >> 16) & 0xFF));
234 baos.write((byte) ((i >> 8) & 0xFF));
235 baos.write((byte) (i & 0XFF));
SSrvMsg.java 164 // Write out size.
172 // Write out the members of the list, including the lifetime.
213 baos.write(bytes, 2, bytes.length - 2);
SLPHeaderV1.java 271 fin.write(payload, 0, payload.length);
288 baos.write((byte) (0xFF & version));
290 baos.write((byte) (0xFF & functionCode));
317 baos.write((byte) (0xFF & flags));
319 baos.write((byte) (0xFF & 0)); // dialect...
324 baos.write((byte) (0xFF & language.charAt(0)));
325 baos.write((byte) (0xFF & language.charAt(1)));
343 // Write the body.
345 baos.write(npayload, 0, npayload.length);
  /onnv/onnv-gate/usr/src/lib/libparted/common/libparted/fs/reiserfs/
geom_dal.h 46 int (*write)(dal_t *, void *, blk_t, blk_t); member in struct:dal_ops
  /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/ExtUtils/
Packlist.pm 118 sub write($;$) subroutine
180 $pl->write('/a/new/.packlist');
190 Functions are provided to read and write .packlist files. The original
202 scalar, the entry written to the .packlist by any subsequent write() will be a
227 =item write()
  /onnv/onnv-gate/usr/src/cmd/cmd-inet/usr.sadm/dhcpmgr/com/sun/dhcpmgr/ui/
ImageButton.java 61 out.write(buffer, 0, n);
  /onnv/onnv-gate/usr/src/lib/libpicltree/
picltree.h 73 int (*write)(ptree_warg_t *arg, const void *buf); member in struct:__anon3910
  /onnv/onnv-gate/usr/src/uts/common/zmod/
inffast.c 35 Decode literal, length, and distance codes and write out the resulting
84 unsigned write; /* window write index */ local
111 write = state->write;
197 if (write == 0) { /* very common case */
207 else if (write < op) { /* wrap around window */
208 from += wsize + write - op;
209 op -= write;
216 if (write < len) { /* some from start of window *
    [all...]
inflate.h 46 LIT, /* o: waiting for output space to write literal */
93 unsigned write; /* window write index */ member in struct:inflate_state
  /onnv/onnv-gate/usr/src/cmd/man/src/util/nsgmls.src/lib/
OutputCharStream.cxx 28 OutputCharStream &OutputCharStream::write(const Char *s, size_t n) function in class:SP_NAMESPACE::OutputCharStream
240 os_->write(start, p - start);
246 os_->write(start, p - start);
255 os_->write(start, p - start);
  /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/ext/IO/lib/IO/
Handle.pm 134 =item $io->write ( BUF, LEN [, OFFSET ] )
136 This C<write> is like C<write> found in C, that is it is the
137 opposite of read. The wrapper for the perl C<write> function is
439 sub write { subroutine
440 @_ >= 2 && @_ <= 4 or croak 'usage: $io->write(BUF [, LEN [, OFFSET]])';
569 @_ < 3 || croak 'usage: $io->write( [FORMAT_NAME] )';
573 CORE::write($io);
576 CORE::write($_[0]);
  /onnv/onnv-gate/usr/src/uts/common/syscall/
rw.c 60 * read, write, pread, pwrite, readv, and writev syscalls.
109 * to avoid a deadlock with write() calls.
212 write(int fdes, void *cbuf, size_t count) function
268 * We raise psignal if write for >0 bytes causes
283 * We return EFBIG if write is done at an offset
385 * Limit offset such that we don't read or write
523 * Take appropriate action if we are trying to write above the
583 * The pwrite() function shall be equivalent to write(), except
867 * Behaviour is same as write. Please see comments for write
    [all...]
  /onnv/onnv-gate/usr/src/cmd/sgs/rtld/common/
external.c 651 write(int fd, const void *buf, size_t size) function
  /onnv/onnv-gate/usr/src/lib/libntfs/common/include/ntfs/
device.h 18 * distribution in the file COPYING); if not, write to the Free Software
93 s64 (*write)(struct ntfs_device *dev, const void *buf, s64 count); member in struct:ntfs_device_operations
  /onnv/onnv-gate/usr/src/lib/libldap4/common/
search.c 918 char *read, *write; local
921 for (read = write = start; *read; *write++ = *read++) {
936 *write = '\0';
937 return (write-start);
  /onnv/onnv-gate/usr/src/uts/common/io/chxge/com/
cphy.h 37 int (*write)(adapter_t *adapter, int phy_addr, int mmd_addr, member in struct:mdio_ops
99 /* Convenience MDIO read/write wrappers */
134 phy->mdio_write = mdio_ops->write;
  /onnv/onnv-gate/usr/src/lib/libparted/common/include/parted/
device.h 110 int (*write) (PedDevice* dev, const void* buffer, member in struct:_PedDeviceArchOps
  /onnv/onnv-gate/usr/src/lib/libast/amd64/include/ast/
error.h 128 int fd; /* write(2) fd */
131 ssize_t (*write) __PROTO__((int, const __V_*, size_t)); /* error output */ member in struct:Error_info_s

Completed in 3900 milliseconds

1 2 3