/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); 49 public boolean update(SQLiteDatabase db, TransactionContext txContext, ContentValues values, 52 super.update(db, txContext, values, c, callerIsSyncAdapter); 57 triggerAggregation(txContext, rawContactId); 64 public int delete(SQLiteDatabase db, TransactionContext txContext, Cursor c) { 65 final int count = super.delete(db, txContext, c); 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); 47 triggerAggregation(txContext, rawContactId); 53 public boolean update(SQLiteDatabase db, TransactionContext txContext, ContentValues values, 55 if (!super.update(db, txContext, values, c, callerIsSyncAdapter)) { 66 fixRawContactDisplayName(db, txContext, rawContactId); 67 triggerAggregation(txContext, rawContactId); 74 public int delete(SQLiteDatabase db, TransactionContext txContext, Cursor c) { 78 int count = super.delete(db, txContext, c) [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); 49 triggerAggregation(txContext, rawContactId); 55 public boolean update(SQLiteDatabase db, TransactionContext txContext, ContentValues values, 60 if (!super.update(db, txContext, values, c, callerIsSyncAdapter)) { 68 fixRawContactDisplayName(db, txContext, rawContactId); 69 triggerAggregation(txContext, rawContactId); 76 public int delete(SQLiteDatabase db, TransactionContext txContext, Cursor c) { 80 int count = super.delete(db, txContext, c) [all...] |
DataRowHandlerForCommonDataKind.java | 44 public long insert(SQLiteDatabase db, TransactionContext txContext, long rawContactId, 47 return super.insert(db, txContext, rawContactId, values); 51 public boolean update(SQLiteDatabase db, TransactionContext txContext, ContentValues values, 59 return super.update(db, txContext, values, c, callerIsSyncAdapter);
|
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); 54 public boolean update(SQLiteDatabase db, TransactionContext txContext, ContentValues values, 56 if (!super.update(db, txContext, values, c, callerIsSyncAdapter)) { 90 fixRawContactDisplayName(db, txContext, rawContactId); 96 public int delete(SQLiteDatabase db, TransactionContext txContext, Cursor c) { 100 int count = super.delete(db, txContext, c); 101 fixRawContactDisplayName(db, txContext, rawContactId);
|
DataRowHandlerForPhoneNumber.java | 42 public long insert(SQLiteDatabase db, TransactionContext txContext, long rawContactId, 46 final long dataId = super.insert(db, txContext, rawContactId, values); 52 fixRawContactDisplayName(db, txContext, rawContactId); 54 triggerAggregation(txContext, rawContactId); 60 public boolean update(SQLiteDatabase db, TransactionContext txContext, ContentValues values, 64 if (!super.update(db, txContext, values, c, callerIsSyncAdapter)) { 75 fixRawContactDisplayName(db, txContext, rawContactId); 77 triggerAggregation(txContext, rawContactId); 101 public int delete(SQLiteDatabase db, TransactionContext txContext, Cursor c) { 105 int count = super.delete(db, txContext, c) [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); 83 updateVisibility(txContext, rawContactId); 88 public boolean update(SQLiteDatabase db, TransactionContext txContext, ContentValues values, 92 resolveGroupSourceIdInValues(txContext, rawContactId, db, values, false); 93 if (!super.update(db, txContext, values, c, callerIsSyncAdapter)) { 100 updateVisibility(txContext, rawContactId); 124 public int delete(SQLiteDatabase db, TransactionContext txContext, Cursor c) { 127 int count = super.delete(db, txContext, c) [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)) { 78 public boolean update(SQLiteDatabase db, TransactionContext txContext, ContentValues values, 92 if (!super.update(db, txContext, values, c, callerIsSyncAdapter)) { 131 public int delete(SQLiteDatabase db, TransactionContext txContext, Cursor c) { 133 int count = super.delete(db, txContext, c);
|
DataRowHandlerForStructuredName.java | 47 public long insert(SQLiteDatabase db, TransactionContext txContext, long rawContactId, 51 long dataId = super.insert(db, txContext, rawContactId, values); 60 fixRawContactDisplayName(db, txContext, rawContactId); 61 triggerAggregation(txContext, rawContactId); 66 public boolean update(SQLiteDatabase db, TransactionContext txContext, ContentValues values, 78 super.update(db, txContext, values, c, callerIsSyncAdapter); 93 fixRawContactDisplayName(db, txContext, rawContactId); 94 triggerAggregation(txContext, rawContactId); 99 public int delete(SQLiteDatabase db, TransactionContext txContext, Cursor c) { 103 int count = super.delete(db, txContext, c) [all...] |
DataRowHandlerForStructuredPostal.java | 55 public long insert(SQLiteDatabase db, TransactionContext txContext, long rawContactId, 58 return super.insert(db, txContext, rawContactId, values); 62 public boolean update(SQLiteDatabase db, TransactionContext txContext, ContentValues values, 71 super.update(db, txContext, values, c, callerIsSyncAdapter);
|
DataRowHandler.java | 109 public long insert(SQLiteDatabase db, TransactionContext txContext, long rawContactId, 137 txContext.invalidateSearchIndexForRawContact(rawContactId); 149 public boolean update(SQLiteDatabase db, TransactionContext txContext, 162 txContext.invalidateSearchIndexForRawContact(rawContactId); 165 txContext.markRawContactDirtyAndChanged(rawContactId, callerIsSyncAdapter); 248 public int delete(SQLiteDatabase db, TransactionContext txContext, Cursor c) { 261 txContext.invalidateSearchIndexForRawContact(rawContactId); 302 protected void fixRawContactDisplayName(SQLiteDatabase db, TransactionContext txContext, 304 if (!isNewRawContact(txContext, rawContactId)) { 310 private boolean isNewRawContact(TransactionContext txContext, long rawContactId) [all...] |
ContactsDatabaseHelper.java | [all...] |
/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/ |
ProfileAggregator.java | 62 public long onRawContactInsert(TransactionContext txContext, SQLiteDatabase db, 64 aggregateContact(txContext, db, rawContactId); 69 public void aggregateInTransaction(TransactionContext txContext, SQLiteDatabase db) { 74 public void aggregateContact(TransactionContext txContext, SQLiteDatabase db, 86 updateAggregateData(txContext, mContactId);
|
ContactAggregator.java | 413 public void aggregateInTransaction(TransactionContext txContext, SQLiteDatabase db) { 472 aggregateContact(txContext, db, rawContactIds[i], accountIds[i], contactIds[i], 487 public void triggerAggregation(TransactionContext txContext, long rawContactId) { 506 updateAggregateData(txContext, contactId); 512 aggregateContact(txContext, mDbHelper.getWritableDatabase(), rawContactId); 627 TransactionContext txContext, SQLiteDatabase db, long rawContactId) { 630 mDbHelper.updateContactVisible(txContext, contactId); 655 TransactionContext txContext, SQLiteDatabase db, long rawContactId) { 678 aggregateContact(txContext, db, rawContactId, accountId, contactId, 682 public void updateAggregateData(TransactionContext txContext, long contactId) [all...] |
/hardware/ti/wpan/tools/FM/FmRadioIf/src/java/com/ti/core/ |
JFmTx.java | 31 private static JFmContext txContext; 498 txContext = new JFmContext(); 501 int fmStatus = nativeJFmTx_Create(txContext); 504 + ", txContext = " + txContext.getValue()); 512 mTxContextsTable.put(txContext, this); 527 int fmStatus = nativeJFmTx_Destroy(txContext.getValue()); 536 mTxContextsTable.remove(txContext); 554 int fmStatus = nativeJFmTx_Enable(txContext.getValue()); 573 int status = nativeJFmTx_Disable(txContext.getValue()) [all...] |