Ejemplo n.º 1
0
 private int position() {
   return mIndexBuffer.position();
 }
Ejemplo n.º 2
0
 /** Close this index and release any associated resources. */
 public void close() {
   mIndexBuffer.close();
 }
Ejemplo n.º 3
0
 private void seek(final int position) {
   mIndexBuffer.seek(position);
 }
Ejemplo n.º 4
0
 private void skipBytes(final int count) {
   mIndexBuffer.skipBytes(count);
 }
Ejemplo n.º 5
0
 private long readLong() {
   return mIndexBuffer.readLong();
 }
Ejemplo n.º 6
0
 private int readInteger() {
   return mIndexBuffer.readInteger();
 }
Ejemplo n.º 7
0
 private void readBytes(final byte[] bytes) {
   mIndexBuffer.readBytes(bytes);
 }