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

/openjdk7/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) {
/openjdk7/jdk/src/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.java53 ContinuationDirContext(CannotProceedException cpe, Hashtable env) { argument
54 super(cpe, env);
60 if (cpe.getResolvedObj() == null)
61 throw (NamingException)cpe.fillInStackTrace();
63 Context ctx = NamingManager.getContext(cpe.getResolvedObj(),
64 cpe.getAltName(),
65 cpe.getAltNameCtx(),
68 throw (NamingException)cpe.fillInStackTrace();
90 throw (NamingException)cpe.fillInStackTrace();
96 if (cpe
[all...]
H A DDirectoryManager.java80 * @param cpe
88 CannotProceedException cpe) throws NamingException {
90 Hashtable env = cpe.getEnvironment();
97 env.put(CPE, cpe);
99 return (new ContinuationDirContext(cpe, env));
87 getContinuationDirContext( CannotProceedException cpe) argument
H A DNamingManager.java762 * Before making use of the <tt>cpe</tt> parameter, this method
765 * to <tt>cpe</tt>. This property will be inherited by the
769 * @param cpe
774 public static Context getContinuationContext(CannotProceedException cpe) argument
777 Hashtable env = cpe.getEnvironment();
784 env.put(CPE, cpe);
786 ContinuationContext cctx = new ContinuationContext(cpe, env);
/openjdk7/jdk/src/share/classes/com/sun/jndi/cosnaming/
H A DExceptionMapper.java164 CannotProceedException cpe = new CannotProceedException();
165 cpe.setRootCause(e);
167 cpe.setRemainingName(CNNameParser.cosNameToName(rest));
169 cpe.setEnvironment(ctx._env);
172 System.out.println("rest of name: " + cpe.getRemainingName());
196 cpe.setResolvedObj(ref);
197 cpe.setAltName(cname);
198 cpe.setAltNameCtx((javax.naming.Context)resolvedObj);
200 return cpe;
220 cpe
[all...]
H A DCNCtx.java553 } catch (CannotProceedException cpe) {
554 javax.naming.Context cctx = getContinuationContext(cpe);
555 return cctx.lookup(cpe.getRemainingName());
645 getContinuationContext(CannotProceedException cpe) argument
648 return NamingManager.getContinuationContext(cpe);
657 ne.setRootCause(cpe.getRootCause());
658 ne.setRemainingName(cpe.getRemainingName());
/openjdk7/hotspot/src/share/vm/memory/
H A Dfilemap.cpp108 ClassPathEntry *cpe = ClassLoader::classpath_entry(0); local
109 for ( ; cpe != NULL; cpe = cpe->next()) {
111 if (cpe->is_jar_file()) {
118 const char *path = cpe->name();
131 const char* name = ((ClassPathDirEntry*)cpe)->name();
480 ClassPathEntry *cpe = ClassLoader::classpath_entry(0); local
481 for ( ; cpe != NULL; cpe
[all...]
/openjdk7/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)) {
/openjdk7/jdk/src/share/classes/com/sun/jndi/toolkit/ctx/
H A DContinuation.java156 CannotProceedException cpe = (CannotProceedException)e;
159 cpe.setEnvironment(env);
160 cpe.setAltNameCtx(resolvedContext);
161 cpe.setAltName(relativeResolvedName);
/openjdk7/jdk/src/share/classes/com/sun/jndi/toolkit/url/
H A DGenericURLContext.java193 CannotProceedException cpe = new CannotProceedException();
194 cpe.setResolvedObj(obj);
195 cpe.setEnvironment(myEnv);
196 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);
/openjdk7/jdk/src/share/classes/sun/security/provider/certpath/
H A DPKIXCertPathValidator.java196 } catch (CertPathValidatorException cpe) {
198 lastException = cpe;
H A DOCSPResponse.java453 } catch (CertificateParsingException cpe) {
/openjdk7/jdk/test/com/sun/nio/sctp/SctpChannel/
H A DConnect.java93 } catch (ConnectionPendingException cpe) {
/openjdk7/jdk/src/share/classes/sun/net/www/protocol/https/
H A DHttpsClient.java638 } catch (java.security.cert.CertificateException cpe) {

Completed in 108 milliseconds