Searched refs:grp (Results 1 - 6 of 6) sorted by relevance

/openjdk7/jdk/test/java/net/MulticastSocket/
H A DSetLoopbackMode.java37 static boolean test(MulticastSocket mc, InetAddress grp) throws IOException { argument
48 DatagramPacket p = new DatagramPacket(b, b.length, grp,
92 InetAddress grp = InetAddress.getByName("224.80.80.80");
102 grp = InetAddress.getByName("ff01::1");
105 System.out.println("\nTest will use multicast group: " + grp);
106 mc.joinGroup(grp);
111 if (test(mc, grp) == FAILED) failures++;
116 if (test(mc, grp) == FAILED) failures++;
/openjdk7/jdk/test/sun/net/www/http/KeepAliveCache/
H A DKeepAliveTimerThread.java111 ThreadGroup grp = new ThreadGroup("MyGroup");
114 Thread thr = new Thread(grp, new Fetcher(url));
119 if (grp.activeCount() > 0) {
123 grp.destroy();
/openjdk7/jdk/src/share/classes/sun/net/www/http/
H A DKeepAliveStream.java179 ThreadGroup grp = Thread.currentThread().getThreadGroup();
181 while ((parent = grp.getParent()) != null) {
182 grp = parent;
185 cleanerThread = new Thread(grp, queue, "Keep-Alive-SocketCleaner");
H A DKeepAliveCache.java100 ThreadGroup grp = Thread.currentThread().getThreadGroup();
102 while ((parent = grp.getParent()) != null) {
103 grp = parent;
106 keepAliveTimer = new Thread(grp, cache, "Keep-Alive-Timer");
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DAbstractLauncher.java50 ThreadGroup grp; field in class:AbstractLauncher
55 grp = Thread.currentThread().getThreadGroup();
57 while ((parent = grp.getParent()) != null) {
58 grp = parent;
231 Thread thread = new Thread(grp,
251 Thread thread = new Thread(grp,
/openjdk7/jdk/src/solaris/native/sun/nio/fs/
H A DUnixNativeDispatcher.c33 #include <grp.h>

Completed in 390 milliseconds