Lines Matching refs:os
308 * @param os the OutputStream to write to
311 public void writeTo(OutputStream os) throws IOException {
322 os.write(data, 0, bytes_read);
330 dch.writeTo(object, objectMimeType, os);
813 public void writeTo(Object obj, String mimeType, OutputStream os)
816 dch.writeTo(obj, mimeType, os);
897 public void writeTo(Object obj, String mimeType, OutputStream os)
900 dch.writeTo(obj, mimeType, os);
902 os.write((byte[])obj);
904 OutputStreamWriter osw = new OutputStreamWriter(os);