OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:userDataLength
(Results
1 - 2
of
2
) sorted by null
/packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapSmsPdu.java
316
int
userDataLength
= pdu.read();
337
mMsgSeptetCount =
userDataLength
- headerSeptets;
344
mMsgSeptetCount =
userDataLength
;
384
int
userDataLength
= data[gsmSubmitGetTpUdlOffset()];
385
userData = new byte[
userDataLength
];
386
System.arraycopy(userData, 0, data, gsmSubmitGetTpUdOffset(),
userDataLength
);
404
int
userDataLength
= 0;
423
userDataLength
= (mData[gsmSubmitGetTpUdlOffset()] & 0xff);
424
newPdu.write(
userDataLength
);
425
// Copy the pdu user data - keep in mind that the
userDataLength
is not the length in bytes for 7-bit encoding
[
all
...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
SmsMessage.java
626
int
userDataLength
= mPdu[offset++] & 0xff;
648
* the pdu minus the user data header, since
userDataLength
means
654
*
userDataLength
is the count of octets, so just subtract the
657
bufferLen =
userDataLength
- (hasUserDataHeader ? (userDataHeaderLength + 1) : 0);
669
int count =
userDataLength
- headerSeptets;
[
all
...]
Completed in 213 milliseconds