Searched refs:IncompatibleThreadStateException (Results 1 - 25 of 30) sorted by relevance

12

/openjdk7/jdk/src/share/classes/com/sun/jdi/
H A DIncompatibleThreadStateException.java35 public class IncompatibleThreadStateException extends Exception class in inherits:Exception
37 public IncompatibleThreadStateException() method in class:IncompatibleThreadStateException
42 public IncompatibleThreadStateException(String s) method in class:IncompatibleThreadStateException
H A DThreadReference.java181 * @throws IncompatibleThreadStateException if the thread is
184 int frameCount() throws IncompatibleThreadStateException;
195 * @throws IncompatibleThreadStateException if the thread is
198 List<StackFrame> frames() throws IncompatibleThreadStateException;
210 * @throws IncompatibleThreadStateException if the thread is
215 StackFrame frame(int index) throws IncompatibleThreadStateException;
229 * @throws IncompatibleThreadStateException if the thread is
240 throws IncompatibleThreadStateException;
258 * @throws IncompatibleThreadStateException if the thread is
262 throws IncompatibleThreadStateException;
[all...]
H A DObjectReference.java257 * @throws IncompatibleThreadStateException if the specified thread has not
275 IncompatibleThreadStateException,
352 * @throws IncompatibleThreadStateException if any
357 throws IncompatibleThreadStateException;
374 * @throws IncompatibleThreadStateException if the owning thread is
377 ThreadReference owningThread() throws IncompatibleThreadStateException;
394 * @throws IncompatibleThreadStateException if the owning thread is
397 int entryCount() throws IncompatibleThreadStateException;
H A DClassType.java225 * @throws IncompatibleThreadStateException if the specified thread has not
243 IncompatibleThreadStateException,
330 * @throws IncompatibleThreadStateException if the specified thread has not
349 IncompatibleThreadStateException,
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/tty/
H A DThreadInfo.java39 import com.sun.jdi.IncompatibleThreadStateException;
211 List<StackFrame> getStack() throws IncompatibleThreadStateException {
220 StackFrame getCurrentFrame() throws IncompatibleThreadStateException {
234 /* Throw IncompatibleThreadStateException if not suspended */
235 private void assureSuspended() throws IncompatibleThreadStateException {
237 throw new IncompatibleThreadStateException();
261 void setCurrentFrameIndex(int nFrame) throws IncompatibleThreadStateException {
279 void up(int nFrames) throws IncompatibleThreadStateException {
292 void down(int nFrames) throws IncompatibleThreadStateException {
H A DCommands.java83 } catch (IncompatibleThreadStateException e) {
109 public StackFrame get() throws IncompatibleThreadStateException {
861 } catch (IncompatibleThreadStateException e) {
896 } catch (IncompatibleThreadStateException e) {
907 } catch (IncompatibleThreadStateException e) {
1313 } catch (IncompatibleThreadStateException ee) {
1416 } catch (IncompatibleThreadStateException e) {
1601 } catch (IncompatibleThreadStateException exc) {
1741 } catch (IncompatibleThreadStateException e) {
1773 } catch (IncompatibleThreadStateException
[all...]
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/gui/
H A DMonitorTool.java83 IncompatibleThreadStateException {
88 throws IncompatibleThreadStateException
93 throw new IncompatibleThreadStateException();
125 } catch (IncompatibleThreadStateException exc) {
H A DSourceTool.java209 } catch (IncompatibleThreadStateException e) {}
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/
H A DThreadReferenceImpl.java177 public int frameCount() throws IncompatibleThreadStateException { //fixme jjh
182 public List frames() throws IncompatibleThreadStateException {
186 public StackFrame frame(int index) throws IncompatibleThreadStateException {
192 throws IncompatibleThreadStateException {
206 throws IncompatibleThreadStateException {
209 throw new IncompatibleThreadStateException();
236 public List ownedMonitors() throws IncompatibleThreadStateException {
242 throw new IncompatibleThreadStateException();
262 public List ownedMonitorsAndFrames() throws IncompatibleThreadStateException {
269 throw new IncompatibleThreadStateException();
[all...]
H A DObjectReferenceImpl.java137 IncompatibleThreadStateException,
161 public List waitingThreads() throws IncompatibleThreadStateException {
173 public ThreadReference owningThread() throws IncompatibleThreadStateException {
185 public int entryCount() throws IncompatibleThreadStateException {
H A DClassTypeImpl.java181 IncompatibleThreadStateException,
192 IncompatibleThreadStateException,
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DThreadReferenceImpl.java310 } catch (IncompatibleThreadStateException itse) {
331 public int frameCount() throws IncompatibleThreadStateException {
342 throw new IncompatibleThreadStateException();
350 public List<StackFrame> frames() throws IncompatibleThreadStateException {
354 public StackFrame frame(int index) throws IncompatibleThreadStateException {
383 throws IncompatibleThreadStateException {
396 throws IncompatibleThreadStateException {
436 throw new IncompatibleThreadStateException();
443 public List<ObjectReference> ownedMonitors() throws IncompatibleThreadStateException {
460 throw new IncompatibleThreadStateException();
[all...]
H A DObjectReferenceImpl.java362 IncompatibleThreadStateException,
395 throw new IncompatibleThreadStateException();
459 throws IncompatibleThreadStateException {
498 throw new IncompatibleThreadStateException();
506 public List<ThreadReference> waitingThreads() throws IncompatibleThreadStateException {
510 public ThreadReference owningThread() throws IncompatibleThreadStateException {
514 public int entryCount() throws IncompatibleThreadStateException {
H A DClassTypeImpl.java210 IncompatibleThreadStateException,
231 throw new IncompatibleThreadStateException();
258 IncompatibleThreadStateException,
279 throw new IncompatibleThreadStateException();
H A DStackFrameImpl.java369 void pop() throws IncompatibleThreadStateException {
385 throw new IncompatibleThreadStateException(
388 throw new IncompatibleThreadStateException("zombie");
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/bdi/
H A DThreadInfo.java84 } catch (IncompatibleThreadStateException e) {
106 } catch (IncompatibleThreadStateException e) {
/openjdk7/jdk/test/com/sun/jdi/
H A DResumeOneThreadTest.java146 } catch (IncompatibleThreadStateException ee) {
168 } catch (IncompatibleThreadStateException ee) {
H A DInstanceFilter.java102 } catch (IncompatibleThreadStateException ee) {
H A DPopAndInvokeTest.java145 * Verify that an invokeMethod gets an IncompatibleThreadStateException
172 } catch (IncompatibleThreadStateException ee) {
173 System.out.println("Debugger: Success: Got expected IncompatibleThreadStateException");
179 failure("FAIL: Did not get IncompatibleThreadStateException " +
H A DTwoThreadsTest.java163 } catch (IncompatibleThreadStateException ee) {
H A DInvokeHangTest.java197 } catch (IncompatibleThreadStateException itsex) {
H A DSimulResumerTest.java206 } catch (IncompatibleThreadStateException ee) {
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/expr/
H A DLValue.java60 IncompatibleThreadStateException,
93 } catch (IncompatibleThreadStateException exc) {
121 } catch (IncompatibleThreadStateException exc) {
140 } catch (IncompatibleThreadStateException itse) {
487 ClassNotLoadedException, IncompatibleThreadStateException,
552 ClassNotLoadedException, IncompatibleThreadStateException,
785 } catch (IncompatibleThreadStateException exc) {
829 } catch (IncompatibleThreadStateException exc) {
901 } catch (IncompatibleThreadStateException exc) {
H A DExpr.jj65 StackFrame get() throws IncompatibleThreadStateException;
73 IncompatibleThreadStateException {
/openjdk7/hotspot/agent/test/jdi/
H A Dsagdoit.java143 //List frames(int start, int length) throws IncompatibleThreadStateException;
146 } catch (IncompatibleThreadStateException ee) {
147 pp("GOT IncompatibleThreadStateException: " + ee);

Completed in 83 milliseconds

12