• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/persist/impl/

Lines Matching defs:input

67     public Object readObject(Object o, EntityInput input, boolean rawAccess) {
80 Object newPrimitiveArray(int len, EntityInput input) {
92 void readPrimitiveField(Object o, EntityInput input, Field field)
106 void skipPrimitiveArray(int len, RecordInput input) {
107 input.skipFast(len * getPrimitiveLength());
111 RecordInput input,
116 (input.getBufferBytes(), input.getBufferOffset(), primLen);
118 input.skipFast(primLen);
136 public Object newInstance(EntityInput input, boolean rawAccess) {
137 return Boolean.valueOf(input.readBoolean());
146 void skipContents(RecordInput input) {
147 input.skipFast(1);
151 void copySecKey(RecordInput input, RecordOutput output) {
152 output.writeFast(input.readFast());
156 Object newPrimitiveArray(int len, EntityInput input) {
159 a[i] = input.readBoolean();
180 void readPrimitiveField(Object o, EntityInput input, Field field)
183 field.setBoolean(o, input.readBoolean());
208 public Object newInstance(EntityInput input, boolean rawAccess) {
209 return Byte.valueOf(input.readByte());
218 void skipContents(RecordInput input) {
219 input.skipFast(1);
223 void copySecKey(RecordInput input, RecordOutput output) {
224 output.writeFast(input.readFast());
228 Object newPrimitiveArray(int len, EntityInput input) {
231 a[i] = input.readByte();
252 void readPrimitiveField(Object o, EntityInput input, Field field)
255 field.setByte(o, input.readByte());
285 public Object newInstance(EntityInput input, boolean rawAccess) {
286 return Short.valueOf(input.readShort());
295 void skipContents(RecordInput input) {
296 input.skipFast(2);
300 void copySecKey(RecordInput input, RecordOutput output) {
301 output.writeFast(input.readFast());
302 output.writeFast(input.readFast());
306 Object newPrimitiveArray(int len, EntityInput input) {
309 a[i] = input.readShort();
330 void readPrimitiveField(Object o, EntityInput input, Field field)
333 field.setShort(o, input.readShort());
363 public Object newInstance(EntityInput input, boolean rawAccess) {
364 return Integer.valueOf(input.readInt());
373 void skipContents(RecordInput input) {
374 input.skipFast(4);
378 void copySecKey(RecordInput input, RecordOutput output) {
379 output.writeFast(input.readFast());
380 output.writeFast(input.readFast());
381 output.writeFast(input.readFast());
382 output.writeFast(input.readFast());
386 Object newPrimitiveArray(int len, EntityInput input) {
389 a[i] = input.readInt();
410 void readPrimitiveField(Object o, EntityInput input, Field field)
413 field.setInt(o, input.readInt());
443 public Object newInstance(EntityInput input, boolean rawAccess) {
444 return Long.valueOf(input.readLong());
453 void skipContents(RecordInput input) {
454 input.skipFast(8);
458 void copySecKey(RecordInput input, RecordOutput output) {
460 (input.getBufferBytes(), input.getBufferOffset(), 8);
461 input.skipFast(8);
465 Object newPrimitiveArray(int len, EntityInput input) {
468 a[i] = input.readLong();
489 void readPrimitiveField(Object o, EntityInput input, Field field)
492 field.setLong(o, input.readLong());
522 public Object newInstance(EntityInput input, boolean rawAccess) {
523 return Float.valueOf(input.readSortedFloat());
532 void skipContents(RecordInput input) {
533 input.skipFast(4);
537 void copySecKey(RecordInput input, RecordOutput output) {
538 output.writeFast(input.readFast());
539 output.writeFast(input.readFast());
540 output.writeFast(input.readFast());
541 output.writeFast(input.readFast());
545 Object newPrimitiveArray(int len, EntityInput input) {
548 a[i] = input.readSortedFloat();
569 void readPrimitiveField(Object o, EntityInput input, Field field)
572 field.setFloat(o, input.readSortedFloat());
597 public Object newInstance(EntityInput input, boolean rawAccess) {
598 return Double.valueOf(input.readSortedDouble());
607 void skipContents(RecordInput input) {
608 input.skipFast(8);
612 void copySecKey(RecordInput input, RecordOutput output) {
614 (input.getBufferBytes(), input.getBufferOffset(), 8);
615 input.skipFast(8);
619 Object newPrimitiveArray(int len, EntityInput input) {
622 a[i] = input.readSortedDouble();
643 void readPrimitiveField(Object o, EntityInput input, Field field)
646 field.setDouble(o, input.readSortedDouble());
671 public Object newInstance(EntityInput input, boolean rawAccess) {
672 return Character.valueOf(input.readChar());
681 void skipContents(RecordInput input) {
682 input.skipFast(2);
686 void copySecKey(RecordInput input, RecordOutput output) {
687 output.writeFast(input.readFast());
688 output.writeFast(input.readFast());
692 Object newPrimitiveArray(int len, EntityInput input) {
695 a[i] = input.readChar();
716 void readPrimitiveField(Object o, EntityInput input, Field field)
719 field.setChar(o, input.readChar());
744 public Object newInstance(EntityInput input, boolean rawAccess) {
745 return input.readString();
754 void skipContents(RecordInput input) {
755 input.skipFast(input.getStringByteLength());
759 void copySecKey(RecordInput input, RecordOutput output) {
760 int len = input.getStringByteLength();
762 (input.getBufferBytes(), input.getBufferOffset(), len);
763 input.skipFast(len);
781 public Object newInstance(EntityInput input, boolean rawAccess) {
782 return input.readBigInteger();
791 void skipContents(RecordInput input) {
792 input.skipFast(input.getBigIntegerByteLength());
796 void copySecKey(RecordInput input, RecordOutput output) {
797 int len = input.getBigIntegerByteLength();
799 (input.getBufferBytes(), input.getBufferOffset(), len);
800 input.skipFast(len);
818 public Object newInstance(EntityInput input, boolean rawAccess) {
819 return new Date(input.readLong());
828 void skipContents(RecordInput input) {
829 input.skipFast(8);
833 void copySecKey(RecordInput input, RecordOutput output) {
835 (input.getBufferBytes(), input.getBufferOffset(), 8);
836 input.skipFast(8);