Searched defs:outstream (Results 1 - 3 of 3) sorted by relevance

/packages/apps/Mms/src/com/android/mms/transaction/
H A DProgressCallbackEntity.java49 public void writeTo(final OutputStream outstream) throws IOException { argument
50 if (outstream == null) {
64 outstream.write(mContent, pos, len);
65 outstream.flush();
/packages/apps/Exchange/src/com/android/exchange/
H A DEasOutboxService.java137 public void writeTo(OutputStream outstream) throws IOException { argument
138 writeTo(outstream, true);
143 * @param outstream the output stream to write
148 public void writeTo(OutputStream outstream, boolean withData) throws IOException { argument
150 if (outstream == null) {
155 Serializer s = new Serializer(outstream);
/packages/apps/Exchange/src/com/android/exchange/eas/
H A DEasOutboxSync.java451 public void writeTo(final OutputStream outstream) throws IOException { argument
452 writeTo(outstream, true);
457 * @param outstream the output stream to write
462 public void writeTo(final OutputStream outstream, final boolean withData) argument
465 if (outstream == null) {
470 final Serializer s = new Serializer(outstream);

Completed in 54 milliseconds