Home | History | Annotate | Download | only in pbap

Lines Matching refs:composer

108         BluetoothPbapCallLogComposer composer = new BluetoothPbapCallLogComposer(mContext);
111 String vcard = composer.composeVCardForPhoneOwnNumber(Phone.TYPE_MOBILE, name, number,
436 VCardComposer composer = null;
448 composer = new VCardComposer(mContext, vcardType, true);
451 composer.setPhoneNumberTranslationCallback(
465 if (!composer.init(Contacts.CONTENT_URI, selection, null, Contacts._ID) ||
470 while (!composer.isAfterLast()) {
476 String vcard = composer.createOneEntry();
479 + composer.getErrorReason());
488 if (composer != null) {
489 composer.terminate();
496 BluetoothPbapCallLogComposer composer = null;
500 composer = new BluetoothPbapCallLogComposer(mContext);
502 if (!composer.init(CallLog.Calls.CONTENT_URI, selection, null,
508 while (!composer.isAfterLast()) {
514 String vcard = composer.createOneEntry(vcardType21);
517 + composer.getErrorReason());
523 if (composer != null) {
524 composer.terminate();