Searched defs:waiting (Results 1 - 6 of 6) sorted by relevance

/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.java569 * waiting to receive all of the thumbnails for a task.
582 * List of content providers who have clients waiting for them. The
807 * Remaining processes for which we are waiting results from the last
1965 // We already have the app running, or are waiting for it to
3358 // 0 == show dialog, 1 = keep waiting, -1 = kill process immediately
4064 // Take care of any launching providers waiting for this process.
4066 // Take care of any services that are waiting for the process.
4245 // See if the top visible activity is waiting to run in this process...
5567 public void showWaitingForDebugger(IApplicationThread who, boolean waiting) { argument
5576 msg.arg1 = waiting
[all...]
/frameworks/base/core/java/android/content/
H A DAsyncTaskLoader.java61 boolean waiting; field in class:AsyncTaskLoader.LoadTask
108 /* Runs on the UI thread, when the waiting task is posted to a handler.
109 * This method is only executed when task execution was deferred (waiting was true). */
112 waiting = false;
165 // There was a pending task already waiting for a previous
168 "cancelLoad: still waiting for cancelled task; dropping next");
169 if (mTask.waiting) {
170 mTask.waiting = false;
175 } else if (mTask.waiting) {
176 // 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/core/java/android/app/
H A DActivityManagerNative.java1070 boolean waiting = data.readInt() != 0;
1071 showWaitingForDebugger(app, waiting);
3146 public void showWaitingForDebugger(IApplicationThread who, boolean waiting) argument
3152 data.writeInt(waiting ? 1 : 0);
H A DIActivityManager.java204 public void showWaitingForDebugger(IApplicationThread who, boolean waiting) argument
420 /** Information returned after waiting for an activity start. */

Completed in 4064 milliseconds