Home | History | Annotate | Download | only in hierarchyviewer

Lines Matching defs:mBuf

24     private final ByteBuffer mBuf;
31 mBuf = buf;
35 return mBuf.hasRemaining();
39 byte sig = mBuf.get();
43 return mBuf.get() == 0 ? Boolean.FALSE : Boolean.TRUE;
45 return mBuf.get();
47 return mBuf.getShort();
49 return mBuf.getInt();
51 return mBuf.getLong();
53 return mBuf.getFloat();
55 return mBuf.getDouble();
61 throw new DecoderException(sig, mBuf.position() - 1);
66 short len = mBuf.getShort();
68 mBuf.get(b, 0, len);