Home | History | Annotate | Download | only in obex

Lines Matching refs:sendData

658         byte[] sendData = new byte[totalLength];
665 sendData[0] = (byte)code;
666 sendData[1] = length[2];
667 sendData[2] = length[3];
668 sendData[3] = (byte)0x10;
669 sendData[4] = (byte)0x00;
670 sendData[5] = (byte)(maxRxLength >> 8);
671 sendData[6] = (byte)(maxRxLength & 0xFF);
674 System.arraycopy(head, 0, sendData, 7, head.length);
677 mOutput.write(sendData);