Searched defs:affinity (Results 1 - 4 of 4) sorted by relevance

/frameworks/support/room/migration/src/main/java/androidx/room/migration/bundle/
H A DFieldBundle.java35 @SerializedName("affinity")
40 public FieldBundle(String fieldPath, String columnName, String affinity, boolean nonNull) { argument
43 mAffinity = affinity;
/frameworks/base/services/tests/servicestests/src/com/android/server/am/
H A DTaskRecordTests.java184 Intent affinityIntent, String affinity, String rootAffinity,
183 create(ActivityManagerService service, int taskId, Intent intent, Intent affinityIntent, String affinity, String rootAffinity, ComponentName realActivity, ComponentName origActivity, boolean rootWasReset, boolean autoRemoveRecents, boolean askedCompatMode, int userId, int effectiveUid, String lastDescription, ArrayList<ActivityRecord> activities, long lastTimeMoved, boolean neverRelinquishIdentity, ActivityManager.TaskDescription lastTaskDescription, int taskAffiliation, int prevTaskId, int nextTaskId, int taskAffiliationColor, int callingUid, String callingPackage, int resizeMode, boolean supportsPictureInPicture, boolean realActivitySuspended, boolean userSetupComplete, int minWidth, int minHeight) argument
/frameworks/support/room/runtime/src/main/java/androidx/room/util/
H A DTableInfo.java316 * The column type affinity.
326 public final int affinity; field in class:TableInfo.Column
352 this.affinity = findAffinity(type);
403 return affinity == column.affinity;
418 result = 31 * result + affinity;
429 + ", affinity='" + affinity + '\''
/frameworks/base/services/core/java/com/android/server/am/
H A DTaskRecord.java145 private static final String ATTR_AFFINITY = "affinity";
202 String affinity; // The affinity name for this task, or null; may change identity. field in class:TaskRecord
203 String rootAffinity; // Initial base affinity, or null; does not change from initial root.
208 Intent affinityIntent; // Intent of affinity-moved activity that started this task.
391 affinity = _affinity;
806 affinity = info.taskAffinity;
809 // affinity -- we don't want it changing after initially set, but the initially
811 rootAffinity = affinity;
1938 if (affinity !
2246 create(ActivityManagerService service, int taskId, Intent intent, Intent affinityIntent, String affinity, String rootAffinity, ComponentName realActivity, ComponentName origActivity, boolean rootWasReset, boolean autoRemoveRecents, boolean askedCompatMode, int userId, int effectiveUid, String lastDescription, ArrayList<ActivityRecord> activities, long lastTimeMoved, boolean neverRelinquishIdentity, TaskDescription lastTaskDescription, int taskAffiliation, int prevTaskId, int nextTaskId, int taskAffiliationColor, int callingUid, String callingPackage, int resizeMode, boolean supportsPictureInPicture, boolean realActivitySuspended, boolean userSetupComplete, int minWidth, int minHeight) argument
[all...]

Completed in 110 milliseconds