/libcore/ojluni/src/main/java/java/nio/channels/ |
D | FileLock.java | 126 private final long position; field in FileLock 152 long position, long size, boolean shared) in FileLock() 195 long position, long size, boolean shared) in FileLock() 248 public final long position() { in position() method in FileLock 286 public final boolean overlaps(long position, long size) { in overlaps()
|
D | FileChannel.java | 443 public abstract long position() throws IOException; in position() method in FileChannel 471 public abstract FileChannel position(long newPosition) throws IOException; in position() method in FileChannel 629 public abstract long transferTo(long position, long count, in transferTo() 697 long position, long count) in transferFrom() 743 public abstract int read(ByteBuffer dst, long position) throws IOException; in read() 788 public abstract int write(ByteBuffer src, long position) throws IOException; in write() 926 long position, long size) in map() 1021 public abstract FileLock lock(long position, long size, boolean shared) in lock() 1132 public abstract FileLock tryLock(long position, long size, boolean shared) in tryLock()
|
D | AsynchronousFileChannel.java | 467 public abstract <A> void lock(long position, in lock() 542 public abstract Future<FileLock> lock(long position, long size, boolean shared); in lock() 616 public abstract FileLock tryLock(long position, long size, boolean shared) in tryLock() 687 long position, in read() 721 public abstract Future<Integer> read(ByteBuffer dst, long position); in read() 753 long position, in write() 788 public abstract Future<Integer> write(ByteBuffer src, long position); in write()
|
D | SeekableByteChannel.java | 94 long position() throws IOException; in position() method 125 SeekableByteChannel position(long newPosition) throws IOException; in position() method
|
/libcore/ojluni/annotations/hiddenapi/sun/nio/ch/ |
D | FileChannelImpl.java | 92 public long position() throws java.io.IOException { in position() method in FileChannelImpl 96 public java.nio.channels.FileChannel position(long newPosition) throws java.io.IOException { in position() method in FileChannelImpl 113 long position, in transferToDirectlyInternal() 122 long position, int icount, java.nio.channels.WritableByteChannel target) in transferToDirectly() 128 long position, long count, java.nio.channels.WritableByteChannel target) in transferToTrustedChannel() 134 long position, int icount, java.nio.channels.WritableByteChannel target) in transferToArbitraryChannel() 139 public long transferTo(long position, long count, java.nio.channels.WritableByteChannel target) in transferTo() 144 private long transferFromFileChannel(sun.nio.ch.FileChannelImpl src, long position, long count) in transferFromFileChannel() 150 java.nio.channels.ReadableByteChannel src, long position, long count) in transferFromArbitraryChannel() 155 public long transferFrom(java.nio.channels.ReadableByteChannel src, long position, long count) in transferFrom() [all …]
|
/libcore/ojluni/src/main/java/sun/nio/ch/ |
D | AsynchronousFileChannelImpl.java | 106 abstract <A> Future<FileLock> implLock(long position, in implLock() 113 public final Future<FileLock> lock(long position, in lock() 122 public final <A> void lock(long position, in lock() 162 protected final FileLockImpl addToFileLockTable(long position, long size, boolean shared) { in addToFileLockTable() 212 long position, in implRead() 217 public final Future<Integer> read(ByteBuffer dst, long position) { in read() 223 long position, in read() 233 long position, in implWrite() 239 public final Future<Integer> write(ByteBuffer src, long position) { in write() 245 long position, in write()
|
D | FileChannelImpl.java | 287 public long position() throws IOException { in position() method in FileChannelImpl 318 public FileChannel position(long newPosition) throws IOException { in position() method in FileChannelImpl 459 private long transferToDirectlyInternal(long position, int icount, in transferToDirectlyInternal() 498 private long transferToDirectly(long position, int icount, in transferToDirectly() 549 private long transferToTrustedChannel(long position, long count, in transferToTrustedChannel() 597 private long transferToArbitraryChannel(long position, int icount, in transferToArbitraryChannel() 633 public long transferTo(long position, long count, in transferTo() 669 long position, long count) in transferFromFileChannel() 708 long position, long count) in transferFromArbitraryChannel() 744 long position, long count) in transferFrom() [all …]
|
D | FileLockImpl.java | 36 FileLockImpl(FileChannel channel, long position, long size, boolean shared) in FileLockImpl() 41 FileLockImpl(AsynchronousFileChannel channel, long position, long size, boolean shared) in FileLockImpl()
|
D | SimpleAsynchronousFileChannelImpl.java | 173 <A> Future<FileLock> implLock(final long position, in implLock() 243 public FileLock tryLock(long position, long size, boolean shared) in tryLock() 289 final long position, in implRead() 345 final long position, in implWrite()
|
D | NativeDispatcher.java | 49 int pread(FileDescriptor fd, long address, int len, long position) in pread() 61 int pwrite(FileDescriptor fd, long address, int len, long position) in pwrite()
|
D | FileDispatcherImpl.java | 52 int pread(FileDescriptor fd, long address, int len, long position) in pread() 72 int pwrite(FileDescriptor fd, long address, int len, long position) in pwrite() 148 long position) throws IOException; in pread0() 157 long position) throws IOException; in pwrite0()
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/channels/ |
D | FileLockTest.java | 45 protected MockFileLock(FileChannel channel, long position, long size, in MockFileLock() 131 final long position = ((long) Integer.MAX_VALUE + 1); in test_position() local 144 final long position = 0x0FFFFFFFFFFFFFFFL; in test_size() local
|
/libcore/ojluni/src/main/java/java/nio/ |
D | Buffer.java | 206 int position = 0; field in Buffer 383 if (position > newLimit) position = newLimit; local
|
/libcore/ojluni/annotations/hiddenapi/sun/security/x509/ |
D | NetscapeCertTypeExtension.java | 61 private boolean isSet(int position) { in isSet() 65 private void set(int position, boolean val) { in set() 141 MapEntry(java.lang.String name, int position) { in MapEntry()
|
D | KeyUsageExtension.java | 60 private boolean isSet(int position) { in isSet() 64 private void set(int position, boolean val) { in set()
|
/libcore/ojluni/src/main/java/java/sql/ |
D | Blob.java | 130 long position(byte pattern[], long start) throws SQLException; in position() method 149 long position(Blob pattern, long start) throws SQLException; in position() method
|
D | Clob.java | 145 long position(String searchstr, long start) throws SQLException; in position() method 164 long position(Clob searchstr, long start) throws SQLException; in position() method
|
/libcore/ojluni/annotations/hiddenapi/java/nio/ |
D | Buffer.java | 42 public final int position() { in position() method in Buffer 46 public final java.nio.Buffer position(int newPosition) { in position() method in Buffer 161 int position = 0; // 0x0 field in Buffer
|
/libcore/ojluni/src/main/java/sun/security/x509/ |
D | NetscapeCertTypeExtension.java | 93 MapEntry(String name, int position) { in MapEntry() 138 private boolean isSet(int position) { in isSet() 146 private void set(int position, boolean val) { in set()
|
/libcore/ojluni/src/test/java/io/ByteArrayInputStream/ |
D | ReadAllReadNTransferTo.java | 51 int position = random.nextInt(SIZE/2); in testRead() local
|
/libcore/ojluni/src/test/java/io/InputStream/ |
D | Skip.java | 218 public long position() { return readctr; } in position() method in MyInputStream 220 public void position(long pos) { in position() method in MyInputStream
|
/libcore/luni/src/test/resources/nwf/ |
D | staff.dtd | 3 <!ELEMENT position (#PCDATA)> element
|
/libcore/luni/src/test/resources/wf/ |
D | staff.dtd | 3 <!ELEMENT position (#PCDATA)> element
|
/libcore/dom/src/test/resources/ |
D | staff.dtd | 3 <!ELEMENT position (#PCDATA)> element
|
/libcore/luni/src/test/resources/systemid/ |
D | staff.dtd | 3 <!ELEMENT position (#PCDATA)> element
|