HomeSort by relevance Sort by last modified time
    Searched refs:getOutputStream (Results 1 - 25 of 286) 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) :
DirectoryWriter.java 78 public OutputStream getOutputStream(DataEntry dataEntry) throws IOException
80 return getOutputStream(dataEntry, null);
84 public OutputStream getOutputStream(DataEntry dataEntry,
JarWriter.java 109 public OutputStream getOutputStream(DataEntry dataEntry) throws IOException
111 return getOutputStream(dataEntry, null);
115 public OutputStream getOutputStream(DataEntry dataEntry,
188 dataEntryWriter.getOutputStream(dataEntry.getParent(), this);
  /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 37 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();
  /libcore/luni/src/main/java/java/lang/
Process.java 51 * OutputStream out = process.getOutputStream();
102 public abstract 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);
  /external/apache-http/src/org/apache/http/impl/io/
SocketOutputBuffer.java 64 init(socket.getOutputStream(), 8192, params);
  /external/smack/src/org/jivesoftware/smack/compression/
XMPPInputOutputStream.java 32 public abstract OutputStream getOutputStream(OutputStream outputStream) throws Exception;
  /packages/apps/Email/src/org/apache/james/mime4j/util/
TempFile.java 54 OutputStream getOutputStream() throws IOException;
  /external/smack/src/org/jivesoftware/smackx/bytestreams/socks5/
Socks5BytestreamSession.java 72 public OutputStream getOutputStream() throws IOException {
73 return this.socket.getOutputStream();
  /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();
Serializer.java 114 public OutputStream getOutputStream();
  /external/smack/src/org/jivesoftware/smackx/bytestreams/
BytestreamSession.java 47 public OutputStream getOutputStream() throws IOException;
  /external/apache-harmony/luni/src/test/api/unix/org/apache/harmony/luni/tests/java/net/
UnixSocketTest.java 50 OutputStream clientOut = pingClient.getOutputStream();
55 OutputStream out = worker.getOutputStream();
111 OutputStream o = socket.getOutputStream();
  /libcore/luni/src/test/java/libcore/java/net/
OldUnixSocketTest.java 46 OutputStream clientOut = pingClient.getOutputStream();
51 OutputStream out = worker.getOutputStream();
107 OutputStream o = socket.getOutputStream();
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
JDKPKCS12StoreParameter.java 14 public OutputStream getOutputStream()
  /cts/tests/tests/net/src/android/net/cts/
LocalServerSocketTest.java 43 OutputStream clientOutStream = clientSocket.getOutputStream();
49 OutputStream serverOutStream = serverSocket.getOutputStream();

Completed in 1241 milliseconds

1 2 3 4 5 6 7 8 91011>>