Home
last modified time | relevance | path

Searched refs:bodyLen (Results 1 – 2 of 2) sorted by relevance

/aosp12/system/bt/embdrv/sbc/decoder/srce/
H A Ddecoder-sbc.c200 OI_UINT bodyLen; in internal_DecodeRaw() local
212 bodyLen = OI_CODEC_SBC_CalculateFramelen(&context->common.frameInfo) - in internal_DecodeRaw()
214 if (*frameBytes < bodyLen) { in internal_DecodeRaw()
219 bodyLen = 0; in internal_DecodeRaw()
227 *frameData += bodyLen; in internal_DecodeRaw()
228 *frameBytes -= bodyLen; in internal_DecodeRaw()
/aosp12/packages/apps/Bluetooth/src/com/android/bluetooth/mapclient/obex/
H A DBmessageBuilder.java71 int bodyLen = MSG_BEGIN.length() + MSG_END.length() + 3 * CRLF.length() in build() local
107 mBmsg.append(BBODY_LENGTH).append(bodyLen).append(CRLF); in build()