Searched refs:vc (Results 1 - 2 of 2) sorted by relevance

/libcore/luni/src/test/java/tests/java/sql/
H A DStressTest.java36 Vector<Connection> vc = new Vector<Connection>(); field in class:StressTest
48 vc.clear();
91 // vc.clear();
113 maxConnections, vc.size());
134 assertEquals("Unable to create a connection", numTasks, vc.size());
166 for (int i = 0; i < vc.size(); ++i) {
169 Connection c = vc.elementAt(i);
207 assertEquals("Unable to create a connection", numConnections, vc.size());
252 vc.add(c);
263 for (; i < vc
[all...]
/libcore/ojluni/src/main/java/sun/misc/
H A DSoftCache.java137 ValueCell vc = (ValueCell)val;
138 Object o = vc.get();
139 if (drop) vc.drop();
169 ValueCell vc;
170 while ((vc = (ValueCell)queue.poll()) != null) {
171 if (vc.isValid()) hash.remove(vc.key);
314 ValueCell vc = ValueCell.create(key, value, queue);
315 return ValueCell.strip(hash.put(key, vc), true);
403 ValueCell vc
[all...]

Completed in 57 milliseconds