Home
last modified time | relevance | path

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

/packages/apps/Messaging/src/com/android/messaging/datamodel/
DParticipantRefresh.java460 Cursor selfCursor = null; in refreshFromSelfProfile() local
462 selfCursor = ContactUtil.getSelf(db.getContext()).performSynchronousQuery(); in refreshFromSelfProfile()
463 if (selfCursor != null && selfCursor.getCount() > 0) { in refreshFromSelfProfile()
464 selfCursor.moveToNext(); in refreshFromSelfProfile()
465 final long selfContactId = selfCursor.getLong(ContactUtil.INDEX_CONTACT_ID); in refreshFromSelfProfile()
467 participantData.setFullName(selfCursor.getString( in refreshFromSelfProfile()
471 participantData.setProfilePhotoUri(selfCursor.getString( in refreshFromSelfProfile()
473 participantData.setLookupKey(selfCursor.getString( in refreshFromSelfProfile()
483 if (selfCursor != null) { in refreshFromSelfProfile()
484 selfCursor.close(); in refreshFromSelfProfile()