Searched defs:cpe (Results 1 - 6 of 6) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/naming/spi/
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 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 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/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/src/share/classes/com/sun/jndi/cosnaming/
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());

Completed in 4183 milliseconds