natplainsocketimplnonet.cc

来自「gcc的JAVA模块的源代码」· CC 代码 · 共 133 行

CC
133
字号
/* Copyright (C) 2003 Free Software Foundation   This file is part of libgcj.This software is copyrighted work licensed under the terms of theLibgcj License.  Please consult the file "LIBGCJ_LICENSE" fordetails.  */#include <config.h>#include <platform.h>#include <gnu/java/net/PlainSocketImpl.h>#include <gnu/java/net/PlainSocketImpl$SocketInputStream.h>#include <gnu/java/net/PlainSocketImpl$SocketOutputStream.h>#include <java/io/IOException.h>#include <java/net/BindException.h>#include <java/net/ConnectException.h>#include <java/net/SocketException.h>voidgnu::java::net::PlainSocketImpl::create (jboolean){  throw new ::java::io::IOException (    JvNewStringLatin1 ("SocketImpl.create: unimplemented"));}voidgnu::java::net::PlainSocketImpl::bind (::java::net::InetAddress *, jint){  throw new ::java::net::BindException (    JvNewStringLatin1 ("SocketImpl.bind: unimplemented"));}voidgnu::java::net::PlainSocketImpl::connect (::java::net::SocketAddress *, jint){  throw new ::java::net::ConnectException (    JvNewStringLatin1 ("SocketImpl.connect: unimplemented"));}voidgnu::java::net::PlainSocketImpl::listen (jint){  throw new ::java::io::IOException (    JvNewStringLatin1 ("SocketImpl.listen: unimplemented"));}voidgnu::java::net::PlainSocketImpl::accept (gnu::java::net::PlainSocketImpl *){  throw new ::java::io::IOException (    JvNewStringLatin1 ("SocketImpl.accept: unimplemented"));}voidgnu::java::net::PlainSocketImpl::setOption (jint, ::java::lang::Object *){  throw new ::java::net::SocketException (    JvNewStringLatin1 ("SocketImpl.setOption: unimplemented"));}::java::lang::Object *gnu::java::net::PlainSocketImpl::getOption (jint){  throw new ::java::net::SocketException (    JvNewStringLatin1 ("SocketImpl.getOption: unimplemented"));}jintgnu::java::net::PlainSocketImpl$SocketInputStream::read(void){  throw new ::java::net::SocketException (    JvNewStringLatin1 ("SocketImpl.read: unimplemented"));}jintgnu::java::net::PlainSocketImpl$SocketInputStream::read(jbyteArray buffer,   jint offset, jint count){  throw new ::java::net::SocketException (    JvNewStringLatin1 ("SocketImpl.read: unimplemented"));}voidgnu::java::net::PlainSocketImpl$SocketOutputStream::write(jint b){  throw new ::java::net::SocketException (    JvNewStringLatin1 ("SocketImpl.write: unimplemented"));}voidgnu::java::net::PlainSocketImpl$SocketOutputStream::write(jbyteArray b,   jint offset, jint len){  throw new ::java::net::SocketException (    JvNewStringLatin1 ("SocketImpl.write: unimplemented"));}voidgnu::java::net::PlainSocketImpl::sendUrgentData(jint data){  throw new ::java::net::SocketException (    JvNewStringLatin1 ("SocketImpl.sendUrgentData: unimplemented"));}jintgnu::java::net::PlainSocketImpl::available(void){  throw new ::java::net::SocketException (    JvNewStringLatin1 ("SocketImpl.available: unimplemented"));}voidgnu::java::net::PlainSocketImpl::close(void){  throw new ::java::net::SocketException (    JvNewStringLatin1 ("SocketImpl.close: unimplemented"));}voidgnu::java::net::PlainSocketImpl::shutdownInput (void){  throw new ::java::net::SocketException (    JvNewStringLatin1 ("SocketImpl.shutdownInput: unimplemented"));}voidgnu::java::net::PlainSocketImpl::shutdownOutput (void){  throw new ::java::net::SocketException (    JvNewStringLatin1 ("SocketImpl.shutdownOutput: unimplemented"));}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?