Java Doc for INetworkSystem.java in  » Apache-Harmony-Java-SE » org-package » org » apache » harmony » luni » platform » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Apache Harmony Java SE » org package » org.apache.harmony.luni.platform 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


org.apache.harmony.luni.platform.INetworkSystem

All known Subclasses:   org.apache.harmony.luni.platform.OSNetworkSystem,
INetworkSystem
public interface INetworkSystem (Code)


Field Summary
final public  intSOCKET_CONNECT_STEP_CHECK
    
final public  intSOCKET_CONNECT_STEP_START
    


Method Summary
public  voidaccept(FileDescriptor fdServer, SocketImpl newSocket, FileDescriptor fdnewSocket, int timeout)
    
public  voidacceptStreamSocket(FileDescriptor fdServer, SocketImpl newSocket, FileDescriptor fdnewSocket, int timeout)
    
public  intavailableStream(FileDescriptor aFD)
    
public  voidbind(FileDescriptor aFD, int port, InetAddress inetAddress)
    
public  booleanbind2(FileDescriptor aFD, int port, boolean bindToDevice, InetAddress inetAddress)
    
public  intconnect(FileDescriptor aFD, int trafficClass, InetAddress inetAddress, int port)
    
public  voidconnectDatagram(FileDescriptor aFD, int port, int trafficClass, InetAddress inetAddress)
    
public  voidconnectStreamWithTimeoutSocket(FileDescriptor aFD, int aport, int timeout, int trafficClass, InetAddress inetAddress)
    
public  intconnectWithTimeout(FileDescriptor aFD, int timeout, int trafficClass, InetAddress hostname, int port, int step, Long context)
    
public  voidcreateDatagramSocket(FileDescriptor aFD, boolean preferIPv4Stack)
    
public  voidcreateMulticastSocket(FileDescriptor aFD, boolean preferIPv4Stack)
    
public  voidcreateServerStreamSocket(FileDescriptor aFD, boolean preferIPv4Stack)
    
public  voidcreateSocket(FileDescriptor fd, boolean preferIPv4Stack)
    
public  voidcreateStreamSocket(FileDescriptor aFD, boolean preferIPv4Stack)
    
public  voiddisconnectDatagram(FileDescriptor aFD)
    
public  InetAddressgetHostByAddr(byte[] addr)
    
public  InetAddressgetHostByName(String addr, boolean preferIPv6Addresses)
    
public  intgetSocketFlags()
    
public  InetAddressgetSocketLocalAddress(FileDescriptor aFD, boolean preferIPv6Addresses)
    
public  intgetSocketLocalPort(FileDescriptor aFD, boolean preferIPv6Addresses)
    
public  ObjectgetSocketOption(FileDescriptor aFD, int opt)
    
public  ChannelinheritedChannel()
    
public  booleanisReachableByICMP(InetAddress dest, InetAddress source, int ttl, int timeout)
    
public  voidlistenStreamSocket(FileDescriptor aFD, int backlog)
    
public  voidoneTimeInitialization(boolean jcl_supports_ipv6)
    
public  intpeekDatagram(FileDescriptor aFD, InetAddress sender, int receiveTimeout)
    
public  intread(FileDescriptor aFD, byte[] data, int offset, int count, int timeout)
    
public  intreadDirect(FileDescriptor aFD, long address, int count, int timeout)
    
public  intreceiveDatagram(FileDescriptor aFD, DatagramPacket packet, byte[] data, int offset, int length, int receiveTimeout, boolean peek)
    
public  intreceiveDatagramDirect(FileDescriptor aFD, DatagramPacket packet, long address, int offset, int length, int receiveTimeout, boolean peek)
    
public  intreceiveStream(FileDescriptor aFD, byte[] data, int offset, int count, int timeout)
    
public  intrecvConnectedDatagram(FileDescriptor aFD, DatagramPacket packet, byte[] data, int offset, int length, int receiveTimeout, boolean peek)
    
public  intrecvConnectedDatagramDirect(FileDescriptor aFD, DatagramPacket packet, long address, int offset, int length, int receiveTimeout, boolean peek)
    
public  int[]select(FileDescriptor[] readFDs, FileDescriptor[] writeFDs, long timeout)
    
