Searched refs:vcardType (Results 1 – 7 of 7) sorted by relevance
/packages/apps/Bluetooth/src/com/android/bluetooth/pbap/ |
D | BluetoothPbapVcardManager.java | 120 int vcardType; in getOwnerPhoneNumberVcardFromProfile() local 122 vcardType = VCardConfig.VCARD_TYPE_V21_GENERIC; in getOwnerPhoneNumberVcardFromProfile() 124 vcardType = VCardConfig.VCARD_TYPE_V30_GENERIC; in getOwnerPhoneNumberVcardFromProfile() 128 vcardType |= VCardConfig.FLAG_REFRAIN_IMAGE_EXPORT; in getOwnerPhoneNumberVcardFromProfile() 131 return BluetoothPbapUtils.createProfileVCard(mContext, vcardType, filter); in getOwnerPhoneNumberVcardFromProfile() 298 int vcardType; in getSelectedPhonebookNameList() local 301 vcardType = VCardConfig.VCARD_TYPE_V21_GENERIC; in getSelectedPhonebookNameList() 303 vcardType = VCardConfig.VCARD_TYPE_V30_GENERIC; in getSelectedPhonebookNameList() 306 composer = BluetoothPbapUtils.createFilteredVCardComposer(mContext, vcardType, null); in getSelectedPhonebookNameList() 701 int vcardType; in composeContactsAndSendVCards() local [all …]
|
D | BluetoothPbapCallLogComposer.java | 140 final int vcardType = (vcardVer21 ? VCardConfig.VCARD_TYPE_V21_GENERIC in createOneCallLogEntryInternal() local 143 final VCardBuilder builder = new VCardBuilder(vcardType); in createOneCallLogEntryInternal() 177 final int vcardType = (vcardVer21 ? VCardConfig.VCARD_TYPE_V21_GENERIC in composeVCardForPhoneOwnNumber() local 180 final VCardBuilder builder = new VCardBuilder(vcardType); in composeVCardForPhoneOwnNumber()
|
D | BluetoothPbapUtils.java | 113 static VCardComposer createFilteredVCardComposer(final Context ctx, final int vcardType, in createFilteredVCardComposer() argument 115 int vType = vcardType; in createFilteredVCardComposer() 141 static String createProfileVCard(Context ctx, final int vcardType, final byte[] filter) { in createProfileVCard() argument 145 composer = createFilteredVCardComposer(ctx, vcardType, filter); in createProfileVCard()
|
/packages/apps/Messaging/src/com/android/messaging/datamodel/media/ |
D | VCardRequest.java | 155 int vcardType = detector.getEstimatedType(); in doActuallyReadOneVCard() local 156 if (vcardType == VCardConfig.VCARD_TYPE_UNKNOWN) { in doActuallyReadOneVCard() 157 vcardType = VCardConfig.getVCardTypeFromString(DEFAULT_VCARD_TYPE); in doActuallyReadOneVCard() 160 new CustomVCardEntryConstructor(vcardType, null); in doActuallyReadOneVCard() 164 if (!readOneVCardFile(uri, vcardType, builder, false, null)) { in doActuallyReadOneVCard() 175 private boolean readOneVCardFile(final Uri uri, final int vcardType, in readOneVCardFile() argument 185 vCardParser = new VCardParser_V21(vcardType); in readOneVCardFile() 204 vCardParser = new VCardParser_V30(vcardType); in readOneVCardFile()
|
D | CustomVCardEntryConstructor.java | 73 public CustomVCardEntryConstructor(final int vcardType) { in CustomVCardEntryConstructor() argument 74 this(vcardType, null); in CustomVCardEntryConstructor() 77 public CustomVCardEntryConstructor(final int vcardType, final Account account) { in CustomVCardEntryConstructor() argument 78 mVCardType = vcardType; in CustomVCardEntryConstructor()
|
/packages/apps/Contacts/src/com/android/contacts/vcard/ |
D | ExportProcessor.java | 137 final int vcardType; in runInternal() local 139 vcardType = VCardConfig.getVCardTypeFromString( in runInternal() 142 vcardType = VCardConfig.getVCardTypeFromString(exportType); in runInternal() 145 composer = new VCardComposer(mService, vcardType, true); in runInternal()
|
D | ImportProcessor.java | 216 private boolean readOneVCard(InputStream is, int vcardType, String charset, in readOneVCard() argument 235 new VCardParser_V30(vcardType) : in readOneVCard() 236 new VCardParser_V21(vcardType)); in readOneVCard()
|