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

/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.java978 * List of content providers who have clients waiting for them. The
3548 // We already have the app running, or are waiting for it to
6339 // Take care of any launching providers waiting for this process.
6341 // Take care of any services that are waiting for the process.
6537 // See if the top visible activity is waiting to run in this process...
8911 public void showWaitingForDebugger(IApplicationThread who, boolean waiting) { argument
8920 msg.arg1 = waiting ? 1 : 0;
10860 conn.waiting = true;
10885 conn.waiting = true;
10891 conn.waiting
[all...]
/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.java47 boolean waiting; field in class:AsyncTaskLoader.LoadTask
94 /* Runs on the UI thread, when the waiting task is posted to a handler.
95 * This method is only executed when task execution was deferred (waiting was true). */
98 waiting = false;
158 // There was a pending task already waiting for a previous
161 "cancelLoad: still waiting for cancelled task; dropping next");
162 if (mTask.waiting) {
163 mTask.waiting = false;
168 } else if (mTask.waiting) {
169 // There is a task, but it is waiting fo
[all...]
/frameworks/base/core/java/android/app/
H A DActivityManagerNative.java1492 boolean waiting = data.readInt() != 0;
1493 showWaitingForDebugger(app, waiting);
4906 public void showWaitingForDebugger(IApplicationThread who, boolean waiting) argument
4912 data.writeInt(waiting ? 1 : 0);
H A DIActivityManager.java322 public void showWaitingForDebugger(IApplicationThread who, boolean waiting) argument
715 /** Information returned after waiting for an activity start. */

Completed in 181 milliseconds