Home | History | Annotate | Download | only in am

Lines Matching refs:taskId

281     void notifyActivityPinned(String packageName, int taskId) {
284 taskId, 0, packageName);
336 void notifyActivityForcedResizable(int taskId, int reason, String packageName) {
338 final Message msg = mHandler.obtainMessage(NOTIFY_FORCED_RESIZABLE_MSG, taskId, reason,
352 void notifyTaskCreated(int taskId, ComponentName componentName) {
354 taskId, 0 /* unused */, componentName);
359 void notifyTaskRemoved(int taskId) {
361 taskId, 0 /* unused */);
366 void notifyTaskMovedToFront(int taskId) {
368 taskId, 0 /* unused */);
373 void notifyTaskDescriptionChanged(int taskId, TaskDescription taskDescription) {
375 taskId, 0 /* unused */, taskDescription);
381 void notifyActivityRequestedOrientationChanged(int taskId, int orientation) {
383 NOTIFY_ACTIVITY_REQUESTED_ORIENTATION_CHANGED_LISTENERS, taskId, orientation);
393 void notifyTaskRemovalStarted(int taskId) {
394 final Message msg = mHandler.obtainMessage(NOTIFY_TASK_REMOVAL_STARTED_LISTENERS, taskId,
405 void notifyTaskProfileLocked(int taskId, int userId) {
406 final Message msg = mHandler.obtainMessage(NOTIFY_TASK_PROFILE_LOCKED_LISTENERS_MSG, taskId,
415 void notifyTaskSnapshotChanged(int taskId, TaskSnapshot snapshot) {
417 taskId, 0, snapshot);