HomeSort by relevance Sort by last modified time
    Searched refs:readOnly (Results 1 - 25 of 148) sorted by null

1 2 3 4 5 6

  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/
AbstractFsObject.java 34 private final boolean readOnly;
45 * @param readOnly if the new object will be read-only
47 protected AbstractFsObject(boolean readOnly) {
49 this.readOnly = readOnly;
109 return this.readOnly;
AbstractFileSystem.java 31 private final boolean readOnly;
37 * @param readOnly if the file system should be read-only
39 public AbstractFileSystem(boolean readOnly) {
41 this.readOnly = readOnly;
62 return readOnly;
FileSystemFactory.java 42 * @param readOnly if the file system should be openend read-only
48 public static FileSystem create(BlockDevice device, boolean readOnly)
51 return FatFileSystem.read(device, readOnly);
  /frameworks/base/core/java/android/database/sqlite/
SQLiteStatementInfo.java 38 public boolean readOnly;
  /libcore/luni/src/test/java/libcore/java/nio/channels/
SocketChannelTest.java 25 ByteBuffer readOnly = ByteBuffer.allocate(1).asReadOnlyBuffer();
30 sc.read(readOnly);
35 sc.read(new ByteBuffer[] { readOnly });
40 sc.read(new ByteBuffer[] { readOnly }, 0, 1);
DatagramChannelTest.java 25 ByteBuffer readOnly = ByteBuffer.allocate(1).asReadOnlyBuffer();
30 dc.read(readOnly);
35 dc.read(new ByteBuffer[] { readOnly });
40 dc.read(new ByteBuffer[] { readOnly }, 0, 1);
FileChannelTest.java 28 ByteBuffer readOnly = ByteBuffer.allocate(1).asReadOnlyBuffer();
34 fc.read(readOnly);
39 fc.read(new ByteBuffer[] { readOnly });
44 fc.read(new ByteBuffer[] { readOnly }, 0, 1);
49 fc.read(readOnly, 0L);
58 fc.write(readOnly);
59 fc.write(new ByteBuffer[] { readOnly });
60 fc.write(new ByteBuffer[] { readOnly }, 0, 1);
61 fc.write(readOnly, 0L);
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/util/
FileDisk.java 44 private final boolean readOnly;
52 * @param readOnly if the file should be opened in read-only mode, which
57 public FileDisk(File file, boolean readOnly) throws FileNotFoundException {
60 this.readOnly = readOnly;
62 final String modeString = readOnly ? "r" : "rw"; //NOI18N
67 public FileDisk(RandomAccessFile raf, FileChannel fc, boolean readOnly) {
71 this.readOnly = readOnly;
74 private FileDisk(RandomAccessFile raf, boolean readOnly) {
    [all...]
  /external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
MyPermissionCollection.java 29 public MyPermissionCollection(boolean readOnly) {
30 if (readOnly) {
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_2/version120/
regress-99663.js 56 var READONLY = /read\s*-?\s*only/;
104 actual = readOnly(e.message);
118 actual = readOnly(e.message);
132 actual = readOnly(e.message);
146 function readOnly(msg)
148 if (msg.match(READONLY))
  /external/webkit/Source/WebCore/platform/sql/
SQLiteTransaction.h 39 SQLiteTransaction(SQLiteDatabase& db, bool readOnly = false);
SQLiteTransaction.cpp 35 SQLiteTransaction::SQLiteTransaction(SQLiteDatabase& db, bool readOnly)
38 , m_readOnly(readOnly)
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
Fat16RootDirectory.java 34 private Fat16RootDirectory(Fat16BootSector bs, boolean readOnly) {
35 super(bs.getRootDirEntryCount(), readOnly, true);
49 * @param readOnly if the directory shold be created read-only
54 Fat16BootSector bs, boolean readOnly) throws IOException {
56 final Fat16RootDirectory result = new Fat16RootDirectory(bs, readOnly);
FatFileSystem.java 50 FatFileSystem(BlockDevice api, boolean readOnly) throws IOException {
52 this(api, readOnly, false);
56 * Constructor for FatFileSystem in specified readOnly mode
59 * @param readOnly if this FS should be read-lonly
63 private FatFileSystem(BlockDevice device, boolean readOnly,
67 super(readOnly);
101 Fat16RootDirectory.read((Fat16BootSector) bs,readOnly);
115 * @param readOnly if the {@code FatFileSystem} should be in read-only mode
120 public static FatFileSystem read(BlockDevice device, boolean readOnly)
123 return new FatFileSystem(device, readOnly);
    [all...]
  /external/webkit/Source/WebCore/storage/
SQLTransactionSync.h 53 static PassRefPtr<SQLTransactionSync> create(DatabaseSync*, PassRefPtr<SQLTransactionSyncCallback>, bool readOnly = false);
68 SQLTransactionSync(DatabaseSync*, PassRefPtr<SQLTransactionSyncCallback>, bool readOnly);
DatabaseSync.h 68 void runTransaction(PassRefPtr<SQLTransactionSyncCallback>, bool readOnly, ExceptionCode&);
SQLTransactionSync.cpp 52 PassRefPtr<SQLTransactionSync> SQLTransactionSync::create(DatabaseSync* db, PassRefPtr<SQLTransactionSyncCallback> callback, bool readOnly)
54 return adoptRef(new SQLTransactionSync(db, callback, readOnly));
57 SQLTransactionSync::SQLTransactionSync(DatabaseSync* db, PassRefPtr<SQLTransactionSyncCallback> callback, bool readOnly)
60 , m_readOnly(readOnly)
  /external/webkit/Source/WebCore/rendering/
HitTestRequest.h 30 ReadOnly = 1 << 1,
45 bool readOnly() const { return m_requestType & ReadOnly; }
  /external/webrtc/src/system_wrappers/interface/
file_wrapper.h 35 // Opens a file in read or write mode, decided by the readOnly parameter.
37 bool readOnly,
73 // called with |loop| == true or |readOnly| == true.
  /external/webkit/LayoutTests/storage/
read-and-write-transactions-dont-run-together.js 20 function runTransaction(db, readOnly)
22 var transactionFunction = (readOnly ? db.readTransaction : db.transaction);
24 if (readOnly) {
39 log((readOnly ? "Read" : "Write") + " transaction failed: " + error.message);
43 if (readOnly)
  /external/webrtc/src/system_wrappers/source/
file_impl.cc 117 int FileWrapperImpl::OpenFile(const char *fileNameUTF8, bool readOnly,
126 _readOnly = readOnly;
141 if(readOnly)
148 if(readOnly)
158 if(readOnly)
165 if(readOnly)
file_impl.h 32 bool readOnly,
  /external/webkit/Source/JavaScriptCore/runtime/
SymbolTable.h 59 pack(index, attributes & ReadOnly, attributes & DontEnum);
76 attributes |= ReadOnly;
84 pack(getIndex(), attributes & ReadOnly, attributes & DontEnum);
98 void pack(int index, bool readOnly, bool dontEnum)
101 if (readOnly)
  /libcore/include/
ScopedBytes.h 28 template<bool readOnly>
46 mEnv->ReleaseByteArrayElements(mByteArray, mPtr, readOnly ? JNI_ABORT : 0);
  /external/webkit/Source/WebKit/chromium/src/
WebFormControlElement.cpp 48 return constUnwrap<HTMLFormControlElement>()->readOnly();

Completed in 311 milliseconds

1 2 3 4 5 6