From 554fd8c5195424bdbcabf5de30fdc183aba391bd Mon Sep 17 00:00:00 2001
From: upstream source tree <ports@midipix.org>
Date: Sun, 15 Mar 2015 20:14:05 -0400
Subject: obtained gcc-4.6.4.tar.bz2 from upstream website; verified
 gcc-4.6.4.tar.bz2.sig; imported gcc-4.6.4 source tree from verified upstream
 tarball.

downloading a git-generated archive based on the 'upstream' tag
should provide you with a source tree that is binary identical
to the one extracted from the above tarball.

if you have obtained the source via the command 'git clone',
however, do note that line-endings of files in your working
directory might differ from line-endings of the respective
files in the upstream repository.
---
 libjava/gnu/classpath/debug/Component.h            | 50 ++++++++++++++++++++++
 libjava/gnu/classpath/debug/PreciseFilter.h        | 41 ++++++++++++++++++
 libjava/gnu/classpath/debug/Simple1LineFormatter.h | 50 ++++++++++++++++++++++
 libjava/gnu/classpath/debug/SystemLogger.h         | 39 +++++++++++++++++
 libjava/gnu/classpath/debug/TeeInputStream.h       | 42 ++++++++++++++++++
 libjava/gnu/classpath/debug/TeeOutputStream.h      | 42 ++++++++++++++++++
 libjava/gnu/classpath/debug/TeeReader.h            | 42 ++++++++++++++++++
 libjava/gnu/classpath/debug/TeeWriter.h            | 42 ++++++++++++++++++
 8 files changed, 348 insertions(+)
 create mode 100644 libjava/gnu/classpath/debug/Component.h
 create mode 100644 libjava/gnu/classpath/debug/PreciseFilter.h
 create mode 100644 libjava/gnu/classpath/debug/Simple1LineFormatter.h
 create mode 100644 libjava/gnu/classpath/debug/SystemLogger.h
 create mode 100644 libjava/gnu/classpath/debug/TeeInputStream.h
 create mode 100644 libjava/gnu/classpath/debug/TeeOutputStream.h
 create mode 100644 libjava/gnu/classpath/debug/TeeReader.h
 create mode 100644 libjava/gnu/classpath/debug/TeeWriter.h

(limited to 'libjava/gnu/classpath/debug')

