| org.apache.harmony.luni.platform.IFileSystem
All known Subclasses: org.apache.harmony.luni.platform.OSFileSystem,
Method Summary | |
public void | close(long fileDescriptor) | public void | fflush(long fileDescriptor, boolean metadata) | public int | getAllocGranularity() Returns the granularity for virtual memory allocation. | public boolean | lock(long fileDescriptor, long start, long length, int type, boolean waitFlag) | public long | open(byte[] fileName, int mode) | public long | read(long fileDescriptor, byte[] bytes, int offset, int length) | public long | readDirect(long fileDescriptor, long address, int offset, int length) | public long | readv(long fileDescriptor, long[] addresses, int[] offsets, int[] lengths, int size) | public long | seek(long fileDescriptor, long offset, int whence) | public long | transfer(long fileHandler, FileDescriptor socketDescriptor, long offset, long count) | public void | truncate(long fileDescriptor, long size) | public long | ttyAvailable() | public long | ttyRead(byte[] bytes, int offset, int length) | public void | unlock(long fileDescriptor, long start, long length) | public long | write(long fileDescriptor, byte[] bytes, int offset, int length) | public long | writeDirect(long fileDescriptor, long address, int offset, int length) | public long | writev(long fileDescriptor, long[] addresses, int[] offsets, int[] lengths, int size) |
EXCLUSIVE_LOCK_TYPE | final public int EXCLUSIVE_LOCK_TYPE(Code) | | |
O_APPEND | final public int O_APPEND(Code) | | |
O_CREAT | final public int O_CREAT(Code) | | |
O_EXCL | final public int O_EXCL(Code) | | |
O_NOCTTY | final public int O_NOCTTY(Code) | | |
O_NONBLOCK | final public int O_NONBLOCK(Code) | | |
O_RDONLY | final public int O_RDONLY(Code) | | |
O_RDWR | final public int O_RDWR(Code) | | |
O_RDWRSYNC | final public int O_RDWRSYNC(Code) | | |
O_TRUNC | final public int O_TRUNC(Code) | | |
O_WRONLY | final public int O_WRONLY(Code) | | |
SEEK_CUR | final public int SEEK_CUR(Code) | | |
SEEK_END | final public int SEEK_END(Code) | | |
SEEK_SET | final public int SEEK_SET(Code) | | |
SHARED_LOCK_TYPE | final public int SHARED_LOCK_TYPE(Code) | | |
fflush | public void fflush(long fileDescriptor, boolean metadata) throws IOException(Code) | | |
getAllocGranularity | public int getAllocGranularity() throws IOException(Code) | | Returns the granularity for virtual memory allocation.
|
lock | public boolean lock(long fileDescriptor, long start, long length, int type, boolean waitFlag) throws IOException(Code) | | |
read | public long read(long fileDescriptor, byte[] bytes, int offset, int length) throws IOException(Code) | | |
readDirect | public long readDirect(long fileDescriptor, long address, int offset, int length) throws IOException(Code) | | |
readv | public long readv(long fileDescriptor, long[] addresses, int[] offsets, int[] lengths, int size) throws IOException(Code) | | |
seek | public long seek(long fileDescriptor, long offset, int whence) throws IOException(Code) | | |
transfer | public long transfer(long fileHandler, FileDescriptor socketDescriptor, long offset, long count) throws IOException(Code) | | |
truncate | public void truncate(long fileDescriptor, long size) throws IOException(Code) | | |
ttyRead | public long ttyRead(byte[] bytes, int offset, int length) throws IOException(Code) | | |
unlock | public void unlock(long fileDescriptor, long start, long length) throws IOException(Code) | | |
write | public long write(long fileDescriptor, byte[] bytes, int offset, int length) throws IOException(Code) | | |
writeDirect | public long writeDirect(long fileDescriptor, long address, int offset, int length) throws IOException(Code) | | |
writev | public long writev(long fileDescriptor, long[] addresses, int[] offsets, int[] lengths, int size) throws IOException(Code) | | |
|
|