Searched refs:cpe (Results 1 - 24 of 24) sorted by relevance

/openjdk10/jdk/test/javax/naming/spi/DirectoryManager/
H A DGetContDirCtx.java41 CannotProceedException cpe = new CannotProceedException();
43 cpe.setEnvironment(env);
48 cpe.setResolvedObj(ref);
51 contCtx = DirectoryManager.getContinuationDirContext(cpe);
56 if (contEnv.get(NamingManager.CPE) != cpe) {
/openjdk10/jdk/src/java.naming/share/classes/javax/naming/spi/
H A DContinuationContext.java40 protected CannotProceedException cpe; field in class:ContinuationContext
44 protected ContinuationContext(CannotProceedException cpe, argument
46 this.cpe = cpe;
52 if (cpe.getResolvedObj() == null)
53 throw (NamingException)cpe.fillInStackTrace();
55 contCtx = NamingManager.getContext(cpe.getResolvedObj(),
56 cpe.getAltName(),
57 cpe.getAltNameCtx(),
60 throw (NamingException)cpe
[all...]
H A DContinuationDirContext.java54 ContinuationDirContext(CannotProceedException cpe, Hashtable<?,?> env) { argument
55 super(cpe, env);
61 if (cpe.getResolvedObj() == null)
62 throw (NamingException)cpe.fillInStackTrace();
64 Context ctx = NamingManager.getContext(cpe.getResolvedObj(),
65 cpe.getAltName(),
66 cpe.getAltNameCtx(),
69 throw (NamingException)cpe.fillInStackTrace();
91 throw (NamingException)cpe.fillInStackTrace();
97 if (cpe
[all...]
H A DDirectoryManager.java80 * @param cpe
89 CannotProceedException cpe) throws NamingException {
91 Hashtable<Object,Object> env = (Hashtable<Object,Object>)cpe.getEnvironment();
98 env.put(CPE, cpe);
100 return (new ContinuationDirContext(cpe, env));
88 getContinuationDirContext( CannotProceedException cpe) argument
H A DNamingManager.java808 * Before making use of the {@code cpe} parameter, this method
811 * to {@code cpe}. This property will be inherited by the
815 * @param cpe
821 public static Context getContinuationContext(CannotProceedException cpe) argument
824 Hashtable<Object,Object> env = (Hashtable<Object,Object>)cpe.getEnvironment();
831 env.put(CPE, cpe);
833 ContinuationContext cctx = new ContinuationContext(cpe, env);
/openjdk10/corba/src/java.corba/share/classes/com/sun/jndi/cosnaming/
H A DExceptionMapper.java166 CannotProceedException cpe = new CannotProceedException();
167 cpe.setRootCause(e);
169 cpe.setRemainingName(CNNameParser.cosNameToName(rest));
171 cpe.setEnvironment(ctx._env);
174 System.out.println("rest of name: " + cpe.getRemainingName());
198 cpe.setResolvedObj(ref);
199 cpe.setAltName(cname);
200 cpe.setAltNameCtx((javax.naming.Context)resolvedObj);
202 return cpe;
225 cpe
[all...]
H A DCNCtx.java570 } catch (CannotProceedException cpe) {
571 javax.naming.Context cctx = getContinuationContext(cpe);
572 return cctx.lookup(cpe.getRemainingName());
663 getContinuationContext(CannotProceedException cpe) argument
666 return NamingManager.getContinuationContext(cpe);
675 ne.setRootCause(cpe.getRootCause());
676 ne.setRemainingName(cpe.getRemainingName());
/openjdk10/hotspot/src/share/vm/classfile/
H A DsharedClassUtil.hpp54 static void update_shared_classpath(ClassPathEntry *cpe, argument
/openjdk10/jdk/test/java/security/Exceptions/
H A DChainingConstructors.java168 CertificateParsingException cpe =
170 if (!cpe.getCause().equals(cause)) {
173 cpe = new CertificateParsingException(MSG, cause);
174 if (!cpe.getMessage().equals(MSG) || !cpe.getCause().equals(cause)) {
/openjdk10/jdk/src/java.naming/share/classes/com/sun/jndi/toolkit/ctx/
H A DContinuation.java158 CannotProceedException cpe = (CannotProceedException)e;
161 cpe.setEnvironment(env);
162 cpe.setAltNameCtx(resolvedContext);
163 cpe.setAltName(relativeResolvedName);
/openjdk10/jdk/src/java.base/share/classes/sun/security/provider/certpath/
H A DPKIXCertPathValidator.java141 } catch (CertPathValidatorException cpe) {
143 lastException = cpe;
H A DOCSPResponse.java501 } catch (CertificateParsingException cpe) {
505 "OCSP responses", cpe);
/openjdk10/corba/src/java.corba/share/classes/com/sun/jndi/url/iiop/
H A DGenericURLContext.java199 CannotProceedException cpe = new CannotProceedException();
200 cpe.setResolvedObj(obj);
201 cpe.setEnvironment(myEnv);
202 return NamingManager.getContinuationContext(cpe);
/openjdk10/jdk/src/java.naming/share/classes/com/sun/jndi/toolkit/url/
H A DGenericURLContext.java197 CannotProceedException cpe = new CannotProceedException();
198 cpe.setResolvedObj(obj);
199 cpe.setEnvironment(myEnv);
200 return NamingManager.getContinuationContext(cpe);
H A DGenericURLDirContext.java68 CannotProceedException cpe = new CannotProceedException();
69 cpe.setResolvedObj(obj);
70 cpe.setEnvironment(myEnv);
71 return DirectoryManager.getContinuationDirContext(cpe);
/openjdk10/langtools/test/tools/javac/annotations/typeAnnotations/classfile/
H A DTestAnonInnerClasses.java217 catch (ConstantPoolException cpe) { cpe.printStackTrace(); }
223 catch (ConstantPoolException cpe) { cpe.printStackTrace(); }
H A DClassfileTestHelper.java179 } catch(ConstantPoolException cpe) { cpe.printStackTrace(); }
H A DTestNewCastArray.java128 } catch(ConstantPoolException cpe) { cpe.printStackTrace(); }
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.test/src/org/graalvm/compiler/hotspot/test/
H A DCompileTheWorld.java515 ClassPathEntry cpe;
517 cpe = new JarClassPathEntry(entry);
519 cpe = new JRTClassPathEntry(entry, Options.LimitModules.getValue(currentOptions));
526 cpe = new DirClassPathEntry(entry);
541 ClassLoader loader = cpe.createClassLoader();
543 for (String className : cpe.getClassNames()) {
615 cpe.close();
/openjdk10/hotspot/src/share/vm/memory/
H A Dfilemap.cpp282 ClassPathEntry *cpe = ClassLoader::classpath_entry(i); local
283 const char* type = ((i == 0) ? "jrt" : (cpe->is_jar_file() ? "jar" : "dir"));
285 log_info(class, path)("add main shared path (%s) %s", type, cpe->name());
287 ent->init(cpe->name(), THREAD);
291 SharedClassUtil::update_shared_classpath(cpe, ent, THREAD);
/openjdk10/jdk/test/com/sun/nio/sctp/SctpChannel/
H A DConnect.java93 } catch (ConnectionPendingException cpe) {
/openjdk10/jdk/src/java.base/share/classes/sun/net/www/protocol/https/
H A DHttpsClient.java642 } catch (java.security.cert.CertificateException cpe) {
/openjdk10/jdk/src/java.base/share/classes/sun/security/ssl/
H A DClientHandshaker.java1720 } catch (CertificateParsingException cpe) {
1730 } catch (CertificateParsingException cpe) {
/openjdk10/nashorn/test/script/basic/
H A DJDK-8017084.js2480 cpe: 2449,

Completed in 176 milliseconds