Home
last modified time | relevance | path

Searched refs:userDataLength (Results 1 – 4 of 4) sorted by relevance

/aosp12/packages/modules/ExtServices/java/src/android/ext/services/autofill/
H A DCreditCardMatcher.java84 final int userDataLength = userDataValue.length(); in calculateScore() local
91 if (actualValueLength != suffixLength || userDataLength < minCreditCardLength in calculateScore()
92 || userDataLength > maxCreditCardLength || userDataLength < actualValueLength) { in calculateScore()
96 userDataLength - suffixLength); in calculateScore()
H A DEditDistanceScorer.java43 final int userDataLength = userDataValue.length(); in calculateScore() local
44 if (userDataLength == 0) { in calculateScore()
50 final int maxLength = Math.max(actualValueLength, userDataLength); in calculateScore()
/aosp12/packages/apps/Bluetooth/src/com/android/bluetooth/map/
H A DBluetoothMapSmsPdu.java342 int userDataLength = pdu.read(); in gsmDecodeUserDataHeader() local
363 mMsgSeptetCount = userDataLength - headerSeptets; in gsmDecodeUserDataHeader()
369 mMsgSeptetCount = userDataLength; in gsmDecodeUserDataHeader()
435 int userDataLength = 0; in gsmChangeToDeliverPdu() local
458 userDataLength = (mData[gsmSubmitGetTpUdlOffset()] & 0xff); in gsmChangeToDeliverPdu()
459 newPdu.write(userDataLength); in gsmChangeToDeliverPdu()
/aosp12/frameworks/base/telephony/java/com/android/internal/telephony/gsm/
H A DSmsMessage.java916 int userDataLength = mPdu[offset++] & 0xff; in constructUserData() local
947 bufferLen = userDataLength - (hasUserDataHeader ? (userDataHeaderLength + 1) : 0); in constructUserData()
959 int count = userDataLength - headerSeptets; in constructUserData()