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

/frameworks/base/core/java/android/content/
H A DAsyncTaskLoader.java62 boolean waiting; field in class:AsyncTaskLoader.LoadTask
109 /* Runs on the UI thread, when the waiting task is posted to a handler.
110 * This method is only executed when task execution was deferred (waiting was true). */
113 waiting = false;
174 // There was a pending task already waiting for a previous
177 "cancelLoad: still waiting for cancelled task; dropping next");
178 if (mTask.waiting) {
179 mTask.waiting = false;
184 } else if (mTask.waiting) {
185 // There is a task, but it is waiting fo
[all...]
/frameworks/support/v4/java/android/support/v4/content/
H A DAsyncTaskLoader.java43 boolean waiting; field in class:AsyncTaskLoader.LoadTask
79 waiting = false;
138 // There was a pending task already waiting for a previous
141 "cancelLoad: still waiting for cancelled task; dropping next");
142 if (mTask.waiting) {
143 mTask.waiting = false;
148 } else if (mTask.waiting) {
149 // There is a task, but it is waiting for the time it should
151 if (DEBUG) Log.v(TAG, "cancelLoad: task is waiting, dropping it");
152 mTask.waiting
[all...]
/frameworks/base/services/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.java695 * waiting to receive all of the thumbnails for a task.
703 * List of content providers who have clients waiting for them. The
2599 // We already have the app running, or are waiting for it to
4071 // 0 == show dialog, 1 = keep waiting, -1 = kill process immediately
4820 // Take care of any launching providers waiting for this process.
4822 // Take care of any services that are waiting for the process.
5000 // See if the top visible activity is waiting to run in this process...
6689 public void showWaitingForDebugger(IApplicationThread who, boolean waiting) { argument
6698 msg.arg1 = waiting ? 1 : 0;
7753 conn.waiting
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DPanelBar.java189 boolean waiting = false;
193 waiting = true;
200 if (DEBUG) LOG("collapseAllPanels: animate=%s waiting=%s", animate, waiting);
201 if (!waiting && mState != STATE_CLOSED) {
/frameworks/base/core/java/android/app/
H A DIActivityManager.java221 public void showWaitingForDebugger(IApplicationThread who, boolean waiting) argument
466 /** Information returned after waiting for an activity start. */
H A DActivityManagerNative.java1176 boolean waiting = data.readInt() != 0;
1177 showWaitingForDebugger(app, waiting);
3522 public void showWaitingForDebugger(IApplicationThread who, boolean waiting) argument
3528 data.writeInt(waiting ? 1 : 0);

Completed in 3080 milliseconds