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

  /packages/experimental/LoaderApp/src/com/android/loaderapp/util/
ContactsUtils.java 274 Cursor contactIdCursor = null;
277 contactIdCursor = cr.query(RawContacts.CONTENT_URI,
280 if (contactIdCursor != null && contactIdCursor.moveToFirst()) {
281 contactId = contactIdCursor.getLong(0);
284 if (contactIdCursor != null) {
285 contactIdCursor.close();
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
BluetoothPbapVcardManager.java 414 Cursor contactIdCursor = new MatrixCursor(new String[] {
421 contactIdCursor = ContactCursorFilter.filterByRange(contactCursor, startPoint,
431 return composeContactsAndSendVCards(op, contactIdCursor, vcardType21, ownerVCard,
445 Cursor contactIdCursor = new MatrixCursor(new String[] {
451 contactIdCursor = ContactCursorFilter.filterByOffset(contactCursor, offset);
461 return composeContactsAndSendVCards(op, contactIdCursor, vcardType21, ownerVCard,
527 public final int composeContactsAndSendVCards(Operation op, final Cursor contactIdCursor,
570 Log.v(TAG, "contactIdCursor size: " + contactIdCursor.getCount());
571 if (!composer.initWithCallback(contactIdCursor,
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/activities/
ConfirmAddDetailActivity.java 416 Cursor contactIdCursor = null;
419 contactIdCursor = resolver.query(RawContacts.CONTENT_URI,
423 if (contactIdCursor != null && contactIdCursor.moveToFirst()) {
424 contactId = contactIdCursor.getLong(0);
427 if (contactIdCursor != null) {
428 contactIdCursor.close();
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
ContactsDatabaseHelper.java     [all...]

Completed in 159 milliseconds