Searched refs:waiting (Results 1 - 7 of 7) sorted by relevance

/frameworks/base/core/java/android/content/
H A DAsyncTaskLoader.java66 boolean waiting; field in class:AsyncTaskLoader.LoadTask
113 /* Runs on the UI thread, when the waiting task is posted to a handler.
114 * This method is only executed when task execution was deferred (waiting was true). */
117 waiting = false;
181 // There was a pending task already waiting for a previous
184 "cancelLoad: still waiting for cancelled task; dropping next");
185 if (mTask.waiting) {
186 mTask.waiting = false;
191 } else if (mTask.waiting) {
192 // There is a task, but it is waiting fo
[all...]
/frameworks/support/loader/src/main/java/androidx/loader/content/
H A DAsyncTaskLoader.java53 boolean waiting; field in class:AsyncTaskLoader.LoadTask
100 /* Runs on the UI thread, when the waiting task is posted to a handler.
101 * This method is only executed when task execution was deferred (waiting was true). */
104 waiting = false;
167 // There was a pending task already waiting for a previous
170 "cancelLoad: still waiting for cancelled task; dropping next");
171 if (mTask.waiting) {
172 mTask.waiting = false;
177 } else if (mTask.waiting) {
178 // There is a task, but it is waiting fo
[all...]
/frameworks/base/services/core/java/com/android/server/am/
H A DContentProviderConnection.java32 // The client of this connection is currently waiting for the provider to appear.
34 public boolean waiting; field in class:ContentProviderConnection
84 if (waiting) {
H A DActivityManagerService.java668 * State indicating that any threads waiting for network state to get updated can be unblocked.
792 * Indicates the maximum time spent waiting for the network rules to get updated.
1186 * List of content providers who have clients waiting for them. The
4124 // We already have the app running, or are waiting for it to
7538 // Take care of any launching providers waiting for this process.
7540 // Take care of any services that are waiting for the process.
7866 // See if the top visible activity is waiting to run in this process...
10615 public void showWaitingForDebugger(IApplicationThread who, boolean waiting) { argument
10624 msg.arg1 = waiting ? 1 : 0;
12461 conn.waiting
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DPanelBar.java159 boolean waiting = false;
163 waiting = true;
169 if (DEBUG) LOG("collapsePanel: animate=%s waiting=%s", animate, waiting);
170 if (!waiting && mState != STATE_CLOSED) {
/frameworks/base/core/java/android/provider/
H A DFontsContract.java352 final AtomicBoolean waiting = new AtomicBoolean(true);
371 waiting.set(false);
384 if (!waiting.get()) {
393 if (!waiting.get()) {
/frameworks/base/core/java/android/app/
H A DIActivityManager.aidl188 void showWaitingForDebugger(in IApplicationThread who, boolean waiting);

Completed in 187 milliseconds