HomeSort by relevance Sort by last modified time
    Searched defs:interruptAction (Results 1 - 2 of 2) sorted by null

  /libcore/libart/src/main/java/java/lang/
Thread.java 868 public final void pushInterruptAction$(Runnable interruptAction) {
870 interruptActions.add(interruptAction);
873 if (interruptAction != null && isInterrupted()) {
874 interruptAction.run();
879 * Removes {@code interruptAction} so it is not invoked upon interruption.
881 * @param interruptAction the pushed action, used to check that the call
886 public final void popInterruptAction$(Runnable interruptAction) {
889 if (interruptAction != removed) {
890 throw new IllegalArgumentException("Expected " + interruptAction + " but was " + removed);
    [all...]
  /libcore/libdvm/src/main/java/java/lang/
Thread.java 897 public final void pushInterruptAction$(Runnable interruptAction) {
899 interruptActions.add(interruptAction);
902 if (interruptAction != null && isInterrupted()) {
903 interruptAction.run();
908 * Removes {@code interruptAction} so it is not invoked upon interruption.
910 * @param interruptAction the pushed action, used to check that the call
915 public final void popInterruptAction$(Runnable interruptAction) {
918 if (interruptAction != removed) {
920 "Expected " + interruptAction + " but was " + removed);
    [all...]

Completed in 3701 milliseconds