Lines Matching defs:breakpoint

101      * Sets breakpoint to given location.
104 * @param breakpoint
107 public ReplyPacket setBreakpoint(byte typeTag, Breakpoint breakpoint) {
109 return setBreakpoint(typeTag, breakpoint,
114 * Sets breakpoint to given location.
117 * @param breakpoint
119 * Suspend policy for a breakpoint being created
122 public ReplyPacket setBreakpoint(byte typeTag, Breakpoint breakpoint,
125 long typeID = getTypeID(breakpoint.className, typeTag);
128 long methodID = getMethodID(typeID, breakpoint.methodName);
132 breakpoint.index);
134 // Set breakpoint
139 * Sets breakpoint to given location.
142 * Location of breakpoint
151 * Sets breakpoint to given location
154 * Location of breakpoint
156 * Suspend policy for a breakpoint being created
170 // Set breakpoint
175 * Sets breakpoint that triggers only on a certain occurrence to a given
179 * @param breakpoint
181 * Suspend policy for a breakpoint being created
188 Breakpoint breakpoint, byte suspendPolicy, int count) {
189 long typeID = getTypeID(breakpoint.className, typeTag);
192 long methodID = getMethodID(typeID, breakpoint.methodName);
198 mod1.loc = new Location(typeTag, typeID, methodID, breakpoint.index);
207 // Set breakpoint
212 * Sets breakpoint at the beginning of method with name <i>methodName</i>.
225 * Sets breakpoint at the beginning of method with name <i>methodName</i>.
257 // set breakpoint inside checked method
268 * Waits for stop on breakpoint and gets id of thread where it stopped.
271 * id of request for breakpoint
272 * @return threadID id of thread, where we stop on breakpoint
293 // check if received event is for breakpoint
315 * Removes breakpoint according to specified requestID.
318 * for given breakpoint
1663 * @return ReplyPacket if breakpoint is set