Home | History | Annotate | Download | only in pbap

Lines Matching defs:composer

140         BluetoothPbapCallLogComposer composer = new BluetoothPbapCallLogComposer(mContext);
143 String vcard = composer.composeVCardForPhoneOwnNumber(Phone.TYPE_MOBILE, name, number,
479 VCardComposer composer = null;
495 composer = BluetoothPbapUtils.createFilteredVCardComposer(mContext, vcardType,null);
500 composer.setPhoneNumberTranslationCallback(
514 if (!composer.init(Contacts.CONTENT_URI, selection, null, Contacts._ID) ||
519 while (!composer.isAfterLast()) {
525 String vcard = composer.createOneEntry();
528 + composer.getErrorReason());
542 if (composer != null) {
543 composer.terminate();
550 BluetoothPbapCallLogComposer composer = null;
554 composer = new BluetoothPbapCallLogComposer(mContext);
556 if (!composer.init(CallLog.Calls.CONTENT_URI, selection, null,
562 while (!composer.isAfterLast()) {
568 String vcard = composer.createOneEntry(vcardType21);
571 + composer.getErrorReason());
582 if (composer != null) {
583 composer.terminate();