blob: b180918d6c601396b527b28b621dbe2891ccda13 (
plain)
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
// DO NOT EDIT THIS FILE - it is machine generated -*- c++ -*-
#ifndef __gnu_java_nio_SocketChannelImpl__
#define __gnu_java_nio_SocketChannelImpl__
#pragma interface
#include <java/nio/channels/SocketChannel.h>
#include <gcj/array.h>
extern "Java"
{
namespace gnu
{
namespace java
{
namespace net
{
class PlainSocketImpl;
}
namespace nio
{
class NIOSocket;
class SocketChannelImpl;
}
}
}
namespace java
{
namespace net
{
class Socket;
class SocketAddress;
}
namespace nio
{
class ByteBuffer;
namespace channels
{
namespace spi
{
class SelectorProvider;
}
}
}
}
}
class gnu::java::nio::SocketChannelImpl : public ::java::nio::channels::SocketChannel
{
public: // actually package-private
SocketChannelImpl(::java::nio::channels::spi::SelectorProvider *);
SocketChannelImpl(::java::nio::channels::spi::SelectorProvider *, ::gnu::java::nio::NIOSocket *);
public:
void finalizer();
public: // actually package-private
::gnu::java::net::PlainSocketImpl * getPlainSocketImpl();
jint getNativeFD();
public: // actually protected
void implCloseSelectableChannel();
void implConfigureBlocking(jboolean);
public:
jboolean connect(::java::net::SocketAddress *);
jboolean finishConnect();
jboolean isConnected();
jboolean isConnectionPending();
::java::net::Socket * socket();
jint read(::java::nio::ByteBuffer *);
jlong read(JArray< ::java::nio::ByteBuffer * > *, jint, jint);
jint write(::java::nio::ByteBuffer *);
jlong write(JArray< ::java::nio::ByteBuffer * > *, jint, jint);
private:
::gnu::java::net::PlainSocketImpl * __attribute__((aligned(__alignof__( ::java::nio::channels::SocketChannel)))) impl;
::gnu::java::nio::NIOSocket * socket__;
jboolean connectionPending;
public:
static ::java::lang::Class class$;
};
#endif // __gnu_java_nio_SocketChannelImpl__
|