OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:userDataHeaderLength
(Results
1 - 2
of
2
) sorted by null
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
SmsMessage.java
623
int
userDataHeaderLength
= 0;
626
userDataHeaderLength
= mPdu[offset++] & 0xff;
628
byte[] udh = new byte[
userDataHeaderLength
];
629
System.arraycopy(mPdu, offset, udh, 0,
userDataHeaderLength
);
631
offset +=
userDataHeaderLength
;
633
int headerBits = (
userDataHeaderLength
+ 1) * 8;
652
bufferLen = userDataLength - (hasUserDataHeader ? (
userDataHeaderLength
+ 1) : 0);
[
all
...]
/packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapSmsPdu.java
307
int
userDataHeaderLength
= pdu.read();
312
byte[] udh = new byte[
userDataHeaderLength
];
322
int headerBits = (
userDataHeaderLength
+ 1) * 8;
328
userDataMsgOffset = gsmSubmitGetTpUdOffset() +
userDataHeaderLength
+ 1; // Add the byte containing the length
Completed in 146 milliseconds