/system/update_engine/common/ |
mock_http_fetcher.h | 135 // The TaskId of the timeout callback. After each chunk of data sent, we 137 brillo::MessageLoop::TaskId timeout_id_;
|
/cts/hostsidetests/services/activitymanager/src/android/server/cts/ |
ActivityManagerState.java | 343 ActivityTask getTask(int taskId) { 345 if (taskId == task.mTaskId) { 396 final String taskId = matcher.group(1); 397 log(taskId); 398 task.mTaskId = Integer.parseInt(taskId);
|
ActivityManagerTestBase.java | 61 private static final String TASK_ID_PREFIX = "taskId"; 205 final int taskId = getActivityTaskId(activityName); 206 final String cmd = AM_MOVE_TASK + taskId + " " + stackId + " true"; 212 final int taskId = getActivityTaskId(activityName); 214 + taskId + " " + left + " " + top + " " + right + " " + bottom;
|
WindowManagerState.java | 294 private static final Pattern sTaskIdPattern = Pattern.compile("taskId=(\\d+)"); 353 WindowTask getTask(int taskId) { 355 if (taskId == task.mTaskId) { 393 final String taskId = matcher.group(1); 394 log(taskId); 395 task.mTaskId = Integer.parseInt(taskId);
|
/frameworks/base/core/java/android/app/ |
IActivityManager.java | 98 public int startActivityFromRecents(int taskId, Bundle options) 141 public ActivityManager.TaskThumbnail getTaskThumbnail(int taskId) throws RemoteException; 148 public void moveTaskToStack(int taskId, int stackId, boolean toTop) throws RemoteException; 149 public boolean moveTaskToDockedStack(int taskId, int createMode, boolean toTop, boolean animate, 208 public void positionTaskInStack(int taskId, int stackId, int position) throws RemoteException; 211 public boolean isInHomeStack(int taskId) throws RemoteException; 214 public void setFocusedTask(int taskId) throws RemoteException; 472 public boolean removeTask(int taskId) throws RemoteException; 561 public void startSystemLockTaskMode(int taskId) throws RemoteException; 563 public void startLockTaskMode(int taskId) throws RemoteException [all...] |
ActivityManagerNative.java | 364 final int taskId = data.readInt(); 367 final int result = startActivityFromRecents(taskId, options); 778 int taskId = data.readInt(); 781 moveTaskToStack(taskId, stackId, toTop); 788 int taskId = data.readInt(); 799 taskId, createMode, toTop, animate, bounds, moveHomeStackFront); [all...] |
/frameworks/base/services/core/java/com/android/server/am/ |
ActivityStackSupervisor.java | [all...] |
TaskRecord.java | 141 final int taskId; // Unique identifier for this task. 235 int mAffiliatedTaskId; // taskId of parent affiliation or self if no parent. 281 taskId = _taskId; 302 taskId = _taskId; 341 taskId = _taskId; 517 mPrevAffiliateTaskId = prevAffiliate == null ? INVALID_TASK_ID : prevAffiliate.taskId; 522 mNextAffiliateTaskId = nextAffiliate == null ? INVALID_TASK_ID : nextAffiliate.taskId; [all...] |
ActivityStartInterceptor.java | 184 mIntent.putExtra(EXTRA_TASK_ID, mInTask.taskId); 195 mActivityOptions.setLaunchTaskId(homeActivityRecord.task.taskId);
|
ActivityStack.java | 582 * @param taskId If non-zero, we'll attempt to skip over records with the same task ID. 586 final ActivityRecord topRunningActivityLocked(IBinder token, int taskId) { 589 if (task.taskId == taskId) { 595 // Note: the taskId check depends on real taskId fields being non-zero 628 if (task.taskId == id) { 713 mWindowManager.moveTaskToTop(task.taskId); [all...] |
ActivityManagerService.java | [all...] |
/packages/apps/Settings/src/com/android/settings/ |
ConfirmDeviceCredentialBaseFragment.java | 209 int taskId = getActivity().getIntent().getIntExtra(Intent.EXTRA_TASK_ID, -1); 210 if (taskId != -1) { 215 activityManager.startActivityFromRecents(taskId, options.toBundle());
|
/frameworks/base/core/java/com/android/internal/statusbar/ |
IStatusBar.aidl | 66 void showScreenPinningRequest(int taskId);
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/tv/ |
TvStatusBar.java | 157 public void showScreenPinningRequest(int taskId) {
|
/system/update_engine/update_manager/ |
real_device_policy_provider.h | 135 brillo::MessageLoop::TaskId scheduled_refresh_{
|
evaluation_context.h | 164 // The TaskId returned by the message loop identifying the timeout callback. 166 brillo::MessageLoop::TaskId timeout_event_ =
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/ |
TaskStackLayoutAlgorithm.java | 680 int taskId = mTaskIndexOverrideMap.keyAt(i); 681 float x = mTaskIndexMap.get(taskId); 682 float overrideX = mTaskIndexOverrideMap.get(taskId, 0f); 690 mTaskIndexOverrideMap.put(taskId, newOverrideX); 698 mTaskIndexOverrideMap.put(taskId, newOverrideX); [all...] |
RecentsTransitionHelper.java | 83 private int taskId = -1; 87 EventBus.getDefault().send(new ScreenPinningRequestEvent(mContext, taskId)); 129 mStartScreenPinningRunnable.taskId = task.key.id;
|
/frameworks/base/services/core/java/com/android/server/wm/ |
WindowManagerService.java | [all...] |
/device/google/contexthub/firmware/src/drivers/bosch_bmp280/ |
bosch_bmp280.c | 594 static bool startTask(uint32_t taskId) 596 mTask.id = taskId; 603 osEventSubscribe(taskId, EVT_APP_START);
|
/device/google/contexthub/firmware/src/drivers/synaptics_s3708/ |
synaptics_s3708.c | 549 static bool startTask(uint32_t taskId) 551 mTask.id = taskId; 559 osEventSubscribe(taskId, EVT_APP_START);
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
CommandQueue.java | 121 void showScreenPinningRequest(int taskId); 315 public void showScreenPinningRequest(int taskId) { 317 mHandler.obtainMessage(MSG_SHOW_SCREEN_PIN_REQUEST, taskId, 0, null)
|
/frameworks/base/services/tests/servicestests/src/com/android/server/job/ |
JobStoreTest.java | 49 int taskId = 5; 54 final JobInfo task = new Builder(taskId, mComponent)
|
/cts/tests/tests/alarmclock/service/src/android/alarmclock/service/ |
MainInteractionSession.java | 100 public void onTaskFinished(Intent intent, int taskId) {
|
/cts/tests/tests/voicesettings/service/src/android/voicesettings/service/ |
MainInteractionSession.java | 117 public void onTaskFinished(Intent intent, int taskId) {
|