Home
last modified time | relevance | path

Searched refs:childCursor (Results 1 – 3 of 3) sorted by relevance

/packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
DMailboxUtilities.java74 Cursor childCursor = resolver.query(Mailbox.CONTENT_URI, in setFlagsAndChildrensParentKey() local
77 if (childCursor == null) return; in setFlagsAndChildrensParentKey()
79 while (childCursor.moveToNext()) { in setFlagsAndChildrensParentKey()
83 long childId = childCursor.getLong(Mailbox.ID_PROJECTION_COLUMN); in setFlagsAndChildrensParentKey()
88 childCursor.close(); in setFlagsAndChildrensParentKey()
/packages/apps/Exchange/src/com/android/exchange/adapter/
DFolderSyncParser.java678 final Cursor childCursor = mContentResolver.query(Mailbox.CONTENT_URI, in doParentFixups() local
682 if (childCursor != null) { in doParentFixups()
688 while (childCursor.moveToNext()) { in doParentFixups()
689 final long childId = childCursor.getLong(FIXUP_CHILD_ID_COLUMN); in doParentFixups()
696 childCursor.close(); in doParentFixups()
/packages/apps/Calendar/src/com/android/calendar/selectcalendars/
DSelectSyncedCalendarsMultiAccountAdapter.java407 Cursor childCursor = mChildrenCursors.get(accountType + "#" + account); in getChildrenCursor() local
409 return childCursor; in getChildrenCursor()