Searched refs:_result (Results 1 - 25 of 55) sorted by relevance

123

/openjdk7/hotspot/src/os/solaris/vm/
H A Dos_solaris.inline.hpp120 #define _INTERRUPTIBLE(_setup, _cmd, _result, _thread, _clear, _before, _after, _int_enable) \
129 _result = OS_INTRPT; \
131 /* _cmd always expands to an assignment to _result */ \
135 _result = OS_INTRPT; \
149 #define INTERRUPTIBLE(_cmd, _result, _clear) do { \
150 _INTERRUPTIBLE( JavaThread* _thread = (JavaThread*)ThreadLocalStorage::thread(),_result = _cmd, _result, _thread, _clear, , , UseVMInterruptibleIO); \
151 } while((_result == OS_ERR) && (errno == EINTR))
157 #define INTERRUPTIBLE(_cmd, _result, _clear) do { \
158 _INTERRUPTIBLE(JavaThread* _thread = os::Solaris::setup_interruptible_native(), _result
[all...]
/openjdk7/jdk/src/solaris/native/sun/nio/ch/
H A Dnio_util.h33 #define RESTARTABLE(_cmd, _result) do { \
35 _result = _cmd; \
36 } while((_result == -1) && (errno == EINTR)); \
H A DPollArrayWrapper.c35 #define RESTARTABLE(_cmd, _result) do { \
37 _result = _cmd; \
38 } while((_result == -1) && (errno == EINTR)); \
H A DEPollArrayWrapper.c37 #define RESTARTABLE(_cmd, _result) do { \
39 _result = _cmd; \
40 } while((_result == -1) && (errno == EINTR)); \
H A DDevPollArrayWrapper.c67 #define RESTARTABLE(_cmd, _result) do { \
69 _result = _cmd; \
70 } while((_result == -1) && (errno == EINTR)); \
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DvmPSOperations.hpp35 HeapWord* _result; member in class:VM_ParallelGCFailedAllocation
45 HeapWord* result() const { return _result; }
51 HeapWord* _result; member in class:VM_ParallelGCFailedPermanentAllocation
61 HeapWord* result() const { return _result; }
H A DvmPSOperations.cpp39 _result(NULL)
50 _result = heap->failed_mem_allocate(_size);
52 if (_result == NULL && GC_locker::is_active_and_needs_gc()) {
61 _result(NULL)
72 _result = heap->failed_permanent_mem_allocate(_size);
73 if (_result == NULL && GC_locker::is_active_and_needs_gc()) {
/openjdk7/hotspot/src/cpu/zero/vm/
H A DbytecodeInterpreter_zero.cpp58 DO(_result);
66 if (addr > (address) &_result && addr < (address) (&_result + 1))
67 return "_result)";
H A DbytecodeInterpreter_zero.hpp84 return _result._to_call._callee_entry_point;
87 return _result._osr._osr_buf;
90 return _result._osr._osr_entry;
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiEnvBase.hpp338 jvmtiError _result; member in class:VM_GetOwnedMonitorInfo
349 _result = JVMTI_ERROR_NONE;
356 jvmtiError result() { return _result; }
367 jvmtiError _result; member in class:VM_GetObjectMonitorUsage
377 jvmtiError result() { return _result; }
379 _result = ((JvmtiEnvBase*) _env)->get_object_monitor_usage(_calling_thread, _object, _info_ptr);
391 jvmtiError _result; member in class:VM_GetCurrentContendedMonitor
401 jvmtiError result() { return _result; }
403 _result = ((JvmtiEnvBase *)_env)->get_current_contended_monitor(_calling_thread,_java_thread,_owned_monitor_ptr);
416 jvmtiError _result; member in class:VM_GetStackTrace
447 jvmtiError _result; member in class:VM_GetMultipleStackTraces
515 jvmtiError _result; member in class:VM_GetFrameCount
538 jvmtiError _result; member in class:VM_GetFrameLocation
[all...]
H A DjvmtiImpl.cpp542 , _result(JVMTI_ERROR_NONE)
556 , _result(JVMTI_ERROR_NONE)
569 , _result(JVMTI_ERROR_NONE)
590 _result = JVMTI_ERROR_NO_MORE_FRAMES;
596 _result = JVMTI_ERROR_OPAQUE_FRAME;
650 _result = JVMTI_ERROR_INVALID_SLOT;
658 _result = JVMTI_ERROR_INVALID_SLOT;
676 _result = JVMTI_ERROR_INVALID_SLOT;
695 _result = JVMTI_ERROR_TYPE_MISMATCH;
706 NULL_CHECK(obj, (_result
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A Dvm_operations_g1.hpp41 HeapWord* _result; member in class:VM_G1OperationWithAllocRequest
49 _word_size(word_size), _result(NULL), _pause_succeeded(false) { }
50 HeapWord* result() { return _result; }
H A Dvm_operations_g1.cpp48 _result = g1h->satisfy_failed_allocation(_word_size, &_pause_succeeded);
49 assert(_result == NULL || _pause_succeeded,
105 _result = g1h->attempt_allocation_at_safepoint(_word_size,
107 if (_result != NULL) {
158 _result = g1h->attempt_allocation_at_safepoint(_word_size,
161 assert(_result == NULL, "invariant");
/openjdk7/jdk/src/solaris/native/sun/nio/fs/
H A DUnixCopyFile.c35 #define RESTARTABLE(_cmd, _result) do { \
37 _result = _cmd; \
38 } while((_result == -1) && (errno == EINTR)); \
/openjdk7/jdk/src/solaris/native/sun/net/sdp/
H A DSdpSupport.c44 #define RESTARTABLE(_cmd, _result) do { \
46 _result = _cmd; \
47 } while((_result == -1) && (errno == EINTR)); \
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/corba/
H A DRequestImpl.java79 private NamedValue _result; field in class:RequestImpl
129 _result = resultContainer;
165 return _result;
227 if (_result == null)
228 _result = new NamedValueImpl(_orb);
229 _result.value().type(tc);
234 if (_result == null)
235 _result = new NamedValueImpl(_orb);
236 return _result.value();
348 if ( _result !
[all...]
/openjdk7/corba/src/share/classes/com/sun/org/omg/CORBA/
H A DOperationDescription.java51 public OperationDescription (String _name, String _id, String _defined_in, String _version, org.omg.CORBA.TypeCode _result, com.sun.org.omg.CORBA.OperationMode _mode, String[] _contexts, com.sun.org.omg.CORBA.ParameterDescription[] _parameters, com.sun.org.omg.CORBA.ExceptionDescription[] _exceptions) argument
57 result = _result;
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/trax/
H A DTransformerHandlerImpl.java64 private Result _result = null; field in class:TransformerHandlerImpl
131 _result = result;
149 _result = null;
156 _transformer.transform(null, _result);
181 if (_result == null) {
239 if (_result != null) {
242 _transformer.transform(null, _result);
254 if (_isIdentity && _result instanceof DOMResult) {
255 ((DOMResult)_result).setNode(_transformer.getTransletOutputHandlerFactory().getNode());
484 _result
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A Dvm_operations.cpp270 _result = result;
273 _result = result;
285 _result = result;
288 _result = result;
338 _result->add_thread_snapshot(ts);
348 _result->add_thread_snapshot(new ThreadSnapshot());
359 _result->add_thread_snapshot(new ThreadSnapshot());
367 _result->add_thread_snapshot(ts);
/openjdk7/hotspot/src/os/bsd/vm/
H A Dos_bsd.inline.hpp164 #define RESTARTABLE(_cmd, _result) do { \
165 _result = _cmd; \
166 } while(((int)_result == OS_ERR) && (errno == EINTR))
169 int _result; \
170 RESTARTABLE(_cmd, _result); \
171 return _result; \
/openjdk7/hotspot/src/os/linux/vm/
H A Dos_linux.inline.hpp168 #define RESTARTABLE(_cmd, _result) do { \
169 _result = _cmd; \
170 } while(((int)_result == OS_ERR) && (errno == EINTR))
173 int _result; \
174 RESTARTABLE(_cmd, _result); \
175 return _result; \
/openjdk7/hotspot/src/share/vm/interpreter/
H A DbytecodeInterpreter.hpp130 frame_manager_message _result; // result to frame manager member in class:BytecodeInterpreter
211 inline methodOop callee() { return _result._to_call._callee; }
212 inline void set_callee(methodOop new_callee) { _result._to_call._callee = new_callee; }
213 inline void set_callee_entry_point(address entry) { _result._to_call._callee_entry_point = entry; }
214 inline void set_osr_buf(address buf) { _result._osr._osr_buf = buf; }
215 inline void set_osr_entry(address entry) { _result._osr._osr_entry = entry; }
216 inline int bcp_advance() { return _result._to_call._bcp_advance; }
217 inline void set_bcp_advance(int count) { _result._to_call._bcp_advance = count; }
219 inline void set_return_kind(Bytecodes::Code kind) { _result._return_kind = kind; }
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_CodeStubs.hpp120 LIR_Opr _result; member in class:ConversionStub
126 : _bytecode(bytecode), _input(input), _result(result) {
131 LIR_Opr result() { return _result; }
137 visitor->do_output(_result);
219 LIR_Opr _result; member in class:NewInstanceStub
230 visitor->do_output(_result);
242 LIR_Opr _result; member in class:NewTypeArrayStub
253 assert(_result->is_valid(), "must be valid"); visitor->do_output(_result);
265 LIR_Opr _result; member in class:NewObjectArrayStub
[all...]
H A Dc1_LIR.cpp475 assert(op->_result->is_illegal(), "not used");
486 if (op->_result->is_valid()) do_output(op->_result);
496 assert(op->_result->is_illegal(), "not used");
523 if (op1->_result->is_valid()) do_output(op1->_result);
535 assert(op1->_result->is_illegal(), "safepoint does not produce value");
548 if (opConvert->_result->is_valid()) do_output(opConvert->_result);
566 assert(opBranch->_result
[all...]
/openjdk7/jdk/src/solaris/native/sun/tools/attach/
H A DBsdVirtualMachine.c46 #define RESTARTABLE(_cmd, _result) do { \
48 _result = _cmd; \
49 } while((_result == -1) && (errno == EINTR)); \

Completed in 2117 milliseconds

123