Searched defs:iocp (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/windows/classes/sun/nio/ch/
H A DWindowsAsynchronousServerSocketChannelImpl.java52 private final Iocp iocp; field in class:WindowsAsynchronousServerSocketChannelImpl
68 WindowsAsynchronousServerSocketChannelImpl(Iocp iocp) throws IOException { argument
69 super(iocp);
75 key = iocp.associate(this, h);
83 this.iocp = iocp;
102 iocp.disassociate(completionKey);
110 return iocp;
235 if (iocp.isShutdown()) {
316 ch = new WindowsAsynchronousSocketChannelImpl(iocp, fals
[all...]
H A DWindowsAsynchronousFileChannelImpl.java75 private final Iocp iocp; field in class:WindowsAsynchronousFileChannelImpl
86 Iocp iocp,
90 super(fdObj, reading, writing, iocp.executor());
92 this.iocp = iocp;
95 this.completionKey = iocp.associate(this, handle);
104 Iocp iocp;
107 iocp = DefaultIocpHolder.defaultIocp;
110 iocp = new Iocp(null, pool).start();
115 WindowsAsynchronousFileChannelImpl(fdo, reading, writing, iocp, isDefaultIoc
83 WindowsAsynchronousFileChannelImpl(FileDescriptor fdObj, boolean reading, boolean writing, Iocp iocp, boolean isDefaultIocp) argument
[all...]
H A DWindowsAsynchronousSocketChannelImpl.java70 private final Iocp iocp; field in class:WindowsAsynchronousSocketChannelImpl
86 WindowsAsynchronousSocketChannelImpl(Iocp iocp, boolean failIfGroupShutdown) argument
89 super(iocp);
95 key = iocp.associate(this, h);
107 this.iocp = iocp;
116 WindowsAsynchronousSocketChannelImpl(Iocp iocp) throws IOException { argument
117 this(iocp, true);
122 return iocp;
165 iocp
[all...]

Completed in 40 milliseconds