public  intsendConnectedDatagram(FileDescriptor fd, byte[] data, int offset, int length, boolean bindToDevice)
    
public  intsendConnectedDatagramDirect(FileDescriptor fd, long address, int offset, int length, boolean bindToDevice)
    
public  intsendDatagram(FileDescriptor fd, byte[] data, int offset, int length, int port, boolean bindToDevice, int trafficClass, InetAddress inetAddress)
    
public  intsendDatagram2(FileDescriptor fd, byte[] data, int offset, int length, int port, InetAddress inetAddress)
    
public  intsendDatagramDirect(FileDescriptor fd, long address, int offset, int length, int port, boolean bindToDevice, int trafficClass, InetAddress inetAddress)
    
public  intsendStream(FileDescriptor fd, byte[] data, int offset, int count)
    
public  voidsendUrgentData(FileDescriptor fd, byte value)
    
public  voidsetInetAddress(InetAddress sender, byte[] address)
    
public  voidsetNonBlocking(FileDescriptor aFD, boolean block)
    
public  voidsetSocketOption(FileDescriptor aFD, int opt, Object optVal)
    
public  voidshutdownInput(FileDescriptor descriptor)
    
public  voidshutdownOutput(FileDescriptor descriptor)
    
public  voidsocketClose(FileDescriptor aFD)
    
public  booleansupportsUrgentData(FileDescriptor fd)
    
public  intwrite(FileDescriptor fd, byte[] data, int offset, int count)
    
public  intwriteDirect(FileDescriptor fd, long address, int count)
    

Field Detail
SOCKET_CONNECT_STEP_CHECK
final public int SOCKET_CONNECT_STEP_CHECK(Code)



SOCKET_CONNECT_STEP_START
final public int SOCKET_CONNECT_STEP_START(Code)





Method Detail
accept
public void accept(FileDescriptor fdServer, SocketImpl newSocket, FileDescriptor fdnewSocket, int timeout) throws IOException(Code)



acceptStreamSocket
public void acceptStreamSocket(FileDescriptor fdServer, SocketImpl newSocket, FileDescriptor fdnewSocket, int timeout) throws IOException(Code)



availableStream
public int availableStream(FileDescriptor aFD) throws SocketException(Code)



bind
public void bind(FileDescriptor aFD, int port, InetAddress inetAddress) throws SocketException(Code)



bind2
public boolean bind2(FileDescriptor aFD, int port, boolean bindToDevice, InetAddress inetAddress) throws SocketException(Code)



connect
public int connect(FileDescriptor aFD, int trafficClass, InetAddress inetAddress, int port) throws IOException(Code)



connectDatagram
public void connectDatagram(FileDescriptor aFD, int port, int trafficClass, InetAddress inetAddress) throws SocketException(Code)



connectStreamWithTimeoutSocket
public void connectStreamWithTimeoutSocket(FileDescriptor aFD, int aport, int timeout, int trafficClass, InetAddress inetAddress) throws IOException(Code)



connectWithTimeout
public int connectWithTimeout(FileDescriptor aFD, int timeout, int trafficClass, InetAddress hostname, int port, int step, Long context) throws IOException(Code)



createDatagramSocket
public void createDatagramSocket(FileDescriptor aFD, boolean preferIPv4Stack) throws SocketException(Code)



createMulticastSocket
public void createMulticastSocket(FileDescriptor aFD, boolean preferIPv4Stack) throws SocketException(Code)



createServerStreamSocket
public void createServerStreamSocket(FileDescriptor aFD, boolean preferIPv4Stack) throws SocketException(Code)



createSocket
public void createSocket(FileDescriptor fd, boolean preferIPv4Stack) throws IOException(Code)



createStreamSocket
public void createStreamSocket(FileDescriptor aFD, boolean preferIPv4Stack) throws SocketException(Code)



disconnectDatagram
public void disconnectDatagram(FileDescriptor aFD) throws SocketException(Code)



getHostByAddr
public InetAddress getHostByAddr(byte[] addr) throws UnknownHostException(Code)



getHostByName
public InetAddress getHostByName(String addr, boolean preferIPv6Addresses) throws UnknownHostException(Code)



getSocketFlags
public int getSocketFlags()(Code)



