Searched refs:isa_ctorID (Results 1 - 5 of 5) sorted by relevance

/openjdk9/jdk/src/java.base/unix/native/libnio/ch/
H A DServerSocketChannelImpl.c51 static jmethodID isa_ctorID; /* .InetSocketAddress(InetAddress, int) */ variable
71 isa_ctorID = (*env)->GetMethodID(env, cls, "<init>",
73 CHECK_NULL(isa_ctorID);
117 isa = (*env)->NewObject(env, isa_class, isa_ctorID, remote_ia, remote_port);
H A DDatagramChannelImpl.c53 static jmethodID isa_ctorID; /* .InetSocketAddress(InetAddress, int) */ variable
65 isa_ctorID = (*env)->GetMethodID(env, clazz, "<init>",
67 CHECK_NULL(isa_ctorID);
198 isa = (*env)->NewObject(env, isa_class, isa_ctorID, ia, port);
/openjdk9/jdk/src/java.base/windows/native/libnio/ch/
H A DServerSocketChannelImpl.c48 static jmethodID isa_ctorID; /* InetSocketAddress(InetAddress, int) */ variable
70 isa_ctorID = (*env)->GetMethodID(env, cls, "<init>",
72 CHECK_NULL(isa_ctorID);
113 isa = (*env)->NewObject(env, isa_class, isa_ctorID, remote_ia, remote_port);
H A DDatagramChannelImpl.c41 static jmethodID isa_ctorID; /* java.net.InetSocketAddress(InetAddress, int) */ variable
54 isa_ctorID = (*env)->GetMethodID(env, clazz, "<init>",
56 CHECK_NULL(isa_ctorID);
199 isa = (*env)->NewObject(env, isa_class, isa_ctorID, ia, port);
/openjdk9/jdk/src/java.base/windows/native/libnet/
H A DDualStackPlainSocketImpl.c34 static jmethodID isa_ctorID; /* InetSocketAddress(InetAddress, int) */ variable
48 isa_ctorID = (*env)->GetMethodID(env, cls, "<init>",
50 CHECK_NULL(isa_ctorID);
300 isa = (*env)->NewObject(env, isa_class, isa_ctorID, ia, port);

Completed in 153 milliseconds