Lines Matching defs:position
106 abstract <A> Future<FileLock> implLock(long position,
113 public final Future<FileLock> lock(long position,
118 return implLock(position, size, shared, null, null);
122 public final <A> void lock(long position,
130 implLock(position, size, shared, attachment, handler);
162 protected final FileLockImpl addToFileLockTable(long position, long size, boolean shared) {
176 fli = new FileLockImpl(this, position, size, shared);
212 long position,
217 public final Future<Integer> read(ByteBuffer dst, long position) {
218 return implRead(dst, position, null, null);
223 long position,
229 implRead(dst, position, attachment, handler);
233 long position,
239 public final Future<Integer> write(ByteBuffer src, long position) {
240 return implWrite(src, position, null, null);
245 long position,
251 implWrite(src, position, attachment, handler);