Home
last modified time | relevance | path

Searched refs:targetComponent (Results 1 – 11 of 11) sorted by relevance

/frameworks/base/tests/UiBench/src/com/android/test/uibench/
DInflatingListActivity.java38 final ComponentName targetComponent = getIntent().getComponent(); in createListAdapter() local
41 if (targetComponent.equals(LATIN_WORDS)) { in createListAdapter()
43 } else if (targetComponent.equals(EMOJI)) { in createListAdapter()
45 } else if (targetComponent.equals(HAN)) { in createListAdapter()
47 } else if (targetComponent.equals(LONG_STRING)) { in createListAdapter()
50 throw new RuntimeException("Unknown Component: " + targetComponent); in createListAdapter()
/frameworks/base/services/devicepolicy/java/com/android/server/devicepolicy/
DTransferOwnershipMetadataManager.java92 TAG_TARGET_COMPONENT, params.targetComponent.flattenToString()); in saveMetadataFile()
138 String targetComponent = null; in parseMetadataFile() local
152 targetComponent = parser.getText(); in parseMetadataFile()
164 return new Metadata(adminComponent, targetComponent, userId, adminType); in parseMetadataFile()
179 final ComponentName targetComponent; field in TransferOwnershipMetadataManager.Metadata
182 Metadata(@NonNull ComponentName sourceComponent, @NonNull ComponentName targetComponent, in Metadata() argument
185 this.targetComponent = targetComponent; in Metadata()
187 Objects.requireNonNull(targetComponent); in Metadata()
213 && targetComponent.equals(params.targetComponent) in equals()
222 hashCode = 31 * hashCode + targetComponent.hashCode(); in hashCode()
DDevicePolicyManagerService.java3220 transferProfileOwnershipLocked(metadata.targetComponent, metadata.sourceComponent,
3225 transferDeviceOwnershipLocked(metadata.targetComponent, metadata.sourceComponent,
/frameworks/av/media/codec2/tests/
DC2SampleComponent_test.cpp112 virtual c2_status_t createTunnel_sm(c2_node_id_t targetComponent) override { in createTunnel_sm() argument
113 (void)targetComponent; in createTunnel_sm()
161 virtual c2_status_t releaseTunnel_sm(c2_node_id_t targetComponent) override { in releaseTunnel_sm() argument
162 (void)targetComponent; in releaseTunnel_sm()
/frameworks/base/core/java/android/content/pm/
DShortcutManager.java695 @NonNull ComponentName targetComponent) { in ShareShortcutInfo() argument
699 if (targetComponent == null) { in ShareShortcutInfo()
704 mTargetComponent = targetComponent; in ShareShortcutInfo()
/frameworks/av/media/codec2/core/include/
DC2Component.h247 virtual c2_status_t createTunnel_sm(c2_node_id_t targetComponent) = 0;
272 virtual c2_status_t releaseTunnel_sm(c2_node_id_t targetComponent) = 0;
/frameworks/base/services/tests/wmtests/src/com/android/server/wm/
DRootWindowContainerTests.java131 final ComponentName targetComponent = ComponentName.createRelative( in testFindActivityByTargetComponent() local
135 .setTargetActivity(targetComponent.getClassName()) in testFindActivityByTargetComponent()
DTaskTests.java813 final ComponentName targetComponent = in testTaskIntentActivityAlias() local
837 targetComponent).build(); in testTaskIntentActivityAlias()
/frameworks/base/services/core/java/com/android/server/content/
DSyncManager.java3548 ComponentName targetComponent; in dispatchSyncOperation() local
3563 targetComponent = syncAdapterInfo.componentName; in dispatchSyncOperation()
3576 if (!activeSyncContext.bindToSyncAdapter(targetComponent, info.userId)) { in dispatchSyncOperation()
3578 targetComponent); in dispatchSyncOperation()
3579 Slog.e(TAG, "Bind attempt failed - target: " + targetComponent); in dispatchSyncOperation()
/frameworks/base/services/core/java/com/android/server/wm/
DTask.java1285 ComponentName targetComponent = new ComponentName( in setIntent() local
1293 realActivity = targetComponent; in setIntent()
1297 realActivity = targetComponent; in setIntent()
/frameworks/base/services/core/java/com/android/server/am/
DActivityManagerService.java1115 ComponentName targetComponent, String targetProcess) { in Association() argument
1119 mTargetComponent = targetComponent; in Association()
14126 int targetUid, long targetVersionCode, ComponentName targetComponent, in startAssociationLocked() argument
14137 SparseArray<ArrayMap<String, Association>> sourceUids = components.get(targetComponent); in startAssociationLocked()
14140 components.put(targetComponent, sourceUids); in startAssociationLocked()
14149 ass = new Association(sourceUid, sourceProcess, targetUid, targetComponent, in startAssociationLocked()
14163 long targetVersionCode, ComponentName targetComponent, String targetProcess) { in stopAssociationLocked() argument
14172 SparseArray<ArrayMap<String, Association>> sourceUids = components.get(targetComponent); in stopAssociationLocked()