Home | History | Annotate | Download | only in nio

Lines Matching defs:mapped

53         File f = File.createTempFile("mapped", "tmp");
76 // Read from mapped /dev/zero, and overwrite this array.
911 MappedByteBuffer mapped = (MappedByteBuffer) allocateMapped(1);
912 mapped.force();
913 mapped.isLoaded();
914 mapped.load();
919 MappedByteBuffer mapped = (MappedByteBuffer) allocateMapped(1);
920 mapped.get();
921 mapped.rewind();
922 mapped.get();
924 mapped.rewind();
925 mapped.mark();
926 mapped.get();
927 mapped.reset();
928 mapped.get();
930 mapped.rewind();
931 mapped.get();
932 mapped.clear();
933 mapped.get();
935 mapped.rewind();
936 mapped.get();
937 mapped.flip();
938 mapped.get();