HomeSort by relevance Sort by last modified time
    Searched defs:write (Results 326 - 350 of 4398) sorted by null

<<11121314151617181920>>

  /libcore/ojluni/src/main/java/java/io/
PipedOutputStream.java 18 * 2 along with this work; if not, write to the Free Software Foundation,
49 /* REMIND: identification of the read and write sides needs to be
111 * Implements the <code>write</code> method of <code>OutputStream</code>.
118 public void write(int b) throws IOException { method in class:PipedOutputStream
133 * @param len the number of bytes to write.
138 public void write(byte b[], int off, int len) throws IOException { method in class:PipedOutputStream
  /libcore/ojluni/src/main/java/java/nio/channels/
AsynchronousSocketChannel.java 18 * 2 along with this work; if not, write to the Free Software Foundation,
56 * and one write operation can be outstanding at any time.
59 * attempt to initiate a write operation before a previous write has completed
97 * and {@link #write(ByteBuffer,long,TimeUnit,Object,CompletionHandler) write}
99 * a read or write operation. If the timeout elapses before an operation completes
106 * exception to be thrown. Similarly if a {@code write} operation times out and
108 * channel then further attempts to {@code write} to the channel cause an
246 * <p> Once shutdown for writing then further attempts to write to th
558 public abstract <A> void write(ByteBuffer src, method in class:AsynchronousSocketChannel
572 public final <A> void write(ByteBuffer src, method in class:AsynchronousSocketChannel
577 write(src, 0L, TimeUnit.MILLISECONDS, attachment, handler); method
586 public abstract Future<Integer> write(ByteBuffer src); method in class:AsynchronousSocketChannel
660 public abstract <A> void write(ByteBuffer[] srcs, method in class:AsynchronousSocketChannel
    [all...]
  /libcore/ojluni/src/main/java/java/nio/file/attribute/
UserDefinedFileAttributeView.java 18 * 2 along with this work; if not, write to the Free Software Foundation,
45 * {@link #read read} and {@link #write write} methods to read the value into
46 * or write from a {@link ByteBuffer}. This {@code FileAttributeView} is not
65 * to write the value of a user-defined attribute from a buffer (as if by
66 * invoking the {@link #write write} method), or byte array (byte[]).
190 * Suppose we want to write a file's MIME type as a user-defined attribute:
194 * view.write("user.mimetype", Charset.defaultCharset().encode("text/html"));
211 * method denies write access to the file
213 int write(String name, ByteBuffer src) throws IOException; method in interface:UserDefinedFileAttributeView
    [all...]
  /libcore/ojluni/src/main/java/javax/crypto/
CipherOutputStream.java 18 * 2 along with this work; if not, write to the Free Software Foundation,
32 * that write() methods first process the data before writing them out
119 public void write(int b) throws IOException { method in class:CipherOutputStream
123 output.write(obuffer);
132 * The <code>write</code> method of
133 * <code>CipherOutputStream</code> calls the <code>write</code>
140 * @see javax.crypto.CipherOutputStream#write(byte[], int, int)
143 public void write(byte b[]) throws IOException { method in class:CipherOutputStream
144 write(b, 0, b.length); method
153 * @param len the number of bytes to write
157 public void write(byte b[], int off, int len) throws IOException { method in class:CipherOutputStream
    [all...]
  /libcore/ojluni/src/main/java/sun/misc/
BASE64Decoder.java 18 * 2 along with this work; if not, write to the Free Software Foundation,
149 outStream.write( (byte)(((a << 2) & 0xfc) | ((b >>> 4) & 3)) );
152 outStream.write( (byte) (((a << 2) & 0xfc) | ((b >>> 4) & 3)) );
153 outStream.write( (byte) (((b << 4) & 0xf0) | ((c >>> 2) & 0xf)) );
156 outStream.write( (byte) (((a << 2) & 0xfc) | ((b >>> 4) & 3)) );
157 outStream.write( (byte) (((b << 4) & 0xf0) | ((c >>> 2) & 0xf)) );
158 outStream.write( (byte) (((c << 6) & 0xc0) | (d & 0x3f)) );
  /libcore/ojluni/src/main/java/sun/nio/ch/
DatagramDispatcher.java 18 * 2 along with this work; if not, write to the Free Software Foundation,
35 * for read and write operations.
50 int write(FileDescriptor fd, long address, int len) throws IOException { method in class:DatagramDispatcher
NativeDispatcher.java 18 * 2 along with this work; if not, write to the Free Software Foundation,
32 * for read and write operations.
58 abstract int write(FileDescriptor fd, long address, int len) method in class:NativeDispatcher
  /libcore/ojluni/src/main/java/sun/security/x509/
CertificatePolicyMap.java 18 * 2 along with this work; if not, write to the Free Software Foundation,
94 * Write the CertificatePolicyMap to the DerOutputStream.
96 * @param out the DerOutputStream to write the object to.
104 out.write(DerValue.tag_Sequence,tmp);
CertificatePolicySet.java 18 * 2 along with this work; if not, write to the Free Software Foundation,
92 out.write(DerValue.tag_Sequence,tmp);
  /libcore/support/src/test/java/libcore/java/io/
NullPrintStream.java 60 public void write(byte[] buffer, int offset, int length) {} method in class:NullPrintStream
61 public void write(int oneByte) {} method in class:NullPrintStream
  /libcore/support/src/test/java/tests/support/
Support_ASimpleOutputStream.java 55 // public void write(byte buffer[]) throws IOException {
60 // write(buffer[i]);
65 // public void write(byte buffer[], int offset, int count) throws IOException {
73 // write(buffer[i]);
78 public void write(int oneByte) throws IOException { method in class:Support_ASimpleOutputStream
  /packages/apps/Bluetooth/src/com/android/bluetooth/gatt/
AdvertiseHelper.java 69 ret.write(nameLength + 1);
70 ret.write(type);
71 ret.write(nameBytes, 0, nameLength);
90 ret.write(concated.length + 1);
91 ret.write(MANUFACTURER_SPECIFIC_DATA);
92 ret.write(concated, 0, concated.length);
96 ret.write(2 /* Length */);
97 ret.write(TX_POWER_LEVEL);
98 ret.write(0); // lower layers will fill this value.
110 serviceUuids16.write(uuid, 0, uuid.length)
    [all...]
  /packages/apps/Dialer/java/com/android/voicemail/impl/mail/utility/
