Home
last modified time | relevance | path

Searched refs:vcardType (Results 1 – 7 of 7) sorted by relevance

/packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
DBluetoothPbapVcardManager.java120 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()
313 int vcardType; in getSelectedPhonebookNameList() local
316 vcardType = VCardConfig.VCARD_TYPE_V21_GENERIC; in getSelectedPhonebookNameList()
318 vcardType = VCardConfig.VCARD_TYPE_V30_GENERIC; in getSelectedPhonebookNameList()
321 composer = BluetoothPbapUtils.createFilteredVCardComposer(mContext, vcardType, null); in getSelectedPhonebookNameList()
722 int vcardType; in composeContactsAndSendVCards() local
[all …]
DBluetoothPbapCallLogComposer.java143 final int vcardType = (vcardVer21 ? VCardConfig.VCARD_TYPE_V21_GENERIC in createOneCallLogEntryInternal() local
146 final VCardBuilder builder = new VCardBuilder(vcardType); in createOneCallLogEntryInternal()
180 final int vcardType = (vcardVer21 ? VCardConfig.VCARD_TYPE_V21_GENERIC in composeVCardForPhoneOwnNumber() local
183 final VCardBuilder builder = new VCardBuilder(vcardType); in composeVCardForPhoneOwnNumber()
DBluetoothPbapUtils.java113 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/
DVCardRequest.java155 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()
DCustomVCardEntryConstructor.java73 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/
DExportProcessor.java137 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()
DImportProcessor.java216 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()