OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ReadOnlyException
(Results
1 - 10
of
10
) sorted by null
/tools/external/fat32lib/src/main/java/de/waldheinz/fs/
ReadOnlyException.java
31
public final class
ReadOnlyException
extends RuntimeException {
36
* Creates a new instance of {@code
ReadOnlyException
}.
39
public
ReadOnlyException
() {
AbstractFsObject.java
93
* @throws
ReadOnlyException
if this object was created with the read-only
98
throws IllegalStateException,
ReadOnlyException
{
103
throw new
ReadOnlyException
();
AbstractFileSystem.java
84
* @throws
ReadOnlyException
if this {@code FileSystem} is read-only
87
protected final void checkReadOnly() throws
ReadOnlyException
{
89
throw new
ReadOnlyException
();
BlockDevice.java
56
* @throws
ReadOnlyException
if this {@code BlockDevice} is read-only
63
throws
ReadOnlyException
, IOException,
FsFile.java
73
* @throws
ReadOnlyException
if the file is read-only
77
throws
ReadOnlyException
, IOException;
/tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
FatFile.java
24
import de.waldheinz.fs.
ReadOnlyException
;
81
* @throws
ReadOnlyException
if this file is read-only
85
public void setLength(long length) throws
ReadOnlyException
, IOException {
145
throws
ReadOnlyException
, IOException {
170
* Has no effect besides possibly throwing an {@code
ReadOnlyException
}. To
174
* @throws
ReadOnlyException
if this {@code FatFile} is read-only
177
public void flush() throws
ReadOnlyException
{
FatLfnDirectoryEntry.java
24
import de.waldheinz.fs.
ReadOnlyException
;
112
* @throws
ReadOnlyException
if this entry is read-only
115
public void setHiddenFlag(boolean hidden) throws
ReadOnlyException
{
136
* @throws
ReadOnlyException
if this entry is read-only
139
public void setSystemFlag(boolean systemEntry) throws
ReadOnlyException
{
163
* @throws
ReadOnlyException
if this entry is read-only as given by
167
public void setReadOnlyFlag(boolean readOnly) throws
ReadOnlyException
{
187
* @throws
ReadOnlyException
if this entry is
190
public void setArchiveFlag(boolean archive) throws
ReadOnlyException
{
264
* @throws
ReadOnlyException
if this directory is read-onl
[
all
...]
FatFileSystem.java
25
import de.waldheinz.fs.
ReadOnlyException
;
164
* @throws
ReadOnlyException
if the file system is read-only
168
throws
ReadOnlyException
, IOException {
/tools/external/fat32lib/src/main/java/de/waldheinz/fs/util/
FileDisk.java
22
import de.waldheinz.fs.
ReadOnlyException
;
129
if (this.readOnly) throw new
ReadOnlyException
();
/prebuilts/devtools/tools/lib/
fat32lib.jar
Completed in 2126 milliseconds