Home | History | Annotate | Download | only in obex

Lines Matching defs:bodyLength

400         int bodyLength = -1;
403 bodyLength = mPrivateOutput.size();
453 if (bodyLength > 0) {
462 if (bodyLength > 0) {
468 if (bodyLength > (mMaxPacketSize - headerArray.length - 6)) {
471 bodyLength = mMaxPacketSize - headerArray.length - 6;
474 byte[] body = mPrivateOutput.readBytes(bodyLength);
489 bodyLength += 3;
490 out.write((byte)(bodyLength >> 8));
491 out.write((byte)bodyLength);
498 if (mPrivateOutputOpen && bodyLength <= 0 && !mEndOfBodySent) {
508 bodyLength = 3;
509 out.write((byte)(bodyLength >> 8));
510 out.write((byte)bodyLength);