Home | History | Annotate | Download | only in proto

Lines Matching defs:ProtoOutputStream

103 public final class ProtoOutputStream {
104 public static final String TAG = "ProtoOutputStream";
230 * Construct a ProtoOutputStream with the default chunk size.
232 public ProtoOutputStream() {
237 * Construct a ProtoOutputStream with the given chunk size.
239 public ProtoOutputStream(int chunkSize) {
244 * Construct a ProtoOutputStream that sits on top of an OutputStream.
250 public ProtoOutputStream(OutputStream stream) {
256 * Construct a ProtoOutputStream that sits on top of a FileDescriptor.
262 public ProtoOutputStream(FileDescriptor fd) {
2432 * TODO: Will change when we add the OutputStream version of ProtoOutputStream.