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
305
int
userDataLength
= pdu.read();
326
msgSeptetCount =
userDataLength
- headerSeptets;
333
msgSeptetCount =
userDataLength
;
373
int
userDataLength
= data[gsmSubmitGetTpUdlOffset()];
374
userData = new byte[
userDataLength
];
375
System.arraycopy(userData, 0, data, gsmSubmitGetTpUdOffset(),
userDataLength
);
393
int
userDataLength
= 0;
412
userDataLength
= (data[gsmSubmitGetTpUdlOffset()] & 0xff);
413
newPdu.write(
userDataLength
);
414
// 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
621
int
userDataLength
= mPdu[offset++] & 0xff;
643
* the pdu minus the user data header, since
userDataLength
means
649
*
userDataLength
is the count of octets, so just subtract the
652
bufferLen =
userDataLength
- (hasUserDataHeader ? (userDataHeaderLength + 1) : 0);
664
int count =
userDataLength
- headerSeptets;
[
all
...]
Completed in 150 milliseconds