Searched defs:completionKey (Results 1 - 8 of 8) sorted by relevance

/openjdk7/jdk/src/windows/native/sun/nio/ch/
H A DIocp.c56 completionStatus_completionKey = (*env)->GetFieldID(env, clazz, "completionKey", "I");
73 jlong handle, jlong existingPort, jint completionKey, jint concurrency)
75 ULONG_PTR ck = completionKey;
100 ULONG_PTR completionKey; local
106 &completionKey,
117 (jint)completionKey);
126 jlong completionPort, jint completionKey)
132 (DWORD)completionKey,
72 Java_sun_nio_ch_Iocp_createIoCompletionPort(JNIEnv* env, jclass this, jlong handle, jlong existingPort, jint completionKey, jint concurrency) argument
125 Java_sun_nio_ch_Iocp_postQueuedCompletionStatus(JNIEnv* env, jclass this, jlong completionPort, jint completionKey) argument
/openjdk7/jdk/src/windows/classes/sun/nio/ch/
H A DIocp.java341 if (ioResult.completionKey() == 0 &&
361 ch = keyToChannel.get(ioResult.completionKey());
418 private int completionKey; field in class:Iocp.CompletionStatus
424 int completionKey() { return completionKey; } method in class:Iocp.CompletionStatus
433 long existingPort, int completionKey, int concurrency) throws IOException;
441 int completionKey) throws IOException;
432 createIoCompletionPort(long handle, long existingPort, int completionKey, int concurrency) argument
440 postQueuedCompletionStatus(long completionPort, int completionKey) argument
H A DWindowsAsynchronousServerSocketChannelImpl.java51 private final int completionKey; field in class:WindowsAsynchronousServerSocketChannelImpl
82 this.completionKey = key;
102 iocp.disassociate(completionKey);
H A DWindowsAsynchronousFileChannelImpl.java72 private final int completionKey; field in class:WindowsAsynchronousFileChannelImpl
95 this.completionKey = iocp.associate(this, handle);
150 iocp.disassociate(completionKey);
H A DWindowsAsynchronousSocketChannelImpl.java73 private final int completionKey; field in class:WindowsAsynchronousSocketChannelImpl
108 this.completionKey = key;
164 if (completionKey != 0)
165 iocp.disassociate(completionKey);
/openjdk7/jdk/src/windows/classes/sun/nio/fs/
H A DWindowsWatchService.java107 private int completionKey; field in class:WindowsWatchService.WindowsWatchKey
123 int completionKey)
131 this.completionKey = completionKey;
167 int completionKey() { method in class:WindowsWatchService.WindowsWatchKey
168 return completionKey;
374 int completionKey = ++lastCompletionKey;
375 if (completionKey == 0)
376 completionKey = ++lastCompletionKey;
380 CreateIoCompletionPort(handle, port, completionKey);
117 init(long handle, Set<? extends WatchEvent.Kind<?>> events, boolean watchSubtree, NativeBuffer buffer, long countAddress, long overlappedAddress, int completionKey) argument
[all...]
H A DWindowsNativeDispatcher.java981 int completionKey) throws WindowsException;
1002 private int completionKey; field in class:WindowsNativeDispatcher.CompletionStatus
1007 int completionKey() { return completionKey; } method in class:WindowsNativeDispatcher.CompletionStatus
1021 int completionKey) throws WindowsException;
980 CreateIoCompletionPort(long fileHandle, long existingPort, int completionKey) argument
1020 PostQueuedCompletionStatus(long completionPort, int completionKey) argument
/openjdk7/jdk/src/windows/native/sun/nio/fs/
H A DWindowsNativeDispatcher.c165 completionStatus_completionKey = (*env)->GetFieldID(env, clazz, "completionKey", "I");
1172 jlong fileHandle, jlong existingPort, jint completionKey)
1174 ULONG_PTR ck = completionKey;
1190 ULONG_PTR completionKey; local
1196 &completionKey,
1207 (jint)completionKey);
1214 jlong completionPort, jint completionKey)
1220 (DWORD)completionKey,
1171 Java_sun_nio_fs_WindowsNativeDispatcher_CreateIoCompletionPort(JNIEnv* env, jclass this, jlong fileHandle, jlong existingPort, jint completionKey) argument
1213 Java_sun_nio_fs_WindowsNativeDispatcher_PostQueuedCompletionStatus(JNIEnv* env, jclass this, jlong completionPort, jint completionKey) argument

Completed in 49 milliseconds