Home | History | Annotate | Download | only in am

Lines Matching refs:affinity

61     private static final String ATTR_AFFINITY = "affinity";
86 String affinity; // The affinity name for this task, or null; may change identity.
87 String rootAffinity; // Initial base affinity, or null; does not change from initial root.
91 Intent affinityIntent; // Intent of affinity-moved activity that started this task.
225 affinity = _affinity;
281 affinity = info.taskAffinity;
284 // affinity -- we don't want it changing after initially set, but the initially
286 rootAffinity = affinity;
815 // Write affinity, and root affinity if it is different from affinity.
816 // We use the special string "@" for a null root affinity, so we can identify
817 // later whether we were given a root affinity or should just make it the
818 // same as the affinity.
819 if (affinity != null) {
820 out.attribute(null, ATTR_AFFINITY, affinity);
821 if (!affinity.equals(rootAffinity)) {
883 String affinity = null;
919 affinity = attrValue;
991 rootAffinity = affinity;
1017 affinityIntent, affinity, rootAffinity, realActivity, origActivity, rootHasReset,
1036 if (affinity != null || rootAffinity != null) {
1037 pw.print(prefix); pw.print("affinity="); pw.print(affinity);
1038 if (affinity == null || !affinity.equals(rootAffinity)) {
1138 if (affinity != null) {
1140 sb.append(affinity);