HomeSort by relevance Sort by last modified time
    Searched full:outputstream (Results 401 - 425 of 1609) sorted by null

<<11121314151617181920>>

  /libcore/luni/src/main/java/java/io/
DataOutputStream.java 26 * Wraps an existing {@link OutputStream} and writes big-endian typed data to it.
42 * Constructs a new {@code DataOutputStream} on the {@code OutputStream}
50 public DataOutputStream(OutputStream out) {
OutputStreamWriter.java 40 private final OutputStream out;
54 public OutputStreamWriter(OutputStream out) {
73 public OutputStreamWriter(OutputStream out, final String charsetName)
99 public OutputStreamWriter(OutputStream out, Charset cs) {
117 public OutputStreamWriter(OutputStream out, CharsetEncoder charsetEncoder) {
  /libcore/luni/src/test/java/libcore/java/io/
OldBufferedOutputStreamTest.java 23 import java.io.OutputStream;
28 private java.io.OutputStream os;
122 OutputStream bos = new BufferedOutputStream(new ByteArrayOutputStream());
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/message/
Multipart.java 24 import java.io.OutputStream;
166 * @see org.apache.james.mime4j.message.Body#writeTo(java.io.OutputStream)
168 public void writeTo(OutputStream out) throws IOException {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/draw9patch/
Draw9PatchEditor.java 144 ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
145 loader.save(outputStream, SWT.IMAGE_PNG);
146 byte[] byteArray = outputStream.toByteArray();
  /prebuilts/tools/common/m2/repository/org/sonatype/gshell/gshell-io/2.4/
gshell-io-2.4.jar 
  /external/javassist/src/main/javassist/tools/web/
Webserver.java 196 OutputStream out = new BufferedOutputStream(clnt.getOutputStream());
236 public void doReply(InputStream in, OutputStream out, String cmd)
329 private boolean letUsersSendClassfile(OutputStream out,
357 private void sendHeader(OutputStream out, long dataLength, int filetype)
380 private void replyError(OutputStream out, BadHttpRequest e)
  /frameworks/base/core/java/android/os/
MemoryFile.java 24 import java.io.OutputStream;
179 * Creates a new OutputStream for writing to the memory file.
181 @return OutputStream
183 public OutputStream getOutputStream() {
330 private class MemoryOutputStream extends OutputStream {
  /packages/apps/Gallery2/jni_jpegstream/src/
jpegstream.cpp 300 "(Ljava/io/OutputStream;IIII)I", (void*) OutputStream_setup }, {
342 // cache method IDs for OutputStream
343 jclass outCls = env->FindClass("java/io/OutputStream");
345 LOGE("Unable to find class 'OutputStream'");
350 LOGE("Unable to find write function in class 'OutputStream'");
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/sonatype/plexus/plexus-build-api/0.0.4/
plexus-build-api-0.0.4.jar 
  /external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
StreamHandlerTest.java 22 import java.io.OutputStream;
57 private OutputStream errSubstituteStream = null;
785 public MockStreamHandler(OutputStream out, Formatter formatter) {
789 public void setOutputStream(OutputStream out) {
856 * @see java.io.OutputStream#close()
866 * @see java.io.OutputStream#flush()
876 * @see java.io.OutputStream#write(int)
    [all...]
  /external/smack/src/org/jivesoftware/smackx/bytestreams/ibb/
InBandBytestreamSession.java 18 import java.io.OutputStream;
72 private IBBOutputStream outputStream;
100 this.outputStream = new IQIBBOutputStream();
104 this.outputStream = new MessageIBBOutputStream();
114 public OutputStream getOutputStream() {
115 return this.outputStream;
170 this.outputStream.closeInternal(false);
191 this.outputStream.closeInternal(true);
199 this.outputStream.closeInternal(true);
203 if (this.inputStream.isClosed && this.outputStream.isClosed) {
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
DigestOutputStreamTest.java 27 import java.io.OutputStream;
73 * java.security.DigestOutputStream#DigestOutputStream(java.io.OutputStream,
106 OutputStream out = new MyOutputStream();
123 OutputStream out = new MyOutputStream();
207 * <code>OutputStream</code> not set. <code>write(int)</code> must
220 fail("OutputStream not set. write(int) must not work");
240 OutputStream os = new ByteArrayOutputStream(MY_MESSAGE_LEN);
248 fail("OutputStream not set. write(int) must not work");
598 private class MyOutputStream extends OutputStream {
605 public MyDigestOutputStream(OutputStream out, MessageDigest digest)
    [all...]
  /external/protobuf/java/src/main/java/com/google/protobuf/
MessageLite.java 38 import java.io.OutputStream;
125 * {@link #writeDelimitedTo(OutputStream)}.
127 void writeTo(OutputStream output) throws IOException;
130 * Like {@link #writeTo(OutputStream)}, but writes the size of the message
137 void writeDelimitedTo(OutputStream output) throws IOException;
298 * {@link MessageLite#writeDelimitedTo(OutputStream)} to write your message
318 * {@link MessageLite#writeDelimitedTo(OutputStream)} to write messages in
  /frameworks/ex/variablespeed/tests/src/com/android/ex/variablespeed/
MediaPlayerProxyTestCase.java 30 import java.io.OutputStream;
535 OutputStream outputStream = null;
539 outputStream = getContentResolver().openOutputStream(uri);
540 copyBetweenStreams(inputStream, outputStream);
544 Closeables.closeQuietly(outputStream);
553 public void copyBetweenStreams(InputStream in, OutputStream out) throws IOException {
  /frameworks/volley/src/com/android/volley/toolbox/
DiskBasedCache.java 31 import java.io.OutputStream;
417 * Writes the contents of this CacheHeader to the specified OutputStream.
419 public boolean writeHeader(OutputStream os) {
483 static void writeInt(OutputStream os, int n) throws IOException {
499 static void writeLong(OutputStream os, long n) throws IOException {
523 static void writeString(OutputStream os, String s) throws IOException {
535 static void writeStringStringMap(Map<String, String> map, OutputStream os) throws IOException {
  /packages/apps/Gallery/src/com/android/camera/
ImageManager.java 47 import java.io.OutputStream;
205 OutputStream outputStream = null;
211 outputStream = new FileOutputStream(file);
213 source.compress(CompressFormat.JPEG, 75, outputStream);
216 outputStream.write(jpegData);
226 Util.closeSilently(outputStream);
  /packages/apps/UnifiedEmail/src/com/android/mail/providers/
EmlAttachmentProvider.java 49 import java.io.OutputStream;
316 OutputStream outputStream = null;
326 outputStream = new FileOutputStream(newFilePath);
338 outputStream.write(data, 0, len);
387 if (outputStream != null) {
388 outputStream.close();
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
wagon-provider-api-2.6.jar 
  /external/glide/third_party/disklrucache/
disklrucache-2.0.2.jar 
  /frameworks/base/core/java/android/hardware/camera2/
DngCreator.java 31 import java.io.OutputStream;
285 * @param dngOutput an {@link java.io.OutputStream} to write the DNG file to.
296 public void writeInputStream(OutputStream dngOutput, Size size, InputStream pixels, long offset)
338 * @param dngOutput an {@link java.io.OutputStream} to write the DNG file to.
348 public void writeByteBuffer(OutputStream dngOutput, Size size, ByteBuffer pixels, long offset)
376 * @param dngOutput an {@link java.io.OutputStream} to write the DNG file to.
384 public void writeImage(OutputStream dngOutput, Image pixels) throws IOException {
449 private void writeByteBuffer(int width, int height, ByteBuffer pixels, OutputStream dngOutput,
623 private synchronized native void nativeWriteImage(OutputStream out, int width, int height,
628 private synchronized native void nativeWriteInputStream(OutputStream out, InputStream rawStream
    [all...]
  /frameworks/base/docs/html/sdk/api_diff/19/changes/
constructors_index_additions.html 105 &nbsp;&nbsp;<nobr><A HREF="java.util.zip.DeflaterOutputStream.html#java.util.zip.DeflaterOutputStream.ctor_added(java.io.OutputStream, boolean)" class="hiddenlink" target="rightframe"><b>DeflaterOutputStream</b>
106 (<code>OutputStream, boolean</code>)</A></nobr>&nbsp;constructor<br>
107 &nbsp;&nbsp;<nobr><A HREF="java.util.zip.DeflaterOutputStream.html#java.util.zip.DeflaterOutputStream.ctor_added(java.io.OutputStream, java.util.zip.Deflater, boolean)" class="hiddenlink" target="rightframe"><b>DeflaterOutputStream</b>
108 (<code>OutputStream, Deflater, boolean</code>)</A></nobr>&nbsp;constructor<br>
109 &nbsp;&nbsp;<nobr><A HREF="java.util.zip.DeflaterOutputStream.html#java.util.zip.DeflaterOutputStream.ctor_added(java.io.OutputStream, java.util.zip.Deflater, int, boolean)" class="hiddenlink" target="rightframe"><b>DeflaterOutputStream</b>
110 (<code>OutputStream, Deflater, int, boolean</code>)</A></nobr>&nbsp;constructor<br>
144 &nbsp;&nbsp;<nobr><A HREF="java.util.zip.GZIPOutputStream.html#java.util.zip.GZIPOutputStream.ctor_added(java.io.OutputStream, boolean)" class="hiddenlink" target="rightframe"><b>GZIPOutputStream</b>
145 (<code>OutputStream, boolean</code>)</A></nobr>&nbsp;constructor<br>
146 &nbsp;&nbsp;<nobr><A HREF="java.util.zip.GZIPOutputStream.html#java.util.zip.GZIPOutputStream.ctor_added(java.io.OutputStream, int, boolean)" class="hiddenlink" target="rightframe"><b>GZIPOutputStream</b>
147 (<code>OutputStream, int, boolean</code>)</A></nobr>&nbsp;constructor<br
    [all...]
  /art/compiler/
oat_writer.cc 571 WriteCodeMethodVisitor(OatWriter* writer, OutputStream* out, const size_t file_offset,
584 OutputStream* out = out_;
640 OutputStream* const out_;
652 WriteMapMethodVisitor(OatWriter* writer, OutputStream* out, const size_t file_offset,
665 OutputStream* out = out_;
691 OutputStream* const out_;
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
BluetoothPbapObexServer.java 44 import java.io.OutputStream;
685 OutputStream outputStream = null;
693 outputStream = op.openOutputStream();
694 outputStream.flush();
699 if (!closeStream(outputStream, op)) {
713 OutputStream outputStream = null;
716 outputStream = op.openOutputStream();
717 outputStream.write(vcardString.getBytes())
    [all...]
  /frameworks/base/docs/html/reference/com/google/android/gms/games/multiplayer/realtime/
RealTimeSocket.html 849 access to an instance of <code><a href="/reference/java/io/InputStream.html">InputStream</a></code> or <code><a href="/reference/java/io/OutputStream.html">OutputStream</a></code>
853 <code><a href="/reference/java/io/InputStream.html">InputStream</a></code> or <code><a href="/reference/java/io/OutputStream.html">OutputStream</a></code> instances will close the socket.
857 divided. Clients should avoid calling <code><a href="/reference/java/io/OutputStream.html#write(byte[])">write(byte[])</a></code> with more than
971 OutputStream</nobr>
977 Instance of <code><a href="/reference/java/io/OutputStream.html">OutputStream</a></code> to write data to.
1179 OutputStream
1195 <div class="jd-tagdata jd-tagdescr"><p>Instance of <code><a href="/reference/java/io/OutputStream.html">OutputStream</a></code> to write data to. Callin
    [all...]

Completed in 865 milliseconds

<<11121314151617181920>>