Searched refs:totalConn (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/solaris/demo/jni/Poller/
H A DClient.java52 private static int totalConn =10; field in class:Client
70 totalConn = java.lang.Integer.valueOf(args[0]).intValue();
77 if (totalConn <= 0 || totalConn > MAXCONN) {
82 System.out.println("Using " + totalConn + " connections for sending " +
91 ctrlStream.println(totalConn);
93 while (connections < totalConn ) {
105 int idx = java.lang.Math.abs(rand.nextInt()) % totalConn;
H A DSimpleServer.java69 int totalConn=0;
85 totalConn = Integer.valueOf(ctrlString).intValue();
88 totalConn + " client connections");
97 while ( conn < totalConn ) {
108 System.out.println("Time for all reads (" + totalConn +
H A DPollingServer.java85 int totalConn=0;
106 totalConn = Integer.valueOf(ctrlString).intValue();
109 totalConn + " client connections");
186 System.out.println("Time for all reads (" + totalConn +

Completed in 31 milliseconds