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.java994 * List of content providers who have clients waiting for them. The
3602 // We already have the app running, or are waiting for it to
6406 // Take care of any launching providers waiting for this process.
6408 // Take care of any services that are waiting for the process.
6604 // See if the top visible activity is waiting to run in this process...
8978 public void showWaitingForDebugger(IApplicationThread who, boolean waiting) { argument
8987 msg.arg1 = waiting ? 1 : 0;
10924 conn.waiting = true;
10949 conn.waiting = true;
10955 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/core-utils/java/android/support/v4/content/
H A DAsyncTaskLoader.java50 boolean waiting; field in class:AsyncTaskLoader.LoadTask
97 /* Runs on the UI thread, when the waiting task is posted to a handler.
98 * This method is only executed when task execution was deferred (waiting was true). */
101 waiting = false;
161 // There was a pending task already waiting for a previous
164 "cancelLoad: still waiting for cancelled task; dropping next");
165 if (mTask.waiting) {
166 mTask.waiting = false;
171 } else if (mTask.waiting) {
172 // 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);
4936 public void showWaitingForDebugger(IApplicationThread who, boolean waiting) argument
4942 data.writeInt(waiting ? 1 : 0);
H A DIActivityManager.java322 public void showWaitingForDebugger(IApplicationThread who, boolean waiting) argument
741 /** Information returned after waiting for an activity start. */

Completed in 1775 milliseconds