Searched refs:objs (Results 1 - 25 of 47) sorted by relevance

12

/openjdk7/jdk/src/share/classes/com/sun/tools/hat/internal/server/
H A DFinalizerObjectsQuery.java40 Enumeration objs = snapshot.getFinalizerObjects();
47 while (objs.hasMoreElements()) {
48 printThing((JavaHeapObject)objs.nextElement());
H A DFinalizerSummaryQuery.java40 Enumeration objs = snapshot.getFinalizerObjects();
47 printFinalizerSummary(objs);
77 private void printFinalizerSummary(Enumeration objs) { argument
81 while (objs.hasMoreElements()) {
82 JavaHeapObject obj = (JavaHeapObject) objs.nextElement();
/openjdk7/jdk/test/java/rmi/reliability/benchmark/bench/serial/
H A DRepeatObjs.java54 Node[] objs = genObjs(size);
61 doReps(oout, oin, sbuf, objs, 1); // warmup
64 doReps(oout, oin, sbuf, objs, nbatches);
72 Node[] objs = new Node[nobjs];
74 objs[i] = new Node();
75 return objs;
82 StreamBuffer sbuf, Node[] objs, int nbatches)
85 int nobjs = objs.length;
89 oout.writeObject(objs[j]);
81 doReps(ObjectOutputStream oout, ObjectInputStream oin, StreamBuffer sbuf, Node[] objs, int nbatches) argument
/openjdk7/jdk/test/sun/rmi/rmic/newrmic/equivalence/
H A DMyObject.java29 public void method2(MyObject[] objs) throws RemoteException; argument
H A DMyObjectImpl.java50 public void method2(MyObject[] objs) throws RemoteException { argument
/openjdk7/jdk/src/share/classes/java/security/
H A DAlgorithmParameterGenerator.java159 Object[] objs = Security.getImpl(algorithm,
163 ((AlgorithmParameterGeneratorSpi)objs[0],
164 (Provider)objs[1],
212 Object[] objs = Security.getImpl(algorithm,
216 ((AlgorithmParameterGeneratorSpi)objs[0], (Provider)objs[1],
256 Object[] objs = Security.getImpl(algorithm,
260 ((AlgorithmParameterGeneratorSpi)objs[0], (Provider)objs[1],
H A DAlgorithmParameters.java146 Object[] objs = Security.getImpl(algorithm, "AlgorithmParameters",
148 return new AlgorithmParameters((AlgorithmParametersSpi)objs[0],
149 (Provider)objs[1],
199 Object[] objs = Security.getImpl(algorithm, "AlgorithmParameters",
201 return new AlgorithmParameters((AlgorithmParametersSpi)objs[0],
202 (Provider)objs[1],
244 Object[] objs = Security.getImpl(algorithm, "AlgorithmParameters",
246 return new AlgorithmParameters((AlgorithmParametersSpi)objs[0],
247 (Provider)objs[1],
H A DMessageDigest.java159 Object[] objs = Security.getImpl(algorithm, "MessageDigest",
161 if (objs[0] instanceof MessageDigest) {
162 MessageDigest md = (MessageDigest)objs[0];
163 md.provider = (Provider)objs[1];
167 new Delegate((MessageDigestSpi)objs[0], algorithm);
168 delegate.provider = (Provider)objs[1];
215 Object[] objs = Security.getImpl(algorithm, "MessageDigest", provider);
216 if (objs[0] instanceof MessageDigest) {
217 MessageDigest md = (MessageDigest)objs[0];
218 md.provider = (Provider)objs[
[all...]
/openjdk7/jdk/src/share/classes/com/sun/net/ssl/
H A DKeyManagerFactory.java126 Object[] objs = SSLSecurity.getImpl(algorithm, "KeyManagerFactory",
128 return new KeyManagerFactory((KeyManagerFactorySpi)objs[0],
129 (Provider)objs[1],
157 Object[] objs = SSLSecurity.getImpl(algorithm, "KeyManagerFactory",
159 return new KeyManagerFactory((KeyManagerFactorySpi)objs[0],
160 (Provider)objs[1], algorithm);
182 Object[] objs = SSLSecurity.getImpl(algorithm, "KeyManagerFactory",
184 return new KeyManagerFactory((KeyManagerFactorySpi)objs[0],
185 (Provider)objs[1], algorithm);
H A DSSLContext.java86 Object[] objs = SSLSecurity.getImpl(protocol, "SSLContext",
88 return new SSLContext((SSLContextSpi)objs[0], (Provider)objs[1],
114 Object[] objs = SSLSecurity.getImpl(protocol, "SSLContext",
116 return new SSLContext((SSLContextSpi)objs[0], (Provider)objs[1],
137 Object[] objs = SSLSecurity.getImpl(protocol, "SSLContext",
139 return new SSLContext((SSLContextSpi)objs[0], (Provider)objs[1],
H A DTrustManagerFactory.java128 Object[] objs = SSLSecurity.getImpl(algorithm,
130 return new TrustManagerFactory((TrustManagerFactorySpi)objs[0],
131 (Provider)objs[1],
159 Object[] objs = SSLSecurity.getImpl(algorithm, "TrustManagerFactory",
161 return new TrustManagerFactory((TrustManagerFactorySpi)objs[0],
162 (Provider)objs[1], algorithm);
184 Object[] objs = SSLSecurity.getImpl(algorithm, "TrustManagerFactory",
186 return new TrustManagerFactory((TrustManagerFactorySpi)objs[0],
187 (Provider)objs[1], algorithm);
/openjdk7/jdk/test/java/rmi/reliability/benchmark/bench/rmi/
H A DExportObjs.java48 Remote[] objs = new Remote[size];
50 objs[i] = new RemoteObj();
54 UnicastRemoteObject.exportObject(objs[i],0);
58 UnicastRemoteObject.unexportObject(objs[i], true);
H A DRemoteObjArrayCalls.java74 Remote[] objs = new Remote[size];
76 objs[i] = new RemoteObj();
80 stub.call(objs);
/openjdk7/jdk/test/sun/security/x509/AVA/
H A DAVAEqualsHashCode.java57 Object[] objs = new Object[2];
58 objs[0] = oid;
59 objs[1] = dv;
62 ava1 = c.newInstance(objs);
63 ava2 = c.newInstance(objs);
/openjdk7/jdk/test/java/lang/management/ManagementFactory/
H A DGetPlatformMXBeans.java136 private static void checkMemoryManagerMXBeans(List<MemoryManagerMXBean> objs) argument
139 checkPlatformMXBeans(objs, MemoryManagerMXBean.class);
140 for (MemoryManagerMXBean mxbean : objs) {
155 private static void checkMemoryPoolMXBeans(List<MemoryPoolMXBean> objs) argument
158 checkPlatformMXBeans(objs, MemoryPoolMXBean.class);
159 for (MemoryPoolMXBean mxbean : objs) {
169 private static void checkGarbageCollectorMXBeans(List<GarbageCollectorMXBean> objs) argument
172 checkPlatformMXBeans(objs, GarbageCollectorMXBean.class);
173 for (GarbageCollectorMXBean mxbean : objs) {
184 void checkPlatformMXBeans(List<T> objs, Clas argument
[all...]
/openjdk7/jdk/test/sun/security/util/DerInputBuffer/
H A DDerInputBufferEqualsHashCode.java56 Object[] objs = new Object[1];
57 objs[0] = ba;
61 db1 = c.newInstance(objs);
62 db2 = c.newInstance(objs);
/openjdk7/jdk/make/tools/reorder/tools/
H A DMaxTime.java109 String[] objs = new String[0];
110 Method mainMethod = clazz.getMethod("main", new Class[]{objs.getClass()});
111 mainMethod.invoke(null, new Object[]{objs});
/openjdk7/jdk/test/java/io/Serializable/writeReplace/
H A DWriteReplace.java54 ReplaceMe[] objs = new ReplaceMe[nobjs];
56 objs[i] = new ReplaceMe(common);
63 oout.writeObject(objs[j]);
/openjdk7/jdk/src/share/classes/sun/security/x509/
H A DCRLExtensions.java150 Object[] objs = allExts.toArray();
152 for (int i = 0; i < objs.length; i++) {
153 if (objs[i] instanceof CertAttrSet)
154 ((CertAttrSet)objs[i]).encode(extOut);
155 else if (objs[i] instanceof Extension)
156 ((Extension)objs[i]).encode(extOut);
257 Object[] objs = otherC.toArray();
259 int len = objs.length;
266 if (objs[i] instanceof CertAttrSet)
267 key = ((CertAttrSet)objs[
[all...]
H A DCertificateExtensions.java170 Object[] objs = allExts.toArray();
172 for (int i = 0; i < objs.length; i++) {
173 if (objs[i] instanceof CertAttrSet)
174 ((CertAttrSet)objs[i]).encode(extOut);
175 else if (objs[i] instanceof Extension)
176 ((Extension)objs[i]).encode(extOut);
307 Object[] objs = otherC.toArray();
309 int len = objs.length;
316 if (objs[i] instanceof CertAttrSet)
317 key = ((CertAttrSet)objs[
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/proc/
H A DProcCDebugger.java52 List objs = getLoadObjectList();
53 Object[] arr = objs.toArray();
/openjdk7/hotspot/src/share/vm/runtime/
H A DbiasedLocking.hpp181 static void revoke(GrowableArray<Handle>* objs);
183 static void revoke_at_safepoint(GrowableArray<Handle>* objs);
/openjdk7/langtools/test/tools/javac/typeAnnotations/newlocations/
H A DBasicTest.java74 void test3(Object @A... objs) { argument
/openjdk7/jdk/test/java/lang/management/MemoryMXBean/
H A DPending.java108 Object[] objs = new Object[REF_COUNT];
110 objs[i] = new MyObject();
122 objs = null;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/bsd/
H A DBsdCDebugger.java56 List objs = getLoadObjectList();
57 Object[] arr = objs.toArray();

Completed in 100 milliseconds

12