Searched refs:_exception (Results 1 - 10 of 10) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/security/sasl/
H A DSaslException.java45 private Throwable _exception; field in class:SaslException
91 * JSR 28 would return same value for getCause() (i.e., _exception).
94 return _exception;
99 * _exception as well.
103 _exception = cause;
121 if (_exception != null && _exception != this) {
122 answer += " [Caused by " + _exception.toString() + "]";
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serialize/
H A DPrinter.java83 protected IOException _exception; field in class:Printer
108 _exception = null;
117 return _exception;
179 if ( _exception == null )
180 _exception = except;
202 if ( _exception == null )
203 _exception = except;
225 if ( _exception == null )
226 _exception = except;
245 if ( _exception
[all...]
H A DIndentPrinter.java202 if ( _exception == null )
203 _exception = except;
253 if ( _exception == null )
254 _exception = except;
297 if ( _exception == null )
298 _exception = except;
317 if ( _exception == null )
318 _exception = except;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/wsdl/document/
H A DWSDLDocument.java143 if (_exception == null) {
144 _exception = e;
154 if (_exception == null) {
157 _exception = e;
164 return _exception;
167 private ValidationException _exception; field in class:WSDLDocument.GloballyValidatingAction
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/wsdl/framework/
H A DAbstractDocument.java175 if (_exception == null) {
176 _exception = e;
182 return _exception;
185 private ValidationException _exception; field in class:AbstractDocument.LocallyValidatingAction
/openjdk7/jdk/src/share/demo/jvmti/hprof/
H A Dhprof_util.h60 jobject _exception; \
61 _exception = exceptionOccurred(_env); \
62 if ( _exception != NULL ) { \
70 _exception = exceptionOccurred(_env); \
71 if ( _exception != NULL ) { \
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/corba/
H A DServerRequestImpl.java69 private Any _exception = null; field in class:ServerRequestImpl
162 _exception = exc;
166 _orb.getPIHandler().setServerPIExceptionInfo( _exception );
220 return _exception;
/openjdk7/hotspot/src/share/vm/oops/
H A DgenerateOopMap.hpp306 Handle _exception; // Exception if got_error is true. member in class:VALUE_OBJ_CLASS_SPEC
H A DgenerateOopMap.cpp2113 THROW_HANDLE(_exception);
2132 _exception = Exceptions::new_exception(Thread::current(),
2151 _exception = Exceptions::new_exception(Thread::current(),
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_Instruction.hpp2018 Value _exception;
2022 Throw(Value exception, ValueStack* state_before) : BlockEnd(illegalType, state_before, true), _exception(exception) {
2027 Value exception() const { return _exception; }
2031 virtual void input_values_do(ValueVisitor* f) { BlockEnd::input_values_do(f); f->visit(&_exception); }

Completed in 79 milliseconds