/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;
|
/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/ |
SQLTransactionSync.cpp | 41 PassRefPtr<SQLTransactionSync> SQLTransactionSync::create(DatabaseSync* db, PassOwnPtr<SQLTransactionSyncCallback> callback, bool readOnly) 43 return adoptRef(new SQLTransactionSync(db, callback, readOnly)); 46 SQLTransactionSync::SQLTransactionSync(DatabaseSync* db, PassOwnPtr<SQLTransactionSyncCallback> callback, bool readOnly) 47 : SQLTransactionBackendSync(db, callback, readOnly)
|
SQLTransactionSync.h | 43 static PassRefPtr<SQLTransactionSync> create(DatabaseSync*, PassOwnPtr<SQLTransactionSyncCallback>, bool readOnly = false); 48 SQLTransactionSync(DatabaseSync*, PassOwnPtr<SQLTransactionSyncCallback>, bool readOnly);
|
SQLTransaction.h | 57 bool readOnly); 71 bool readOnly);
|
DatabaseBackend.h | 56 PassRefPtr<SQLTransactionBackend> runTransaction(PassRefPtr<SQLTransaction>, bool readOnly, const ChangeVersionData*);
|
SQLTransactionBackendSync.h | 67 SQLTransactionBackendSync(DatabaseSync*, PassOwnPtr<SQLTransactionSyncCallback>, bool readOnly);
|
/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...] |
/libcore/luni/src/test/java/libcore/java/nio/channels/ |
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);
|
SocketChannelTest.java | 43 ByteBuffer readOnly = ByteBuffer.allocate(1).asReadOnlyBuffer(); 48 sc.read(readOnly); 53 sc.read(new ByteBuffer[] { readOnly }); 58 sc.read(new ByteBuffer[] { readOnly }, 0, 1);
|
/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/chromium_org/third_party/WebKit/Source/modules/webdatabase/sqlite/ |
SQLiteTransaction.h | 39 SQLiteTransaction(SQLiteDatabase& db, bool readOnly = false);
|
SQLiteTransaction.cpp | 33 SQLiteTransaction::SQLiteTransaction(SQLiteDatabase& db, bool readOnly) 36 , 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/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/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,
|
/libnativehelper/include/nativehelper/ |
ScopedBytes.h | 28 template<bool readOnly> 46 mEnv->ReleaseByteArrayElements(mByteArray, mPtr, readOnly ? JNI_ABORT : 0);
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
HitTestRequest.h | 31 ReadOnly = 1 << 1, 53 bool readOnly() const { return m_requestType & ReadOnly; }
|
/packages/apps/Contacts/src/com/android/contacts/editor/ |
Editor.java | 63 public void setValues(DataKind kind, ValuesDelta values, RawContactDelta state, boolean readOnly,
|
/system/core/include/utils/ |
FileMap.h | 60 off64_t offset, size_t length, bool readOnly);
|