Home
last modified time | relevance | path

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

/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/Bluetooth/src/com/android/bluetooth/pbap/
DBluetoothPbapUtils.java109 final int vcardType, final byte[] filter) { in createFilteredVCardComposer() argument
110 int vType = vcardType; in createFilteredVCardComposer()
155 …public static final String createProfileVCard(Context ctx, final int vcardType,final byte[] filter… in createProfileVCard() argument
159 composer = createFilteredVCardComposer(ctx, vcardType, filter); in createProfileVCard()
DBluetoothPbapVcardManager.java115 int vcardType; in getOwnerPhoneNumberVcardFromProfile() local
117 vcardType = VCardConfig.VCARD_TYPE_V21_GENERIC; in getOwnerPhoneNumberVcardFromProfile()
119 vcardType = VCardConfig.VCARD_TYPE_V30_GENERIC; in getOwnerPhoneNumberVcardFromProfile()
123 vcardType |= VCardConfig.FLAG_REFRAIN_IMAGE_EXPORT; in getOwnerPhoneNumberVcardFromProfile()
126 return BluetoothPbapUtils.createProfileVCard(mContext, vcardType,filter); in getOwnerPhoneNumberVcardFromProfile()
540 int vcardType; in composeContactsAndSendVCards() local
542 vcardType = VCardConfig.VCARD_TYPE_V21_GENERIC; in composeContactsAndSendVCards()
544 vcardType = VCardConfig.VCARD_TYPE_V30_GENERIC; in composeContactsAndSendVCards()
547 vcardType |= VCardConfig.FLAG_REFRAIN_IMAGE_EXPORT; in composeContactsAndSendVCards()
552 composer = BluetoothPbapUtils.createFilteredVCardComposer(mContext, vcardType, null); in composeContactsAndSendVCards()
DBluetoothPbapCallLogComposer.java137 final int vcardType = (vcardVer21 ? VCardConfig.VCARD_TYPE_V21_GENERIC : in createOneCallLogEntryInternal() local
140 final VCardBuilder builder = new VCardBuilder(vcardType); in createOneCallLogEntryInternal()
174 final int vcardType = (vcardVer21 ? in composeVCardForPhoneOwnNumber() local
178 final VCardBuilder builder = new VCardBuilder(vcardType); in composeVCardForPhoneOwnNumber()
/packages/apps/ContactsCommon/src/com/android/contacts/common/vcard/
DExportProcessor.java139 final int vcardType; in runInternal() local
141 vcardType = VCardConfig.getVCardTypeFromString( in runInternal()
144 vcardType = VCardConfig.getVCardTypeFromString(exportType); in runInternal()
147 composer = new VCardComposer(mService, vcardType, true); in runInternal()
DImportProcessor.java215 private boolean readOneVCard(InputStream is, int vcardType, String charset, in readOneVCard() argument
234 new VCardParser_V30(vcardType) : in readOneVCard()
235 new VCardParser_V21(vcardType)); in readOneVCard()