HomeSort by relevance Sort by last modified time
    Searched refs:rawContactId (Results 1 - 25 of 60) sorted by null

1 2 3

  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
DataRowHandlerForIdentity.java 36 public long insert(SQLiteDatabase db, TransactionContext txContext, long rawContactId,
38 final long dataId = super.insert(db, txContext, rawContactId, values);
42 triggerAggregation(txContext, rawContactId);
55 final long rawContactId = c.getLong(DataUpdateQuery.RAW_CONTACT_ID);
57 triggerAggregation(txContext, rawContactId);
68 final long rawContactId = c.getLong(DataUpdateQuery.RAW_CONTACT_ID);
69 triggerAggregation(txContext, rawContactId);
DataRowHandlerForEmail.java 38 public long insert(SQLiteDatabase db, TransactionContext txContext, long rawContactId,
42 long dataId = super.insert(db, txContext, rawContactId, values);
44 fixRawContactDisplayName(db, txContext, rawContactId);
45 String address = mDbHelper.insertNameLookupForEmail(rawContactId, dataId, email);
47 triggerAggregation(txContext, rawContactId);
61 long rawContactId = c.getLong(DataUpdateQuery.RAW_CONTACT_ID);
65 mDbHelper.insertNameLookupForEmail(rawContactId, dataId, address);
66 fixRawContactDisplayName(db, txContext, rawContactId);
67 triggerAggregation(txContext, rawContactId);
76 long rawContactId = c.getLong(DataDeleteQuery.RAW_CONTACT_ID)
    [all...]
DataRowHandlerForNickname.java 40 public long insert(SQLiteDatabase db, TransactionContext txContext, long rawContactId,
44 long dataId = super.insert(db, txContext, rawContactId, values);
47 fixRawContactDisplayName(db, txContext, rawContactId);
48 mDbHelper.insertNameLookupForNickname(rawContactId, dataId, nickname);
49 triggerAggregation(txContext, rawContactId);
58 long rawContactId = c.getLong(DataUpdateQuery.RAW_CONTACT_ID);
67 mDbHelper.insertNameLookupForNickname(rawContactId, dataId, nickname);
68 fixRawContactDisplayName(db, txContext, rawContactId);
69 triggerAggregation(txContext, rawContactId);
78 long rawContactId = c.getLong(DataDeleteQuery.RAW_CONTACT_ID)
    [all...]
TransactionContext.java 50 public void rawContactInserted(long rawContactId, long accountId) {
52 mInsertedRawContactsAccounts.put(rawContactId, accountId);
55 public void rawContactUpdated(long rawContactId) {
57 mUpdatedRawContacts.add(rawContactId);
60 public void markRawContactDirty(long rawContactId) {
62 mDirtyRawContacts.add(rawContactId);
70 public void invalidateSearchIndexForRawContact(long rawContactId) {
72 mStaleSearchIndexRawContacts.add(rawContactId);
110 public Long getAccountIdOrNullForRawContact(long rawContactId) {
112 return mInsertedRawContactsAccounts.get(rawContactId);
    [all...]
DataRowHandlerForGroupMembership.java 76 public long insert(SQLiteDatabase db, TransactionContext txContext, long rawContactId,
78 resolveGroupSourceIdInValues(txContext, rawContactId, db, values, true);
79 long dataId = super.insert(db, txContext, rawContactId, values);
80 if (hasFavoritesGroupMembership(db, rawContactId)) {
81 updateRawContactsStar(db, rawContactId, true /* starred */);
83 updateVisibility(txContext, rawContactId);
90 long rawContactId = c.getLong(DataUpdateQuery.RAW_CONTACT_ID);
91 boolean wasStarred = hasFavoritesGroupMembership(db, rawContactId);
92 resolveGroupSourceIdInValues(txContext, rawContactId, db, values, false);
96 boolean isStarred = hasFavoritesGroupMembership(db, rawContactId);
    [all...]
DataRowHandler.java 109 public long insert(SQLiteDatabase db, TransactionContext txContext, long rawContactId,
117 mDbHelper.setIsPrimary(rawContactId, dataId, mimeTypeId);
123 mDbHelper.setIsSuperPrimary(rawContactId, dataId, mimeTypeId);
125 mDbHelper.clearSuperPrimary(rawContactId, mimeTypeId);
130 if (mDbHelper.rawContactHasSuperPrimary(rawContactId, mimeTypeId)) {
131 mDbHelper.setIsSuperPrimary(rawContactId, dataId, mimeTypeId);
137 txContext.invalidateSearchIndexForRawContact(rawContactId);
152 long rawContactId = c.getLong(DataUpdateQuery.RAW_CONTACT_ID);
154 handlePrimaryAndSuperPrimary(values, dataId, rawContactId);
162 txContext.invalidateSearchIndexForRawContact(rawContactId);
    [all...]
DataRowHandlerForPhoneNumber.java 42 public long insert(SQLiteDatabase db, TransactionContext txContext, long rawContactId,
46 final long dataId = super.insert(db, txContext, rawContactId, values);
50 updatePhoneLookup(db, rawContactId, dataId, number, normalizedNumber);
51 mContactAggregator.updateHasPhoneNumber(db, rawContactId);
52 fixRawContactDisplayName(db, txContext, rawContactId);
54 triggerAggregation(txContext, rawContactId);
70 long rawContactId = c.getLong(DataUpdateQuery.RAW_CONTACT_ID);
71 updatePhoneLookup(db, rawContactId, dataId,
74 mContactAggregator.updateHasPhoneNumber(db, rawContactId);
75 fixRawContactDisplayName(db, txContext, rawContactId);
    [all...]
NameLookupBuilder.java 82 protected abstract void insertNameLookup(long rawContactId, long dataId, int lookupType,
99 public void insertNameLookup(long rawContactId, long dataId, String name, int fullNameStyle) {
111 insertNameVariant(rawContactId, dataId, tokenCount, NameLookupType.NAME_EXACT, true);
126 insertCollationKey(rawContactId, dataId, MAX_NAME_TOKENS);
138 insertNameVariants(rawContactId, dataId, 0, tokenCount, !tooManyTokens, true);
139 insertNicknamePermutations(rawContactId, dataId, 0, tokenCount);
239 private void insertNameVariants(long rawContactId, long dataId, int fromIndex, int toIndex,
242 insertNameVariant(rawContactId, dataId, toIndex,
255 insertNameVariants(rawContactId, dataId, fromIndex + 1, toIndex,
266 private void insertNameVariant(long rawContactId, long dataId, int tokenCount
    [all...]
DataRowHandlerForPhoto.java 58 public long insert(SQLiteDatabase db, TransactionContext txContext, long rawContactId,
70 long dataId = super.insert(db, txContext, rawContactId, values);
71 if (!txContext.isNewRawContact(rawContactId)) {
72 mContactAggregator.updatePhotoId(db, rawContactId);
80 long rawContactId = c.getLong(DataUpdateQuery.RAW_CONTACT_ID);
96 mContactAggregator.updatePhotoId(db, rawContactId);
132 long rawContactId = c.getLong(DataDeleteQuery.RAW_CONTACT_ID);
134 mContactAggregator.updatePhotoId(db, rawContactId);
DataRowHandlerForStructuredName.java 46 public long insert(SQLiteDatabase db, TransactionContext txContext, long rawContactId,
50 long dataId = super.insert(db, txContext, rawContactId, values);
54 mNameLookupBuilder.insertNameLookup(rawContactId, dataId, name,
58 insertNameLookupForPhoneticName(rawContactId, dataId, values);
59 fixRawContactDisplayName(db, txContext, rawContactId);
60 triggerAggregation(txContext, rawContactId);
68 final long rawContactId = c.getLong(DataUpdateQuery.RAW_CONTACT_ID);
86 mNameLookupBuilder.insertNameLookup(rawContactId, dataId, name,
90 insertNameLookupForPhoneticName(rawContactId, dataId, augmented);
92 fixRawContactDisplayName(db, txContext, rawContactId);
    [all...]
ContactLookupKey.java 40 public String rawContactId;
68 String accountName, long rawContactId, String sourceId,
80 lookupKey.append('r').append(rawContactId).append('-').append(
128 String rawContactId = null;
230 rawContactId = string.substring(start, dash);
248 segment.rawContactId = rawContactId;
DataRowHandlerForOrganization.java 42 public long insert(SQLiteDatabase db, TransactionContext txContext, long rawContactId,
47 long dataId = super.insert(db, txContext, rawContactId, values);
49 fixRawContactDisplayName(db, txContext, rawContactId);
64 long rawContactId = c.getLong(DataUpdateQuery.RAW_CONTACT_ID);
90 fixRawContactDisplayName(db, txContext, rawContactId);
98 long rawContactId = c.getLong(DataDeleteQuery.RAW_CONTACT_ID);
101 fixRawContactDisplayName(db, txContext, rawContactId);
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
SearchIndexManagerTest.java 49 long rawContactId = createRawContact();
50 long contactId = queryContactId(rawContactId);
51 insertStructuredName(rawContactId, "John", "Doe");
54 insertStructuredName(rawContactId, values);
63 insertStructuredName(rawContactId, values);
75 long rawContactId = createRawContact();
76 long contactId = queryContactId(rawContactId);
79 insertStructuredName(rawContactId, values);
91 long rawContactId = createRawContact();
94 insertStructuredName(rawContactId, values)
    [all...]
SqlInjectionDetectionTest.java 44 long rawContactId = createRawContactWithName("Hot", "Tamale");
45 insertPhoneNumber(rawContactId, "555-123-4567");
52 long rawContactId = createRawContactWithName("Hot", "Tamale");
53 insertPhoneNumber(rawContactId, "555-123-4567");
60 long rawContactId = createRawContactWithName("Hot", "Tamale");
61 insertPhoneNumber(rawContactId, "555-123-4567");
68 long rawContactId = createRawContactWithName("Hot", "Tamale");
69 insertPhoneNumber(rawContactId, "555-123-4567");
77 long rawContactId = createRawContactWithName("Hot", "Tamale");
78 insertPhoneNumber(rawContactId, "555-123-4567")
    [all...]
CallerInfoIntegrationTest.java 45 long rawContactId = ContentUris.parseId(rawContactUri);
47 insertStructuredName(rawContactId, "Hot", "Tamale");
48 insertPhoneNumber(rawContactId, "800-466-4411");
ContactsProvider2Test.java 724 long rawContactId = ContentUris.parseId(rowUri);
727 assertSelection(RawContacts.CONTENT_URI, values, RawContacts._ID, rawContactId);
734 long rawContactId = createRawContactWithName();
735 insertPhoneNumber(rawContactId, "555-GOOG-411");
736 insertEmail(rawContactId, "google@android.com");
738 long contactId = queryContactId(rawContactId);
    [all...]
BaseContactsProvider2Test.java 180 long rawContactId = createRawContact(account);
181 insertStructuredName(rawContactId, firstName, lastName);
182 return rawContactId;
265 protected Uri insertStructuredName(long rawContactId, String givenName, String familyName) {
281 return insertStructuredName(rawContactId, values);
284 protected Uri insertStructuredName(long rawContactId, ContentValues values) {
285 values.put(Data.RAW_CONTACT_ID, rawContactId);
291 protected Uri insertOrganization(long rawContactId, ContentValues values) {
292 return insertOrganization(rawContactId, values, false);
295 protected Uri insertOrganization(long rawContactId, ContentValues values, boolean primary)
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
ProfileAggregator.java 54 String accountName, long rawContactId, String sourceId, String displayName) {
63 long rawContactId) {
64 aggregateContact(txContext, db, rawContactId);
75 long rawContactId) {
89 mContactId = insertContact(db, rawContactId);
93 setContactId(rawContactId, mContactId);
ContactAggregator.java 239 long rawContactId;
250 rawContactId = -1;
423 for (long rawContactId : mRawContactsMarkedForAggregation.keySet()) {
427 sbQuery.append(rawContactId);
475 public void triggerAggregation(TransactionContext txContext, long rawContactId) {
480 int aggregationMode = mDbHelper.getAggregationMode(rawContactId);
486 markForAggregation(rawContactId, aggregationMode, false);
491 long contactId = mDbHelper.getContactId(rawContactId);
500 aggregateContact(txContext, mDbHelper.getWritableDatabase(), rawContactId);
512 public void markNewForAggregation(long rawContactId, int aggregationMode)
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/util/
ContactLoaderUtils.java 58 final long rawContactId = ContentUris.parseId(uri);
60 ContentUris.withAppendedId(RawContacts.CONTENT_URI, rawContactId));
71 final long rawContactId = ContentUris.parseId(uri);
73 ContentUris.withAppendedId(RawContacts.CONTENT_URI, rawContactId));
  /packages/experimental/LoaderApp/src/com/android/loaderapp/model/
EntitySet.java 93 final Long rawContactId = remoteEntity.getValues().getId();
96 final EntityDelta localEntity = local.getByRawContactId(rawContactId);
117 final long rawContactId = this.findRawContactId();
142 if (rawContactId != -1) {
145 builder.withValue(AggregationExceptions.RAW_CONTACT_ID1, rawContactId);
233 final Long rawContactId = delta.getValues().getAsLong(RawContacts._ID);
234 if (rawContactId != null && rawContactId >= 0) {
235 return rawContactId;
255 public EntityDelta getByRawContactId(Long rawContactId) {
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/
ContactsContract_StreamItemsTest.java 56 long rawContactId = insertRawContact(mResolver);
57 Uri streamItemUri = insertViaContentDirectoryUri(mResolver, rawContactId);
63 ContentUris.withAppendedId(RawContacts.CONTENT_URI, rawContactId).buildUpon()
73 values.put(Data.RAW_CONTACT_ID, rawContactId);
91 long rawContactId = ContentUris.parseId(contactUri);
92 assertTrue(rawContactId != -1);
93 return rawContactId;
96 static Uri insertViaContentDirectoryUri(ContentResolver resolver, long rawContactId) {
106 ContentUris.withAppendedId(RawContacts.CONTENT_URI, rawContactId),
130 long rawContactId = ContentUris.parseId(results[0].uri)
    [all...]
  /packages/apps/Contacts/tests/src/com/android/contacts/model/
ContactLoaderTest.java 101 final long rawContactId = 11;
113 queries.fetchAllData(entityUri, contactId, rawContactId, dataId, lookupKey);
118 assertEquals(rawContactId, contact.getNameRawContactId());
130 final long rawContactId = 11;
135 Uri.parse("content://contacts"), rawContactId);
136 final Uri rawContactUri = ContentUris.withAppendedId(RawContacts.CONTENT_URI, rawContactId);
145 queries.fetchAllData(entityUri, contactId, rawContactId, dataId, lookupKey);
150 assertEquals(rawContactId, contact.getNameRawContactId());
162 final long rawContactId = 11;
166 final Uri rawContactUri = ContentUris.withAppendedId(RawContacts.CONTENT_URI, rawContactId);
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/model/
RawContactDeltaList.java 112 final Long rawContactId = remoteEntity.getValues().getId();
115 final RawContactDelta localEntity = local.getByRawContactId(rawContactId);
139 final long rawContactId = this.findRawContactId();
166 if (rawContactId != -1) {
167 builder.withValue(AggregationExceptions.RAW_CONTACT_ID2, rawContactId);
182 if (rawContactId != -1) {
185 builder.withValue(AggregationExceptions.RAW_CONTACT_ID1, rawContactId);
294 final Long rawContactId = delta.getValues().getAsLong(RawContacts._ID);
295 if (rawContactId != null && rawContactId >= 0)
    [all...]
  /development/samples/SampleSyncAdapter/src/com/example/android/samplesync/client/
RawContact.java 181 long rawContactId, long syncState, boolean dirty) {
194 mRawContactId = rawContactId;
216 final int rawContactId = !contact.isNull("c") ? contact.getInt("c") : -1;
229 serverContactId, rawContactId, syncState, false);
241 String email, String status, boolean deleted, long rawContactId,
244 homePhone, email, status, null, deleted, serverContactId, rawContactId,
255 public static RawContact createDeletedContact(long rawContactId, long serverContactId)
258 null, null, null, true, serverContactId, rawContactId, -1, true);

Completed in 477 milliseconds

1 2 3