OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [libjava/] [java/] [io/] [BufferedInputStream.h] - Blame information for rev 775

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 758 jeremybenn
 
2
// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
3
 
4
#ifndef __java_io_BufferedInputStream__
5
#define __java_io_BufferedInputStream__
6
 
7
#pragma interface
8
 
9
#include <java/io/FilterInputStream.h>
10
#include <gcj/array.h>
11
 
12
 
13
class java::io::BufferedInputStream : public ::java::io::FilterInputStream
14
{
15
 
16
public:
17
  BufferedInputStream(::java::io::InputStream *);
18
  BufferedInputStream(::java::io::InputStream *, jint);
19
  virtual jint available();
20
  virtual void close();
21
  virtual void mark(jint);
22
  virtual jboolean markSupported();
23
  virtual jint read();
24
  virtual jint read(JArray< jbyte > *, jint, jint);
25
  virtual void reset();
26
  virtual jlong skip(jlong);
27
public: // actually package-private
28
  virtual jboolean refill();
29
private:
30
  static const jint DEFAULT_BUFFER_SIZE = 2048;
31
public: // actually protected
32
  JArray< jbyte > * __attribute__((aligned(__alignof__( ::java::io::FilterInputStream)))) buf;
33
  jint count;
34
  jint pos;
35
  jint markpos;
36
  jint marklimit;
37
private:
38
  jint bufferSize;
39
public:
40
  static ::java::lang::Class class$;
41
};
42
 
43
#endif // __java_io_BufferedInputStream__

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.