Searched refs:cf (Results 226 - 250 of 391) sorted by relevance

1234567891011>>

/openjdk9/jdk/test/java/lang/instrument/appendToClassLoaderSearch/
H A DClassUnloadTest.sh69 $JAR ${TESTTOOLVMOPTS} cf "${OTHERDIR}"/Bar.jar Bar.class; \
/openjdk9/jdk/test/java/lang/Class/forName/modules/src/m3/p3/
H A DNoAccess.java51 Configuration cf = parent.resolveAndBind(finder,
56 ModuleLayer layer = bootLayer.defineModulesWithManyLoaders(cf, scl);
/openjdk9/jdk/test/java/lang/ModuleTests/
H A DWithSecurityManager.java125 Configuration cf = bootLayer
128 ModuleLayer layer = bootLayer.defineModulesWithOneLoader(cf, null);
/openjdk9/jdk/test/java/lang/reflect/Proxy/
H A DProxyClassAccessTest.java91 Configuration cf = bootLayer
95 ModuleLayer layer = bootLayer.defineModulesWithOneLoader(cf, parentLoader);
/openjdk9/jdk/test/java/net/httpclient/http2/
H A DServerPush.java72 CompletableFuture<MultiMapResult<Path>> cf =
86 MultiMapResult<Path> results = cf.get();
/openjdk9/jdk/test/java/rmi/activation/Activatable/extLoadedImpl/
H A Dext.sh52 $COMPILEJAVA/bin/jar ${TESTTOOLVMOPTS} cf ext/ext.jar -C $TESTCLASSES ExtLoadedImpl.class -C $TESTCLASSES ExtLoadedImpl_Stub.class -C $TESTCLASSES CheckLoader.class
/openjdk9/jdk/test/lib/security/
H A DCheckBlacklistedCerts.java78 CertificateFactory cf = CertificateFactory.getInstance("X.509");
86 = cf.generateCertificates(fis);
/openjdk9/langtools/test/tools/javac/
H A DNoStringToLower.java109 ClassFile cf = ClassFile.read(in);
110 for (ConstantPool.CPInfo cpinfo: cf.constant_pool.entries()) {
/openjdk9/langtools/test/tools/javac/classfiles/attributes/innerclasses/
H A DInnerClassesTestBase.java202 ClassFile cf = readClassFile(compile(test.getSource())
205 cf.getAttribute(Attribute.InnerClasses);
207 for (Attribute a : cf.attributes.attrs) {
216 checkEquals(cf.constant_pool.
227 String baseName = cf.constant_pool.getClassInfo(
229 if (cf.major_version >= 51 && e.inner_name_index == 0) {
245 cf.constant_pool.getClassInfo(e.inner_class_info_index).getBaseName(),
250 cf.constant_pool.getClassInfo(e.outer_class_info_index).getName(),
/openjdk9/jdk/test/java/util/ResourceBundle/modules/modlocal/
H A Dmodlocal.sh67 $JAR -cf extra.jar -C $TESTSRC/src/extra jdk/test/resources
/openjdk9/langtools/test/tools/javac/lambda/
H A DTestInvokeDynamic.java274 ClassFile cf = ClassFile.read(is);
276 for (Method m : cf.methods) {
277 if (m.getName(cf.constant_pool).equals("test")) {
298 (CONSTANT_InvokeDynamic_info)cf
313 (BootstrapMethods_attribute)cf
330 if (!saks[i].check(cf.constant_pool
338 (CONSTANT_MethodHandle_info)cf.constant_pool
347 (CONSTANT_Methodref_info)cf.constant_pool
/openjdk9/jdk/test/java/lang/invoke/indify/
H A DIndify.java263 ClassFile cf = new ClassFile(f);
264 Logic logic = new Logic(cf);
271 outfile = classPathFile(dest, cf.nameString());
275 cf.writeTo(outfile);
361 ClassFile cf = new ClassFile(f);
362 Logic logic = new Logic(cf);
366 byte[] bytes = cf.toByteArray();
373 ClassFile cf; field in class:Indify.Logic
377 Logic(ClassFile cf) { argument
378 this.cf
[all...]
/openjdk9/langtools/test/tools/javac/modules/
H A DAnnotationsOnModules.java88 ClassFile cf = ClassFile.read(modulePath.resolve("m1x").resolve("module-info.class"));
89 RuntimeVisibleAnnotations_attribute annotations = (RuntimeVisibleAnnotations_attribute) cf.attributes.map.get(Attribute.RuntimeVisibleAnnotations);
142 ClassFile cf = ClassFile.read(modulePath.resolve("A").resolve("module-info.class"));
143 RuntimeVisibleAnnotations_attribute annotations = (RuntimeVisibleAnnotations_attribute) cf.attributes.map.get(Attribute.RuntimeVisibleAnnotations);
149 if (cf.attributes.map.get(Attribute.Deprecated) != null) {
193 ClassFile cf = ClassFile.read(modulePath.resolve("A").resolve("module-info.class"));
194 RuntimeVisibleAnnotations_attribute annotations = (RuntimeVisibleAnnotations_attribute) cf.attributes.map.get(Attribute.RuntimeVisibleAnnotations);
315 ClassFile cf = ClassFile.read(modulePath.resolve("m1x").resolve("module-info.class"));
316 RuntimeInvisibleAnnotations_attribute annotations = (RuntimeInvisibleAnnotations_attribute) cf.attributes.map.get(Attribute.RuntimeInvisibleAnnotations);
357 ClassFile cf
[all...]
/openjdk9/jdk/src/java.base/share/classes/jdk/internal/module/
H A DModules.java191 Configuration cf = top.configuration().resolveAndBind(empty, finder, roots);
194 Function<String, ClassLoader> clf = ModuleLoaderMap.mappingFunction(cf);
195 ModuleLayer newLayer = top.defineModules(cf, clf);
232 for (ResolvedModule resolvedModule : cf.modules()) {
/openjdk9/jdk/src/java.xml.crypto/share/classes/com/sun/org/apache/xml/internal/security/keys/storage/implementations/
H A DCertsInFilesystemDirectoryResolver.java92 CertificateFactory cf = null;
95 cf = CertificateFactory.getInstance("X.509");
100 if (cf == null) {
114 (X509Certificate) cf.generateCertificate(fis);
/openjdk9/langtools/test/tools/javac/7003595/
H A DT7003595.java162 ClassFile cf = ClassFile.read(compiledTest);
163 if (cf == null) {
167 InnerClasses_attribute innerClasses = (InnerClasses_attribute)cf.getAttribute(Attribute.InnerClasses);
172 String foundSig = info.getInnerClassInfo(cf.constant_pool).getName();
/openjdk9/langtools/test/tools/javap/
H A DT6866657.java63 expectEqual(cfInfo.cf.byteLength(), cfInfo.size);
H A DT7186925.java59 expectEqual(cfInfo.cf.byteLength(), cfInfo.size);
/openjdk9/jdk/src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/internal/websocket/
H A DWebSocketImpl.java322 CompletableFuture<WebSocket> cf = new CompletableFuture<>();
323 boolean added = queue.add(pair(m, cf));
329 return cf;
343 CompletableFuture<WebSocket> cf = p.second;
348 cf.complete(WebSocketImpl.this);
350 cf.completeExceptionally(e);
357 cf.completeExceptionally(t);
/openjdk9/jdk/src/java.base/share/classes/com/sun/crypto/provider/
H A DJceKeyStore.java677 CertificateFactory cf = null;
711 cf = CertificateFactory.getInstance("X509");
762 cf = cfs.get(certType);
765 cf = CertificateFactory.getInstance(
769 cfs.put(certType, cf);
780 entry.chain[j] = cf.generateCertificate(bais);
804 cf = cfs.get(certType);
807 cf = CertificateFactory.getInstance(certType);
810 cfs.put(certType, cf);
820 entry.cert = cf
[all...]
/openjdk9/jdk/src/java.base/share/classes/java/security/
H A DUnresolvedPermission.java551 CertificateFactory cf;
574 cf = cfs.get(certType);
578 cf = CertificateFactory.getInstance(certType);
584 cfs.put(certType, cf);
596 this.certs[i] = cf.generateCertificate(bais);
/openjdk9/hotspot/src/share/vm/runtime/
H A Dframe.hpp401 void oops_do_internal(OopClosure* f, CodeBlobClosure* cf, RegisterMap* map, bool use_interpreter_oop_map_cache);
403 void oops_code_blob_do(OopClosure* f, CodeBlobClosure* cf, const RegisterMap* map);
407 void oops_do(OopClosure* f, CodeBlobClosure* cf, RegisterMap* map) { oops_do_internal(f, cf, map, true); } argument
408 void nmethods_do(CodeBlobClosure* cf);
/openjdk9/jdk/src/java.xml.crypto/share/classes/org/jcp/xml/dsig/internal/dom/
H A DDOMX509Data.java57 private CertificateFactory cf; field in class:DOMX509Data
227 return (X509Certificate)cf.generateCertificate(bs);
236 return (X509CRL)cf.generateCRL(bs);
245 if (cf == null) {
246 cf = CertificateFactory.getInstance("X.509");
/openjdk9/jdk/src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/
H A DResponseProcessors.java307 final CompletableFuture<T> cf = new MinimalFuture<>(); field in class:ResponseProcessors.NullProcessor
328 cf.completeExceptionally(throwable);
334 cf.complete(result.get());
336 cf.complete(null);
342 return cf;
/openjdk9/jdk/test/javax/xml/crypto/dsig/
H A DKeySelectors.java199 private CertificateFactory cf; field in class:KeySelectors.CollectionKeySelector
211 cf = CertificateFactory.getInstance("X509");
219 certs.add((X509Certificate)cf.generateCertificate(fis));
293 cf.generateCertificate(fis);
319 cf.generateCertificate(fis);

Completed in 246 milliseconds

1234567891011>>