/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/Bluetooth/src/com/android/bluetooth/ |
Utils.java | 30 import java.io.OutputStream; 160 public static void copyStream(InputStream is, OutputStream os, int bufferSize) 181 public static void safeCloseStream(OutputStream os) {
|
/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/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/ |
MessageLite.java | 38 import java.io.OutputStream; 117 * {@link #writeDelimitedTo(OutputStream)}. 119 void writeTo(OutputStream output) throws IOException; 122 * Like {@link #writeTo(OutputStream)}, but writes the size of the message 129 void writeDelimitedTo(OutputStream output) throws IOException; 278 * {@link MessageLite#writeDelimitedTo(OutputStream)} to write your message 302 * {@link MessageLite#writeDelimitedTo(OutputStream)} to write messages in
|
/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 <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> constructor<br> 107 <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> constructor<br> 109 <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> constructor<br> 144 <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> constructor<br> 146 <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> constructor<br [all...] |
/art/compiler/ |
oat_writer.cc | 564 WriteCodeMethodVisitor(OatWriter* writer, OutputStream* out, const size_t file_offset, 577 OutputStream* out = out_; 632 OutputStream* const out_; 644 WriteMapMethodVisitor(OatWriter* writer, OutputStream* out, const size_t file_offset, 657 OutputStream* out = out_; 682 OutputStream* const out_; [all...] |