Home | History | Annotate | Download | only in obex

Lines Matching refs:length

28     private ObexPacket(int headerId, int length) {
30 mLength = length;
52 // Read the 2 byte length field from the stream
53 int length = is.read();
54 length = (length << 8) + is.read();
56 ObexPacket newPacket = new ObexPacket(headerId, length);
60 if (length > 3) {
62 temp = new byte[length - 3];
64 while (bytesReceived != temp.length) {
65 bytesReceived += is.read(temp, bytesReceived, temp.length - bytesReceived);