HomeSort by relevance Sort by last modified time
    Searched defs:lengthBytes (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/third_party/webrtc/modules/audio_coding/main/test/
RTPFile.cc 187 uint16_t lengthBytes = htons(12 + payloadSize + 8);
193 if (fwrite(&lengthBytes, 2, 1, _rtpFile) != 1) {
212 uint16_t lengthBytes;
215 size_t read_len = fread(&lengthBytes, 2, 1, _rtpFile);
223 lengthBytes = ntohs(lengthBytes);
232 EXPECT_EQ(lengthBytes, plen + 8);
237 if (lengthBytes < 20) {
240 if (payloadSize < (lengthBytes - 20)) {
243 lengthBytes -= 20
    [all...]
  /frameworks/base/location/java/com/android/internal/location/
GpsNetInitiatedHandler.java 467 int lengthBytes = input.length;
468 int lengthSeptets = (lengthBytes * 8) / 7;
475 if (lengthBytes % 7 == 0) {
476 if (lengthBytes > 0) {
477 if ((input[lengthBytes - 1] >> 1) == PADDING_CHAR) {
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
SmsMessage.java 560 int lengthBytes = 2 + (addressLength + 1) / 2;
563 ret = new GsmSmsAddress(mPdu, mCur, lengthBytes);
570 mCur += lengthBytes;
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
UiccCarrierPrivilegeRules.java 152 private String lengthBytes;
166 lengthBytes = data.substring(offset, offset + 2);
170 lengthBytes = data.substring(offset, offset + 2 + numBytes * 2);
172 Rlog.d(LOG_TAG, "TLV parseLength length=" + length + "lenghtBytes: " + lengthBytes);
173 return lengthBytes;
187 index += lengthBytes.length();
428 String lengthBytes = allRules.parseLength(mRules);
429 Rlog.d(LOG_TAG, "isDataComplete lengthBytes: " + lengthBytes);
430 if (mRules.length() == TAG_ALL_REF_AR_DO.length() + lengthBytes.length()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
SerializedScriptValue.cpp     [all...]

Completed in 991 milliseconds