diff --git a/libjava/gnu/classpath/debug/Component.h b/libjava/gnu/classpath/debug/Component.h
new file mode 100644
index 000000000..b6dd87e96
--- /dev/null
+++ b/libjava/gnu/classpath/debug/Component.h
@@ -0,0 +1,50 @@
+
+// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
+
+#ifndef __gnu_classpath_debug_Component__
+#define __gnu_classpath_debug_Component__
+
+#pragma interface
+
+#include <java/util/logging/Level.h>
+extern "Java"
+{
+  namespace gnu
+  {
+    namespace classpath
+    {
+      namespace debug
+      {
+          class Component;
+      }
+    }
+  }
+}
+
+class gnu::classpath::debug::Component : public ::java::util::logging::Level
+{
+
+  Component(::java::lang::String *, jint);
+  Component(::java::lang::String *, jint, jint);
+public:
+  static ::gnu::classpath::debug::Component * forName(::java::lang::String *);
+  jint startIndex();
+  jint endIndex();
+  static ::gnu::classpath::debug::Component * EVERYTHING;
+  static ::gnu::classpath::debug::Component * SSL;
+  static ::gnu::classpath::debug::Component * SSL_HANDSHAKE;
+  static ::gnu::classpath::debug::Component * SSL_RECORD_LAYER;
+  static ::gnu::classpath::debug::Component * SSL_KEY_EXCHANGE;
+  static ::gnu::classpath::debug::Component * SSL_DELEGATED_TASK;
+  static ::gnu::classpath::debug::Component * CRYPTO;
+  static ::gnu::classpath::debug::Component * X509;
+  static ::gnu::classpath::debug::Component * POLICY;
+  static ::gnu::classpath::debug::Component * IPP;
+private:
+  jint __attribute__((aligned(__alignof__( ::java::util::logging::Level)))) startIndex__;
+  jint endIndex__;
+public:
+  static ::java::lang::Class class$;
+};
+
+#endif // __gnu_classpath_debug_Component__
diff --git a/libjava/gnu/classpath/debug/PreciseFilter.h b/libjava/gnu/classpath/debug/PreciseFilter.h
new file mode 100644
index 000000000..14fdfdb7c
--- /dev/null
+++ b/libjava/gnu/classpath/debug/PreciseFilter.h
@@ -0,0 +1,41 @@
+
+// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
+
+#ifndef __gnu_classpath_debug_PreciseFilter__
+#define __gnu_classpath_debug_PreciseFilter__
+
+#pragma interface
+
+#include <java/lang/Object.h>
+extern "Java"
+{
+  namespace gnu
+  {
+    namespace classpath
+    {
+      namespace debug
+      {
+          class Component;
+          class PreciseFilter;
+      }
+    }
+  }
+}
+
+class gnu::classpath::debug::PreciseFilter : public ::java::lang::Object
+{
+
+  PreciseFilter();
+public:
+  void disable(::gnu::classpath::debug::Component *);
+  void enable(::gnu::classpath::debug::Component *);
+  jboolean isEnabled(::gnu::classpath::debug::Component *);
+  jboolean isLoggable(::java::util::logging::LogRecord *);
+  static ::gnu::classpath::debug::PreciseFilter * GLOBAL;
+private:
+  ::java::util::BitSet * __attribute__((aligned(__alignof__( ::java::lang::Object)))) enabled;
+public:
+  static ::java::lang::Class class$;
+};
+
+#endif // __gnu_classpath_debug_PreciseFilter__
diff --git a/libjava/gnu/classpath/debug/Simple1LineFormatter.h b/libjava/gnu/classpath/debug/Simple1LineFormatter.h
new file mode 100644
index 000000000..237dfac08
--- /dev/null
+++ b/libjava/gnu/classpath/debug/Simple1LineFormatter.h
@@ -0,0 +1,50 @@
+
+// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
+
+#ifndef __gnu_classpath_debug_Simple1LineFormatter__
+#define __gnu_classpath_debug_Simple1LineFormatter__
+
+#pragma interface
+
+#include <java/util/logging/Formatter.h>
+extern "Java"
+{
+  namespace gnu
+  {
+    namespace classpath
+    {
+      namespace debug
+      {
+          class Simple1LineFormatter;
+      }
+    }
+  }
+  namespace java
+  {
+    namespace text
+    {
+        class DateFormat;
+        class NumberFormat;
+    }
+  }
+}
+
+class gnu::classpath::debug::Simple1LineFormatter : public ::java::util::logging::Formatter
+{
+
+public:
+  Simple1LineFormatter();
+  virtual ::java::lang::String * format(::java::util::logging::LogRecord *);
+private:
+  static ::java::lang::String * DAT_PATTERN;
+  static ::java::lang::String * THREAD_PATTERN;
+  static ::java::lang::String * SPACES_32;
+  static ::java::lang::String * SPACES_6;
+  static ::java::lang::String * LS;
+  ::java::text::DateFormat * __attribute__((aligned(__alignof__( ::java::util::logging::Formatter)))) dateFormat;
+  ::java::text::NumberFormat * threadFormat;
+public:
+  static ::java::lang::Class class$;
+};
+
+#endif // __gnu_classpath_debug_Simple1LineFormatter__
diff --git a/libjava/gnu/classpath/debug/SystemLogger.h b/libjava/gnu/classpath/debug/SystemLogger.h
new file mode 100644
index 000000000..dc367e391
--- /dev/null
+++ b/libjava/gnu/classpath/debug/SystemLogger.h
@@ -0,0 +1,39 @@
+
+// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
+
+#ifndef __gnu_classpath_debug_SystemLogger__
+#define __gnu_classpath_debug_SystemLogger__
+
+#pragma interface
+
+#include <java/util/logging/Logger.h>
+#include <gcj/array.h>
+
+extern "Java"
+{
+  namespace gnu
+  {
+    namespace classpath
+    {
+      namespace debug
+      {
+          class SystemLogger;
+      }
+    }
+  }
+}
+
+class gnu::classpath::debug::SystemLogger : public ::java::util::logging::Logger
+{
+
+public:
+  static ::gnu::classpath::debug::SystemLogger * getSystemLogger();
+private:
+  SystemLogger();
+public:
+  void logv(::java::util::logging::Level *, ::java::lang::String *, JArray< ::java::lang::Object * > *);
+  static ::gnu::classpath::debug::SystemLogger * SYSTEM;
+  static ::java::lang::Class class$;
+};
+
+#endif // __gnu_classpath_debug_SystemLogger__
diff --git a/libjava/gnu/classpath/debug/TeeInputStream.h b/libjava/gnu/classpath/debug/TeeInputStream.h
new file mode 100644
index 000000000..293f05763
--- /dev/null
+++ b/libjava/gnu/classpath/debug/TeeInputStream.h
@@ -0,0 +1,42 @@
+
+// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
+
+#ifndef __gnu_classpath_debug_TeeInputStream__
+#define __gnu_classpath_debug_TeeInputStream__
+
+#pragma interface
+
+#include <java/io/InputStream.h>
+#include <gcj/array.h>
+
+extern "Java"
+{
+  namespace gnu
+  {
+    namespace classpath
+    {
+      namespace debug
+      {
+          class TeeInputStream;
+      }
+    }
+  }
+}
+
+class gnu::classpath::debug::TeeInputStream : public ::java::io::InputStream
+{
+
+public:
+  TeeInputStream(::java::io::InputStream *, ::java::io::OutputStream *);
+  virtual jint read();
+  virtual jint read(JArray< jbyte > *, jint, jint);
+  virtual void close();
+  virtual jboolean markSupported();
+private:
+  ::java::io::InputStream * __attribute__((aligned(__alignof__( ::java::io::InputStream)))) in;
+  ::java::io::OutputStream * out;
+public:
+  static ::java::lang::Class class$;
+};
+
+#endif // __gnu_classpath_debug_TeeInputStream__
diff --git a/libjava/gnu/classpath/debug/TeeOutputStream.h b/libjava/gnu/classpath/debug/TeeOutputStream.h
new file mode 100644
index 000000000..24357808f
--- /dev/null
+++ b/libjava/gnu/classpath/debug/TeeOutputStream.h
@@ -0,0 +1,42 @@
+
+// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
+
+#ifndef __gnu_classpath_debug_TeeOutputStream__
+#define __gnu_classpath_debug_TeeOutputStream__
+
+#pragma interface
+
+#include <java/io/OutputStream.h>
+#include <gcj/array.h>
+
+extern "Java"
+{
+  namespace gnu
+  {
+    namespace classpath
+    {
+      namespace debug
+      {
+          class TeeOutputStream;
+      }
+    }
+  }
+}
+
+class gnu::classpath::debug::TeeOutputStream : public ::java::io::OutputStream
+{
+
+public:
+  TeeOutputStream(::java::io::OutputStream *, ::java::io::OutputStream *);
+  virtual void write(jint);
+  virtual void write(JArray< jbyte > *, jint, jint);
+  virtual void flush();
+  virtual void close();
+private:
+  ::java::io::OutputStream * __attribute__((aligned(__alignof__( ::java::io::OutputStream)))) out;
+  ::java::io::OutputStream * sink;
+public:
+  static ::java::lang::Class class$;
+};
+
+#endif // __gnu_classpath_debug_TeeOutputStream__
diff --git a/libjava/gnu/classpath/debug/TeeReader.h b/libjava/gnu/classpath/debug/TeeReader.h
new file mode 100644
index 000000000..5da674baa
--- /dev/null
+++ b/libjava/gnu/classpath/debug/TeeReader.h
@@ -0,0 +1,42 @@
+
+// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
+
+#ifndef __gnu_classpath_debug_TeeReader__
+#define __gnu_classpath_debug_TeeReader__
+
+#pragma interface
+
+#include <java/io/Reader.h>
+#include <gcj/array.h>
+
+extern "Java"
+{
+  namespace gnu
+  {
+    namespace classpath
+    {
+      namespace debug
+      {
+          class TeeReader;
+      }
+    }
+  }
+}
+
+class gnu::classpath::debug::TeeReader : public ::java::io::Reader
+{
+
+public:
+  TeeReader(::java::io::Reader *, ::java::io::Writer *);
+  virtual jint read();
+  virtual jint read(JArray< jchar > *, jint, jint);
+  virtual void close();
+  virtual jboolean markSupported();
+private:
+  ::java::io::Reader * __attribute__((aligned(__alignof__( ::java::io::Reader)))) in;
+  ::java::io::Writer * out;
+public:
+  static ::java::lang::Class class$;
+};
+
+#endif // __gnu_classpath_debug_TeeReader__
diff --git a/libjava/gnu/classpath/debug/TeeWriter.h b/libjava/gnu/classpath/debug/TeeWriter.h
new file mode 100644
index 000000000..ee34cf0cd
--- /dev/null
+++ b/libjava/gnu/classpath/debug/TeeWriter.h
@@ -0,0 +1,42 @@
+
+// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
+
+#ifndef __gnu_classpath_debug_TeeWriter__
+#define __gnu_classpath_debug_TeeWriter__
+
+#pragma interface
+
+#include <java/io/Writer.h>
+#include <gcj/array.h>
+
+extern "Java"
+{
+  namespace gnu
+  {
+    namespace classpath
+    {
+      namespace debug
+      {
+          class TeeWriter;
+      }
+    }
+  }
+}
+
+class gnu::classpath::debug::TeeWriter : public ::java::io::Writer
+{
+
+public:
+  TeeWriter(::java::io::Writer *, ::java::io::Writer *);
+  virtual void write(jint);
+  virtual void write(JArray< jchar > *, jint, jint);
+  virtual void flush();
+  virtual void close();
+private:
+  ::java::io::Writer * __attribute__((aligned(__alignof__( ::java::io::Writer)))) out;
+  ::java::io::Writer * sink;
+public:
+  static ::java::lang::Class class$;
+};
+
+#endif // __gnu_classpath_debug_TeeWriter__
-- 
cgit v1.2.3