Home | History | Annotate | Download | only in pbap

Lines Matching defs:composer

141         BluetoothPbapCallLogComposer composer = new BluetoothPbapCallLogComposer(mContext);
144 String vcard = composer.composeVCardForPhoneOwnNumber(Phone.TYPE_MOBILE, name, number,
478 VCardComposer composer = null;
494 composer = BluetoothPbapUtils.createFilteredVCardComposer(mContext, vcardType,null);
499 composer.setPhoneNumberTranslationCallback(
513 if (!composer.init(Contacts.CONTENT_URI, selection, null, Contacts._ID) ||
518 while (!composer.isAfterLast()) {
524 String vcard = composer.createOneEntry();
527 + composer.getErrorReason());
541 if (composer != null) {
542 composer.terminate();
549 BluetoothPbapCallLogComposer composer = null;
553 composer = new BluetoothPbapCallLogComposer(mContext);
555 if (!composer.init(CallLog.Calls.CONTENT_URI, selection, null,
561 while (!composer.isAfterLast()) {
567 String vcard = composer.createOneEntry(vcardType21);
570 + composer.getErrorReason());
581 if (composer != null) {
582 composer.terminate();