1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54</* Provide suggestions to handle misspelled options, and implement the --complete option for auto-completing options from a prefix. Copyright (C) 2016-2019 Free Software Foundation, Inc. This file is part of GCC. GCC is free software; you can redistri // DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*- #ifndef __java_io_FileInputStream__ #define __java_io_FileInputStream__ #pragma interface #include <java/io/InputStream.h> #include <gcj/array.h> extern "Java" { namespace gnu { namespace java { namespace nio { namespace channels { class FileChannelImpl; } } } } namespace java { namespace nio { namespace channels { class FileChannel; } } } } class java::io::FileInputStream : public ::java::io::InputStream { public: FileInputStream(::java::lang::String *); FileInputStream(::java::io::File *); FileInputStream(::java::io::FileDescriptor *); public: // actually package-private FileInputStream(::gnu::java::nio::channels::FileChannelImpl *); public: virtual jint available(); virtual void close(); public: // actually protected virtual void finalize(); public: virtual ::java::io::FileDescriptor * getFD(); virtual jint read(); virtual jint read(JArray< jbyte > *); virtual jint read(JArray< jbyte > *, jint, jint); virtual jlong skip(jlong); virtual ::java::nio::channels::FileChannel * getChannel(); private: ::java::io::FileDescriptor * __attribute__((aligned(__alignof__( ::java::io::InputStream)))) fd; ::gnu::java::nio::channels::FileChannelImpl * ch; public: static ::java::lang::Class class$; }; #endif // __java_io_FileInputStream__