Searched defs:readable (Results 1 - 2 of 2) sorted by relevance

/libcore/ojluni/src/main/java/java/io/
H A DFile.java1465 * @param readable
1479 * <code>readable</code> is <code>false</code> and the underlying
1490 public boolean setReadable(boolean readable, boolean ownerOnly) { argument
1498 return fs.setPermission(this, FileSystem.ACCESS_READ, readable, ownerOnly);
1511 * @param readable
1518 * <code>readable</code> is <code>false</code> and the underlying
1529 public boolean setReadable(boolean readable) { argument
1530 return setReadable(readable, true);
/libcore/ojluni/src/main/java/sun/nio/ch/
H A DFileChannelImpl.java64 private final boolean readable; field in class:FileChannelImpl
79 private FileChannelImpl(FileDescriptor fd, String path, boolean readable, argument
83 this.readable = readable;
93 boolean readable, boolean writable,
96 return new FileChannelImpl(fd, path, readable, writable, false, parent);
101 boolean readable, boolean writable,
104 return new FileChannelImpl(fd, path, readable, writable, append, parent);
146 if (!readable)
176 if (!readable)
92 open(FileDescriptor fd, String path, boolean readable, boolean writable, Object parent) argument
100 open(FileDescriptor fd, String path, boolean readable, boolean writable, boolean append, Object parent) argument
[all...]

Completed in 92 milliseconds