HomeSort by relevance Sort by last modified time
    Searched refs:getOutputStream (Results 1 - 25 of 621) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/proguard/src/proguard/io/
ParentDataEntryWriter.java 52 return getOutputStream(dataEntry) != null;
56 public OutputStream getOutputStream(DataEntry dataEntry) throws IOException
58 return getOutputStream(dataEntry, null);
62 public OutputStream getOutputStream(DataEntry dataEntry,
65 return dataEntryWriter.getOutputStream(dataEntry.getParent(),
DataEntryWriter.java 51 public OutputStream getOutputStream(DataEntry dataEntry) throws IOException;
65 public OutputStream getOutputStream(DataEntry dataEntry,
CascadingDataEntryWriter.java 65 public OutputStream getOutputStream(DataEntry dataEntry) throws IOException
67 return getOutputStream(dataEntry, null);
71 public OutputStream getOutputStream(DataEntry dataEntry,
76 dataEntryWriter1.getOutputStream(dataEntry, finisher);
82 dataEntryWriter2.getOutputStream(dataEntry, finisher);
FilteredDataEntryWriter.java 90 public OutputStream getOutputStream(DataEntry dataEntry) throws IOException
92 return getOutputStream(dataEntry, null);
96 public OutputStream getOutputStream(DataEntry dataEntry,
106 dataEntryWriter.getOutputStream(dataEntry, finisher) :
  /external/lzma/Java/Tukaani/src/org/tukaani/xz/
FilterEncoder.java 16 FinishableOutputStream getOutputStream(FinishableOutputStream out);
DeltaEncoder.java 33 public FinishableOutputStream getOutputStream(FinishableOutputStream out) {
34 return options.getOutputStream(out);
BCJEncoder.java 45 public FinishableOutputStream getOutputStream(FinishableOutputStream out) {
46 return options.getOutputStream(out);
LZMA2Encoder.java 47 public FinishableOutputStream getOutputStream(FinishableOutputStream out) {
48 return options.getOutputStream(out);
ARMOptions.java 25 public FinishableOutputStream getOutputStream(FinishableOutputStream out) {
ARMThumbOptions.java 25 public FinishableOutputStream getOutputStream(FinishableOutputStream out) {
IA64Options.java 25 public FinishableOutputStream getOutputStream(FinishableOutputStream out) {
PowerPCOptions.java 25 public FinishableOutputStream getOutputStream(FinishableOutputStream out) {
SPARCOptions.java 25 public FinishableOutputStream getOutputStream(FinishableOutputStream out) {
  /external/apache-harmony/support/src/test/java/tests/support/
Support_Socket.java 31 public OutputStream getOutputStream() throws IOException;
Support_HttpSocket.java 43 public OutputStream getOutputStream() throws IOException {
45 return instance.getOutputStream();
Support_HttpConnector.java 36 public OutputStream getOutputStream() throws IOException;
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/operator/
ContentSigner.java 18 OutputStream getOutputStream();
ContentVerifier.java 24 OutputStream getOutputStream();
DigestCalculator.java 28 OutputStream getOutputStream();
MacCalculator.java 18 OutputStream getOutputStream();
  /libcore/ojluni/src/main/java/java/lang/
Process.java 50 * {@link #getOutputStream()},
84 abstract public OutputStream getOutputStream();
  /frameworks/base/core/tests/coretests/src/android/net/
LocalSocketTest.java 47 ls.getOutputStream().write(42);
60 ls.getOutputStream().write(42);
69 ls1.getOutputStream().write(new byte[]{0, 1, 2, 3, 4, 5}, 1, 5);
94 ls.getOutputStream().write(buffer, 1, 16);
101 ls.getOutputStream().write(buffer, -1, 15);
108 ls.getOutputStream().write(buffer, 0, -1);
129 ls.getOutputStream().write(42);
141 ls.getOutputStream().write(42);
159 ls1.getOutputStream().write(42);
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/util/
TempFile.java 54 OutputStream getOutputStream() throws IOException;
  /external/apache-http/src/org/apache/http/impl/io/
SocketOutputBuffer.java 69 init(socket.getOutputStream(), 8192, params);
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
WriterChain.java 69 * If this method returns null, getOutputStream() must return non-null.
81 public java.io.OutputStream getOutputStream();

Completed in 462 milliseconds

1 2 3 4 5 6 7 8 91011>>