OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:newActivityIntent
(Results
1 - 3
of
3
) sorted by null
/packages/services/Car/tests/carservice_test/src/com/android/car/test/
SystemActivityMonitoringServiceTest.java
100
Intent
newActivityIntent
= new Intent();
101
newActivityIntent
.setComponent(blockingActivity);
111
newActivityIntent
);
/packages/services/Car/service/src/com/android/car/
SystemActivityMonitoringService.java
166
* @param
newActivityIntent
Intent for new Activity
168
public void blockActivity(TopTaskInfoContainer currentTask, Intent
newActivityIntent
) {
169
mHandler.requestBlockActivity(currentTask,
newActivityIntent
);
311
private void handleBlockActivity(TopTaskInfoContainer currentTask, Intent
newActivityIntent
) {
321
newActivityIntent
.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
323
mContext.startActivityAsUser(
newActivityIntent
,
326
findTaskAndGrantFocus(
newActivityIntent
.getComponent());
415
Intent
newActivityIntent
) {
417
new Pair<TopTaskInfoContainer, Intent>(currentTask,
newActivityIntent
));
/packages/services/Car/service/src/com/android/car/pm/
CarPackageManagerService.java
660
Intent
newActivityIntent
= new Intent();
661
newActivityIntent
.setComponent(mActivityBlockingActivity);
662
newActivityIntent
.putExtra(
665
mSystemActivityMonitoringService.blockActivity(topTask,
newActivityIntent
);
[
all
...]
Completed in 4978 milliseconds