HomeSort by relevance Sort by last modified time
    Searched refs:parentCursor (Results 1 - 2 of 2) sorted by null

  /packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
MailboxUtilities.java 45 * @param parentCursor a cursor to a mailbox that requires fixup
48 public static void setFlagsAndChildrensParentKey(Context context, Cursor parentCursor,
54 long parentId = parentCursor.getLong(Mailbox.CONTENT_ID_COLUMN);
56 int parentType = parentCursor.getInt(Mailbox.CONTENT_TYPE_COLUMN);
57 String parentServerId = parentCursor.getString(Mailbox.CONTENT_SERVER_ID_COLUMN);
93 parentCursor.getString(Mailbox.CONTENT_DISPLAY_NAME_COLUMN) + ", type: " +
  /packages/apps/Exchange/src/com/android/exchange/adapter/
FolderSyncParser.java 634 final Cursor parentCursor = mContentResolver.query(Mailbox.CONTENT_URI,
636 if (parentCursor == null) {
643 if (parentCursor.moveToFirst()) {
644 parentId = parentCursor.getLong(FIXUP_PARENT_ID_COLUMN);
645 parentFlags = parentCursor.getInt(FIXUP_PARENT_FLAGS_COLUMN);
651 parentCursor.close();
    [all...]

Completed in 168 milliseconds