EOLConvertingOutputStream.java 30 public void write(int oneByte) throws IOException { method in class:EOLConvertingOutputStream
33 super.write('\r');
36 super.write(oneByte);
43 super.write('\n');
  /packages/apps/Launcher3/src/com/android/launcher3/util/
IOUtils.java 50 to.write(buf, 0, r);
  /packages/apps/Messaging/src/android/support/v7/mms/pdu/
QuotedPrintable.java 58 buffer.write((char) ((u << 4) + l));
63 buffer.write(b);
  /packages/apps/Messaging/src/com/android/messaging/mmslib/pdu/
QuotedPrintable.java 58 buffer.write((char) ((u << 4) + l));
63 buffer.write(b);
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/
CopyUtils.java 110 * Methods renamed to IOUtils.write() or IOUtils.copy().
134 * @param output the <code>OutputStream</code> to write to
139 output.write(input);
151 * @param output the <code>Writer</code> to write to
165 * @param output the <code>Writer</code> to write to
189 * @param output the <code>OutputStream</code> to write to
201 output.write(buffer, 0, n);
214 * @param output the <code>Writer</code> to write to
226 output.write(buffer, 0, n);
241 * @param output the <code>Writer</code> to write t
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/bsddb/
dbrecio.py 3 File-like objects that read from or write to a bsddb record.
16 f.write(buf) # write at current position
17 f.writelines(list) # for line in list: f.write(line)
126 def write(self, s): member in class:DBRecIO
138 self.write(string.joinfields(list, ''))
158 f.write(line)
161 raise RuntimeError, 'write failed'
165 f.write(lines[1])
  /prebuilts/gdb/darwin-x86/lib/python2.7/
code.py 121 The output is written by self.write(), below.
139 map(self.write, list)
146 The output is written by self.write(), below.
162 map(self.write, list)
164 def write(self, data): member in class:InteractiveInterpreter
165 """Write a string.
171 sys.stderr.write(data)
221 self.write("Python %s on %s\n%s\n(%s)\n" %
225 self.write("%s\n" % str(banner))
240 self.write("\n"
    [all...]
quopri.py 43 """Read 'input', apply quoted-printable encoding, and write to 'output'.
45 'input' and 'output' are files with readline() and write() methods.
56 output.write(odata)
59 def write(s, output=output, lineEnd='\n'): function in function:encode
63 output.write(s[:-1] + quote(s[-1]) + lineEnd)
65 output.write(quote(s) + lineEnd)
67 output.write(s + lineEnd)
88 # First, write out the previous line
90 write(prevline)
97 write(thisline[:MAXLINESIZE-1], lineEnd='=\n'
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/
OutputWindow.py 37 def write(self, s, tags=(), mark="insert"): member in class:OutputWindow
52 self.write(line)
137 def write(self, s, tags, mark): member in class:OnDemandOutputWindow
140 self.owin.write(s, tags, mark)
149 self.write = self.owin.write
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_print.py 117 def write(self, what): member in class:TestPrint.test_mixed_args.Recorder
  /prebuilts/gdb/linux-x86/lib/python2.7/bsddb/
dbrecio.py 3 File-like objects that read from or write to a bsddb record.
16 f.write(buf) # write at current position
17 f.writelines(list) # for line in list: f.write(line)
126 def write(self, s): member in class:DBRecIO
138 self.write(string.joinfields(list, ''))
158 f.write(line)
161 raise RuntimeError, 'write failed'
165 f.write(lines[1])
  /prebuilts/gdb/linux-x86/lib/python2.7/
code.py 121 The output is written by self.write(), below.
139 map(self.write, list)
146 The output is written by self.write(), below.
162 map(self.write, list)
164 def write(self, data): member in class:InteractiveInterpreter
165 """Write a string.
171 sys.stderr.write(data)
221 self.write("Python %s on %s\n%s\n(%s)\n" %
225 self.write("%s\n" % str(banner))
240 self.write("\n"
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/idlelib/
OutputWindow.py 37 def write(self, s, tags=(), mark="insert"): member in class:OutputWindow
52 self.write(line)
137 def write(self, s, tags, mark): member in class:OnDemandOutputWindow
140 self.owin.write(s, tags, mark)
149 self.write = self.owin.write

Completed in 730 milliseconds

<<11121314151617181920>>