Home | History | Annotate | Download | only in obex

Lines Matching defs:bodyLength

444         int bodyLength = -1;
447 bodyLength = mPrivateOutput.size();
503 if (bodyLength > 0) {
517 if (bodyLength > 0) {
523 if (bodyLength > (mMaxPacketSize - headerArray.length - 6)) {
526 bodyLength = mMaxPacketSize - headerArray.length - 6;
529 byte[] body = mPrivateOutput.readBytes(bodyLength);
544 bodyLength += 3;
545 out.write((byte)(bodyLength >> 8));
546 out.write((byte)bodyLength);
553 if (mPrivateOutputOpen && bodyLength <= 0 && !mEndOfBodySent) {
562 bodyLength = 3;
563 out.write((byte)(bodyLength >> 8));
564 out.write((byte)bodyLength);