getSocketLocalAddress
public InetAddress getSocketLocalAddress(FileDescriptor aFD, boolean preferIPv6Addresses)(Code)



getSocketLocalPort
public int getSocketLocalPort(FileDescriptor aFD, boolean preferIPv6Addresses)(Code)



getSocketOption
public Object getSocketOption(FileDescriptor aFD, int opt) throws SocketException(Code)



inheritedChannel
public Channel inheritedChannel()(Code)



isReachableByICMP
public boolean isReachableByICMP(InetAddress dest, InetAddress source, int ttl, int timeout)(Code)



listenStreamSocket
public void listenStreamSocket(FileDescriptor aFD, int backlog) throws SocketException(Code)



oneTimeInitialization
public void oneTimeInitialization(boolean jcl_supports_ipv6)(Code)



peekDatagram
public int peekDatagram(FileDescriptor aFD, InetAddress sender, int receiveTimeout) throws IOException(Code)



read
public int read(FileDescriptor aFD, byte[] data, int offset, int count, int timeout) throws IOException(Code)



readDirect
public int readDirect(FileDescriptor aFD, long address, int count, int timeout) throws IOException(Code)



receiveDatagram
public int receiveDatagram(FileDescriptor aFD, DatagramPacket packet, byte[] data, int offset, int length, int receiveTimeout, boolean peek) throws IOException(Code)



receiveDatagramDirect
public int receiveDatagramDirect(FileDescriptor aFD, DatagramPacket packet, long address, int offset, int length, int receiveTimeout, boolean peek) throws IOException(Code)



receiveStream
public int receiveStream(FileDescriptor aFD, byte[] data, int offset, int count, int timeout) throws IOException(Code)



recvConnectedDatagram
public int recvConnectedDatagram(FileDescriptor aFD, DatagramPacket packet, byte[] data, int offset, int length, int receiveTimeout, boolean peek) throws IOException(Code)



recvConnectedDatagramDirect
public int recvConnectedDatagramDirect(FileDescriptor aFD, DatagramPacket packet, long address, int offset, int length, int receiveTimeout, boolean peek) throws IOException(Code)



select
public int[] select(FileDescriptor[] readFDs, FileDescriptor[] writeFDs, long timeout) throws SocketException(Code)



sendConnectedDatagram
public int sendConnectedDatagram(FileDescriptor fd, byte[] data, int offset, int length, boolean bindToDevice) throws IOException(Code)



sendConnectedDatagramDirect
public int sendConnectedDatagramDirect(FileDescriptor fd, long address, int offset, int length, boolean bindToDevice) throws IOException(Code)



sendDatagram
public int sendDatagram(FileDescriptor fd, byte[] data, int offset, int length, int port, boolean bindToDevice, int trafficClass, InetAddress inetAddress) throws IOException(Code)



sendDatagram2
public int sendDatagram2(FileDescriptor fd, byte[] data, int offset, int length, int port, InetAddress inetAddress) throws IOException(Code)



sendDatagramDirect
public int sendDatagramDirect(FileDescriptor fd, long address, int offset, int length, int port, boolean bindToDevice, int trafficClass, InetAddress inetAddress) throws IOException(Code)



sendStream
public int sendStream(FileDescriptor fd, byte[] data, int offset, int count) throws IOException(Code)



sendUrgentData
public void sendUrgentData(FileDescriptor fd, byte value)(Code)



setInetAddress
public void setInetAddress(InetAddress sender, byte[] address)(Code)



setNonBlocking
public void setNonBlocking(FileDescriptor aFD, boolean block) throws IOException(Code)



setSocketOption
public void setSocketOption(FileDescriptor aFD, int opt, Object optVal) throws SocketException(Code)



shutdownInput
public void shutdownInput(FileDescriptor descriptor) throws IOException(Code)



shutdownOutput
public void shutdownOutput(FileDescriptor descriptor) throws IOException(Code)



socketClose
public void socketClose(FileDescriptor aFD) throws IOException(Code)



supportsUrgentData
public boolean supportsUrgentData(FileDescriptor fd)(Code)



write
public int write(FileDescriptor fd, byte[] data, int offset, int count) throws IOException(Code)



writeDirect
public int writeDirect(FileDescriptor fd, long address, int count) throws IOException(Code)



www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.