Searched defs:JvmtiBreakpoint (Results 1 - 2 of 2) sorted by relevance

/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiImpl.hpp42 class JvmtiBreakpoint;
128 // Note : typesafe wrapper for GrowableCache of JvmtiBreakpoint
145 JvmtiBreakpoint& at(int index) { return (JvmtiBreakpoint&) *(_cache.at(index)); }
146 int find(JvmtiBreakpoint& e) { return _cache.find((GrowableElement *) &e); }
147 void append(JvmtiBreakpoint& e) { _cache.append((GrowableElement *) &e); }
157 // class JvmtiBreakpoint
162 // A JvmtiBreakpoint describes a location (class, method, bci) to break at.
167 class JvmtiBreakpoint : public GrowableElement { class in inherits:GrowableElement
174 JvmtiBreakpoint();
[all...]
H A DjvmtiImpl.cpp232 // class JvmtiBreakpoint
235 JvmtiBreakpoint::JvmtiBreakpoint() { function in class:JvmtiBreakpoint
247 JvmtiBreakpoint::JvmtiBreakpoint(methodOop m_method, jlocation location) { function in class:JvmtiBreakpoint
262 void JvmtiBreakpoint::copy(JvmtiBreakpoint& bp) {
267 bool JvmtiBreakpoint::lessThan(JvmtiBreakpoint& bp) {
272 bool JvmtiBreakpoint
[all...]

Completed in 247 milliseconds