Searched refs:aggregationMode (Results 1 – 4 of 4) sorted by relevance
/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/ |
D | AbstractContactAggregator.java | 507 int aggregationMode = mDbHelper.getAggregationMode(rawContactId); in triggerAggregation() local 508 switch (aggregationMode) { in triggerAggregation() 513 markForAggregation(rawContactId, aggregationMode, false); in triggerAggregation() 539 public final void markNewForAggregation(long rawContactId, int aggregationMode) { in markNewForAggregation() argument 540 mRawContactsMarkedForAggregation.put(rawContactId, aggregationMode); in markNewForAggregation() 543 public final void markForAggregation(long rawContactId, int aggregationMode, boolean force) { in markForAggregation() argument 548 if (aggregationMode == RawContacts.AGGREGATION_MODE_DEFAULT) { in markForAggregation() 551 effectiveAggregationMode = aggregationMode; in markForAggregation() 556 effectiveAggregationMode = aggregationMode; in markForAggregation() 584 int aggregationMode = cursor.getInt( in markContactForAggregation() local [all …]
|
D | ContactAggregator.java | 87 int aggregationMode = RawContacts.AGGREGATION_MODE_DEFAULT; in aggregateContact() local 91 aggregationMode = aggModeObject; in aggregateContact() 100 if (aggregationMode == RawContacts.AGGREGATION_MODE_DEFAULT) { in aggregateContact() 165 } else if (aggregationMode == RawContacts.AGGREGATION_MODE_DISABLED) { in aggregateContact() 184 || aggregationMode == RawContacts.AGGREGATION_MODE_SUSPENDED)) { in aggregateContact()
|
D | ContactAggregator2.java | 106 int aggregationMode = RawContacts.AGGREGATION_MODE_DEFAULT; in aggregateContact() local 110 aggregationMode = aggModeObject; in aggregateContact() 115 if (aggregationMode == RawContacts.AGGREGATION_MODE_DEFAULT) { in aggregateContact() 124 } else if (aggregationMode == RawContacts.AGGREGATION_MODE_DISABLED) { in aggregateContact() 157 || aggregationMode == RawContacts.AGGREGATION_MODE_SUSPENDED)) { in aggregateContact()
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
D | ContactsProvider2.java | 2859 final int aggregationMode = getIntValue(values, RawContacts.AGGREGATION_MODE, in insertRawContact() local 2861 mAggregator.get().markNewForAggregation(rawContactId, aggregationMode); in insertRawContact() 4556 int aggregationMode = getIntValue( in updateRawContact() local 4561 if (aggregationMode != RawContacts.AGGREGATION_MODE_DEFAULT) { in updateRawContact() 4562 aggregator.markForAggregation(rawContactId, aggregationMode, false); in updateRawContact()
|