Home
last modified time | relevance | path

Searched refs:DIRTY (Results 1 – 23 of 23) sorted by relevance

/packages/providers/DownloadProvider/tests/src/com/android/providers/downloads/
DStorageTest.java112 private enum CacheStatus { CLEAN, DIRTY } enumConstant
117 CacheStatus.DIRTY, BodyType.COMPLETE, in testDataDirtyComplete()
123 CacheStatus.DIRTY, BodyType.CHUNKED, in testDataDirtyChunked()
141 CacheStatus.DIRTY, BodyType.COMPLETE, in testCacheDirtyComplete()
147 CacheStatus.DIRTY, BodyType.CHUNKED, in testCacheDirtyChunked()
195 if (cache == CacheStatus.DIRTY) { in prepareAndRunDownload()
/packages/providers/CalendarProvider/src/com/android/providers/calendar/
DCalendarProvider2.java197 Events.DIRTY + "=1," +
1711 modValues.put(Events.DIRTY, true); in handleInsertException()
2093 values.put(Events.DIRTY, 1); in insertInTransaction()
3257 values.put(Events.DIRTY, 1); in deleteEventInternal()
3316 dirtyValues.put(Events.DIRTY, "1"); in deleteFromEventRelatedTable()
3400 dirtyValues.put(Events.DIRTY, "1"); in deleteReminders()
3509 dirtyValues.put(Events.DIRTY, "1"); in updateEventRelatedTable()
3836 modValues.put(Events.DIRTY, 1); in handleUpdateEvents()
3870 if (modValues.containsKey(Events.DIRTY) in handleUpdateEvents()
3871 && modValues.getAsInteger(Events.DIRTY) == 0) { in handleUpdateEvents()
[all …]
DCalendarDatabaseHelper.java525 CalendarContract.Events.DIRTY + " INTEGER," + in createEventsTable()
771 Calendars.DIRTY + " INTEGER," + in createCalendarsTable()
3216 + Tables.EVENTS + "." + CalendarContract.Events.DIRTY in createEventsView()
3217 + " AS " + CalendarContract.Events.DIRTY + "," in createEventsView()
3382 + Events.DIRTY + "," + Events.LAST_SYNCED + ")" in duplicateEvent()
3385 + " WHERE " + Events._ID + " = ? AND " + Events.DIRTY + " = ?", in duplicateEvent()
DCalendarDebug.java111 + " AND " + CalendarContract.Events.DIRTY + "=1"; in doInBackground()
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
DDbModifierWithNotification.java178 Integer callerSetDirty = values.getAsInteger(Voicemails.DIRTY); in update()
185 values.put(VoicemailContract.Voicemails.DIRTY, isDirty); in update()
241 values.put(VoicemailContract.Voicemails.DIRTY, 1); in delete()
DVoicemailContentTable.java75 .add(Voicemails.DIRTY)
115 .add(Voicemails.DIRTY) in VoicemailContentTable()
DCallLogDatabaseHelper.java156 Voicemails.DIRTY + " INTEGER NOT NULL DEFAULT 0," + in onCreate()
DContactsDatabaseHelper.java456 Tables.RAW_CONTACTS + "." + RawContacts.DIRTY;
1291 RawContacts.DIRTY + " INTEGER NOT NULL DEFAULT 0," + in onCreate()
1519 Groups.DIRTY + " INTEGER NOT NULL DEFAULT 0," + in onCreate()
1937 + RawContactsColumns.CONCRETE_DIRTY + " AS " + RawContacts.DIRTY + "," in createContactsViews()
2337 + Groups.DIRTY + "," in createGroupsView()
DContactsProvider2.java559 " SET " + RawContacts.DIRTY + "=1" +
668 RawContacts.DIRTY,
728 .add(RawContacts.DIRTY)
1016 .add(Groups.DIRTY)
3269 values.put(Groups.DIRTY, 1); in insertGroup()
3848 values.put(Groups.DIRTY, 1); in deleteGroup()
3999 values.put(RawContacts.DIRTY, 1); in markRawContactAsDeleted()
4402 if (!callerIsSyncAdapter && !updatedValues.containsKey(Groups.DIRTY)) { in updateGroups()
4403 updatedValues.put(Groups.DIRTY, 1); in updateGroups()
4815 values.put(RawContacts.DIRTY, 1); in updateContactOptions()
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
DVoicemailProviderTest.java168 values.put(Voicemails.DIRTY, "0"); in testUpdateOwnPackageVoicemail_NotDirty()
174 values.put(Voicemails.DIRTY, "1"); in testUpdateOwnPackageVoicemail_RemovesDirtyStatus()
180 newValues.put(Voicemails.DIRTY, "0"); in testUpdateOwnPackageVoicemail_RemovesDirtyStatus()
205 values.put(Voicemails.DIRTY, "1"); in testDeleteOtherPackageVoicemail_SetsDirtyStatus()
DContactsDatabaseHelperUpgradeTest.java271 new TableColumn(RawContacts.DIRTY, INTEGER, true, "0"),
406 new TableColumn(Groups.DIRTY, INTEGER, true, "0"),
485 new TableColumn(Voicemails.DIRTY, INTEGER, true, "0"),
DGroupsTest.java174 values.put(Groups.DIRTY, 0); in testGroupDirtyClearedWhenSetExplicitly()
DCallLogProviderTest.java61 Voicemails.DIRTY,
DContactsProvider2Test.java369 RawContacts.DIRTY, in testRawContactsProjection()
444 RawContacts.DIRTY, in testDataProjection()
613 RawContacts.DIRTY, in testEntityProjection()
672 RawContacts.DIRTY, in testRawEntityProjection()
844 Groups.DIRTY, in testGroupsProjection()
872 Groups.DIRTY, in testGroupsSummaryProjection()
965 values.put(RawContacts.DIRTY, 1); in testRawContactsInsert()
4410 values.put(Groups.DIRTY, 1); in testGroupInsert()
8996 String[] projection = new String[]{ContactsContract.RawContacts.DIRTY, in testContactDelete_marksRawContactsForDeletion()
/packages/apps/Dialer/java/com/android/dialer/backup/
DDialerBackupUtils.java131 case Voicemails.DIRTY: in convertVoicemailCursorRowToProto()
216 contentValues.put(Voicemails.DIRTY, voicemailInfo.getDirty()); in convertVoicemailProtoFileToContentValueAndAudioBytes()
/packages/apps/Dialer/java/com/android/contacts/common/model/
DContactLoader.java477 cursorColumnToContentValues(cursor, cv, ContactQuery.DIRTY); in loadRawContactValues()
805 public static final int DIRTY = 18; field in ContactLoader.ContactQuery
872 RawContacts.DIRTY,
DRawContact.java140 return getValues().getAsBoolean(RawContacts.DIRTY); in isDirty()
/packages/apps/Contacts/src/com/android/contacts/model/
DContactLoader.java142 RawContacts.DIRTY,
224 public static final int DIRTY = 18; field in ContactLoader.ContactQuery
637 cursorColumnToContentValues(cursor, cv, ContactQuery.DIRTY); in loadRawContactValues()
DRawContact.java225 return getValues().getAsBoolean(RawContacts.DIRTY); in isDirty()
/packages/apps/Dialer/java/com/android/dialer/app/calllog/
DCallLogAsyncTaskUtil.java61 values.put(Voicemails.DIRTY, 1); in markVoicemailAsRead()
/packages/apps/Dialer/java/com/android/voicemail/impl/sync/
DVoicemailsQueryHelper.java53 Voicemails.DIRTY + "=1 AND " + Voicemails.DELETED + "!=1 AND " + Voicemails.IS_READ + "=1";
/packages/apps/Contacts/tests/src/com/android/contacts/model/
DContactLoaderTest.java325 RawContacts.DIRTY, RawContacts.VERSION, RawContacts.SOURCE_ID, in fetchAllData()
/packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/
DCalendarProvider2Test.java2207 int dirty = cursor.getInt(cursor.getColumnIndex(CalendarContract.Events.DIRTY)); in testAndClearDirty()
2211 mDb.execSQL("UPDATE Events SET " + Events.DIRTY + "=0 WHERE _id=" + eventId); in testAndClearDirty()