Home | History | Annotate | Download | only in util

Lines Matching refs:Status

242     private volatile Status mStatus = Status.PENDING;
275 * Indicates the current status of the task. Each status will be set only once
278 public enum Status {
350 * Returns the current status of this task.
352 * @return The current status.
354 public final Status getStatus() {
554 * {@link AsyncTask.Status#RUNNING} or {@link AsyncTask.Status#FINISHED}.
592 * {@link AsyncTask.Status#RUNNING} or {@link AsyncTask.Status#FINISHED}.
598 if (mStatus != Status.PENDING) {
610 mStatus = Status.RUNNING;
659 mStatus = Status.FINISHED;