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

  /packages/experimental/LoaderApp/src/com/android/loaderapp/util/
ContactsUtils.java 316 Cursor rawContactIdCursor = null;
319 rawContactIdCursor = cr.query(RawContacts.CONTENT_URI,
322 if (rawContactIdCursor != null && rawContactIdCursor.moveToFirst()) {
324 rawContactId = rawContactIdCursor.getLong(0);
327 if (rawContactIdCursor != null) {
328 rawContactIdCursor.close();
335 Cursor rawContactIdCursor = null;
338 rawContactIdCursor = cr.query(RawContacts.CONTENT_URI,
341 if (rawContactIdCursor != null)
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/activities/
AttachPhotoActivity.java 185 Cursor rawContactIdCursor = null;
188 rawContactIdCursor = cr.query(RawContacts.CONTENT_URI,
191 if (rawContactIdCursor != null) {
192 while (rawContactIdCursor.moveToNext()) {
193 rawContactIds.add(rawContactIdCursor.getLong(0));
197 if (rawContactIdCursor != null) {
198 rawContactIdCursor.close();

Completed in 79 milliseconds