Searched refs:_msg (Results 1 - 14 of 14) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DCompilerException.java32 private String _msg; field in class:CompilerException
40 _msg = e.toString();
45 _msg = message;
49 final int col = _msg.indexOf(':');
52 return(_msg.substring(col));
54 return(_msg);
/openjdk7/jdk/src/share/native/sun/awt/debug/
H A Ddebug_assert.h43 #define DASSERTMSG(_expr, _msg) \
45 DAssert_Impl( (_msg), __FILE__, __LINE__); \
58 #define DASSERTMSG(_expr, _msg)
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_Debug.h62 #define AWT_DUMP_UPDATE_RECTANGLE(_msg, _hwnd) \
63 _DTrace_Template(DumpUpdateRectangle, 2, "", (_msg), (_hwnd), 0, 0, 0, 0, 0, 0)
65 #define AWT_DUMP_CLIP_RECTANGLE(_msg, _hwnd) \
66 _DTrace_Template(DumpClipRectangle, 2, "", (_msg), (_hwnd), 0, 0, 0, 0, 0, 0)
76 #define AWT_DUMP_UPDATE_RECTANGLE(_msg, _hwnd) ((void)0)
77 #define AWT_DUMP_CLIP_RECTANGLE(_msg, _hwnd) ((void)0)
/openjdk7/hotspot/src/cpu/zero/vm/
H A DbytecodeInterpreter_zero.cpp57 DO(_msg);
/openjdk7/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/
H A DconcurrentMarkSweepThread.hpp269 const char* _msg; member in class:CMSLoopCountWarn
276 _src(src), _msg(msg), _threshold(threshold), _ticks(0) { }
281 warning("%s has looped %d times %s", _src, _ticks, _msg);
/openjdk7/hotspot/src/share/vm/runtime/
H A DcompilationPolicy.cpp423 const char* StackWalkCompPolicy::_msg = NULL; member in class:StackWalkCompPolicy
620 return (_msg = "too big");
628 if (m->is_abstract()) return (_msg = "abstract method");
630 if (!instanceKlass::cast(m->method_holder())->is_initialized()) return (_msg = "method holder not initialized");
631 if (m->is_native()) return (_msg = "native method");
634 return (_msg = "already compiled into a big method");
639 if ((m->code() == NULL) && m->was_never_executed()) return (_msg = "never executed");
640 if (!m->was_executed_more_than(MIN2(MinInliningThreshold, CompileThreshold >> 1))) return (_msg = "executed < MinInliningThreshold times");
642 if (methodOopDesc::has_unloaded_classes_in_signature(m, JavaThread::current())) return (_msg = "unloaded signature classes");
H A DcompilationPolicy.hpp133 static const char* _msg; // reason for not inlining member in class:StackWalkCompPolicy
/openjdk7/hotspot/src/share/vm/interpreter/
H A DbytecodeInterpreter.hpp129 messages _msg; // frame manager <-> interpreter message member in class:BytecodeInterpreter
208 inline messages msg() { return _msg; }
209 inline void set_msg(messages new_msg) { _msg = new_msg; }
H A DbytecodeInterpreter.cpp466 if (istate->_msg != initialize) {
2842 _msg = msg;
3086 tty->print_cr("msg: %s", C_msg(this->_msg));
/openjdk7/hotspot/src/share/vm/opto/
H A Dparse.hpp61 const char* _msg; member in class:InlineTree
94 const char* msg() const { return _msg; }
95 void set_msg(const char* msg) { _msg = msg; }
H A DbytecodeInfo.cpp50 _msg(NULL)
81 _msg(NULL)
/openjdk7/hotspot/src/cpu/sparc/vm/
H A DcppInterpreter_sparc.cpp1158 __ st(O1, XXX_STATE(_msg));
1629 __ ld(STATE(_msg), L1_scratch); // Get new message
1658 __ delayed()->st(L1_scratch, STATE(_msg));
1682 __ delayed()->st(L1_scratch, STATE(_msg));
1857 __ st(L1_scratch, STATE(_msg));
2118 to_fill->_msg = deopt_resume2;
2120 to_fill->_msg = method_resume;
/openjdk7/hotspot/src/cpu/x86/vm/
H A DcppInterpreter_x86.cpp490 __ movl(STATE(_msg), (int32_t) BytecodeInterpreter::method_entry); // state->_msg = initial method entry
1567 __ movl(STATE(_msg), (int)BytecodeInterpreter::deopt_resume);
1599 __ movl(STATE(_msg), (int)BytecodeInterpreter::got_monitors);
1803 __ movl(rdx, STATE(_msg)); // Get new message
2035 __ movl(STATE(_msg), (int)BytecodeInterpreter::method_resume);
2291 to_fill->_msg = deopt_resume2;
2293 to_fill->_msg = method_resume;
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A Dg1CollectedHeap.cpp3561 const char* _msg; member in class:PrintRSetsClosure
3581 PrintRSetsClosure(const char* msg) : _msg(msg), _occupied_sum(0) {

Completed in 173 milliseconds