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

1 2 3 4 5 6

  /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);
ClassRewriter.java 68 OutputStream outputStream = dataEntryWriter.getOutputStream(dataEntry);
  /dalvik/libcore/luni/src/main/java/java/lang/
Process.java 72 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);
SSLTest.java 35 OutputStream out = ssl.getOutputStream();
  /packages/apps/Email/src/org/apache/james/mime4j/util/
TempFile.java 54 OutputStream getOutputStream() throws IOException;
  /dalvik/libcore/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();
  /dalvik/libcore/luni/src/test/java/tests/api/java/net/
UnixSocketTest.java 53 OutputStream clientOut = pingClient.getOutputStream();
58 OutputStream out = worker.getOutputStream();
114 OutputStream o = socket.getOutputStream();
UnknownServiceExceptionTest.java 43 new URL("file:///moo.txt").openConnection().getOutputStream();
ExcludedProxyTest.java 96 OutputStream out2 = conn2.getOutputStream();
120 OutputStream out = conn4.getOutputStream();
155 OutputStream os = s.getOutputStream();
172 OutputStream os = s.getOutputStream();
213 OutputStream out = conn.getOutputStream();
  /external/apache-http/src/org/apache/http/impl/io/
SocketOutputBuffer.java 76 init(socket.getOutputStream(), buffersize, params);
  /dalvik/libcore/xml/src/main/java/javax/xml/transform/stream/
StreamResult.java 111 public OutputStream getOutputStream() {
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppRfcommTransport.java 71 return mSocket.getOutputStream();
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
BluetoothPbapRfcommTransport.java 70 return mSocket.getOutputStream();
  /packages/apps/Email/src/com/android/email/mail/
Transport.java 144 public OutputStream getOutputStream();
  /cts/tests/tests/net/src/android/net/cts/
LocalServerSocketTest.java 83 OutputStream clientOutStream = clientSocket.getOutputStream();
89 OutputStream serverOutStream = serverSocket.getOutputStream();
  /frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/forwarder/
AdbUtils.java 61 OutputStream os = localSocket.getOutputStream();
117 if(!sendAdbCmd(socket.getInputStream(), socket.getOutputStream(), cmd)) {
  /dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/internal/net/www/protocol/http/
HttpConnection.java 132 public OutputStream getOutputStream() throws IOException {
135 sslOutputStream = sslSocket.getOutputStream();
139 outputStream = socket.getOutputStream();
  /dalvik/libcore/luni/src/test/java/tests/api/java/lang/
ProcessTest.java 52 OutputStream os = proc.getOutputStream();
81 * @tests java.lang.Process#getOutputStream()
86 method = "getOutputStream",
93 OutputStream os = proc.getOutputStream();
231 public OutputStream getOutputStream() {

Completed in 451 milliseconds

1 2 3 4 5 6