Searched refs:task (Results 51 - 66 of 66) sorted by relevance

123

/frameworks/base/services/core/java/com/android/server/am/
H A DTaskRecord.java89 final int taskId; // Unique identifier for this task.
90 String affinity; // The affinity name for this task, or null; may change identity.
92 final IVoiceInteractionSession voiceSession; // Voice interaction session driving task
94 Intent intent; // The original intent that started the task.
95 Intent affinityIntent; // Intent of affinity-moved activity that started this task.
96 int effectiveUid; // The current effective uid of the identity of this task.
98 ComponentName realActivity; // The actual activity component that started the task.
99 long firstActiveTime; // First time this task was active.
100 long lastActiveTime; // Last time this task was active, including sleep.
103 boolean rootWasReset; // True if the intent at the root of the task ha
[all...]
H A DPendingIntentRecord.java265 key.activity.task.stack.sendActivityResultLocked(-1, key.activity,
/frameworks/base/services/core/java/com/android/server/wm/
H A DWindowState.java797 Task task = mService.mTaskIdToTask.get(wtoken.groupId);
798 if (task != null) {
799 if (task.mStack != null) {
800 return task.mStack;
802 Slog.e(TAG, "getStack: mStack null for task=" + task);
/frameworks/base/core/java/android/accounts/
H A DAccountManager.java2231 final GetAuthTokenByTypeAndFeaturesTask task =
2234 task.start();
2235 return task;
/frameworks/base/core/java/android/app/
H A DIActivityManager.java132 public void moveTaskToFront(int task, int flags, Bundle options) throws RemoteException; argument
133 public void moveTaskToBack(int task) throws RemoteException; argument
135 public void moveTaskBackwards(int task) throws RemoteException; argument
H A DActivityManagerNative.java571 IAppTask task = list.get(i);
572 reply.writeStrongBinder(task.asBinder());
682 int task = data.readInt();
686 moveTaskToFront(task, fl, options);
693 int task = data.readInt();
694 moveTaskToBack(task);
711 int task = data.readInt();
712 moveTaskBackwards(task);
2987 IAppTask task = IAppTask.Stub.asInterface(reply.readStrongBinder());
2988 list.add(task);
3141 moveTaskToFront(int task, int flags, Bundle options) argument
3159 moveTaskToBack(int task) argument
3184 moveTaskBackwards(int task) argument
[all...]
H A DActivityManager.java154 * a task was simply brought to the foreground.
517 * Information you can set and retrieve about the current activity within the recent task list.
537 * @param label A label and description of the current state of this task.
538 * @param icon An icon that represents the current state of this task.
598 * Sets the label for this task description.
606 * Sets the primary color for this task description.
618 * Sets the icon for this task description.
636 * @return The label and description of the current state of this task.
643 * @return The icon that represents the current state of this task.
763 * If this task i
2701 AppTask(IAppTask task) argument
[all...]
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
H A DDirectoryFragment.java822 final ThumbnailAsyncTask task = new ThumbnailAsyncTask(
824 iconThumb.setTag(task);
825 ProviderExecutor.forAuthority(docAuthority).execute(task);
/frameworks/base/core/java/android/content/
H A DContentProvider.java1616 AsyncTask<Object, Object, Object> task = new AsyncTask<Object, Object, Object>() {
1628 task.executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR, (Object[])null);
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
H A DTaskView.java36 /* A task view */
44 public void onTaskViewClicked(TaskView tv, Task task, boolean lockToTask); argument
123 /** Gets the task */
177 /** Synchronizes this view's properties with the task's transform */
188 // Update the task progress
215 * in order to hide the task.
226 * in order to show the task.
233 /** Prepares this task view for the enter-recents animations. This is called earlier in the
247 // Move the task view off screen (below) so we can animate it in
252 // Move the task vie
[all...]
/frameworks/base/tools/layoutlib/bridge/tests/res/testApp/MyApplication/gradle/wrapper/
H A Dgradle-wrapper.jar ... .File exclusiveFile java.util.concurrent.Callable task java.io.File lockFile java.io. ...
/frameworks/multidex/gradle/wrapper/
H A Dgradle-wrapper.jar ... .File exclusiveFile java.util.concurrent.Callable task java.io.File lockFile java.io. ...
/frameworks/support/gradle/wrapper/
H A Dgradle-wrapper.jar ... .File exclusiveFile java.util.concurrent.Callable task java.io.File lockFile java.io. ...
/frameworks/base/services/backup/java/com/android/server/backup/
H A DBackupManagerService.java230 // backup task state machine tick
601 // If we're running a schedule-driven full backup, this is the task instance doing it
693 // file identity is being passed to the backup processing task.
730 BackupRestoreTask task = (BackupRestoreTask) msg.obj;
731 if (MORE_DEBUG) Slog.v(TAG, "Got next step for " + task + ", executing");
732 task.execute();
734 Slog.e(TAG, "Invalid backup task in flight, obj=" + msg.obj);
742 BackupRestoreTask task = (BackupRestoreTask) msg.obj;
743 task.operationComplete();
755 PerformAdbBackupTask task
[all...]
/frameworks/base/services/core/java/com/android/server/
H A DAppOpsService.java87 AsyncTask<Void, Void, Void> task = new AsyncTask<Void, Void, Void>() {
93 task.executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR, (Void[])null);
/frameworks/base/tools/aidl/
H A Daidl.cpp1148 switch (options.task)

Completed in 572 milliseconds

123