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

1 2 3 4 5 6 7 8

  /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;
  /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) {
  /device/google/contexthub/contexthubhal/
message_buf.h 44 bool readOnly;
50 readOnly = false;
56 readOnly = true;
69 if (pos == size || readOnly)
83 if (pos > (size - sizeof(uint16_t)) || readOnly) {
100 if (pos > (size - sizeof(uint32_t)) || readOnly) {
117 if (pos > (size - sizeof(uint64_t)) || readOnly) {
133 if (pos > (size - bufSize) || readOnly) {
  /external/autotest/frontend/client/src/autotest/afe/
ITextArea.java 8 public void setReadOnly(boolean 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...]
AbstractDirectory.java 44 private final boolean readOnly;
55 * @param readOnly if the instance should be read-only
60 int capacity, boolean readOnly, boolean isRoot) {
64 this.readOnly = readOnly;
164 return readOnly;
  /external/icu/android_icu4j/src/main/java/android/icu/text/
RuleBasedCollator.java 353 return tailoring.settings.readOnly();
451 if(settings.readOnly() == defaultSettings) { return; }
467 if(settings.readOnly() == defaultSettings) { return; }
483 if(settings.readOnly() == defaultSettings) { return; }
499 if(settings.readOnly() == defaultSettings) { return; }
515 if(settings.readOnly() == defaultSettings) { return; }
531 if(settings.readOnly() == defaultSettings) { return; }
546 if(settings.readOnly() == defaultSettings) { return; }
662 if(flag == settings.readOnly().getFlag(CollationSettings.CHECK_FCD)) { return; }
717 int oldValue = settings.readOnly().getMaxVariable()
    [all...]
CollationElementIterator.java 493 boolean numeric = rbc_.settings.readOnly().isNumeric();
494 if (rbc_.settings.readOnly().dontCheckFCD()) {
530 boolean numeric = rbc_.settings.readOnly().isNumeric();
531 if (rbc_.settings.readOnly().dontCheckFCD()) {
557 boolean numeric = rbc_.settings.readOnly().isNumeric();
558 if (rbc_.settings.readOnly().dontCheckFCD()) {
576 int s = rbc_.settings.readOnly().getStrength();
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/text/
RuleBasedCollator.java 362 return tailoring.settings.readOnly();
461 if(settings.readOnly() == defaultSettings) { return; }
478 if(settings.readOnly() == defaultSettings) { return; }
495 if(settings.readOnly() == defaultSettings) { return; }
512 if(settings.readOnly() == defaultSettings) { return; }
529 if(settings.readOnly() == defaultSettings) { return; }
546 if(settings.readOnly() == defaultSettings) { return; }
562 if(settings.readOnly() == defaultSettings) { return; }
682 if(flag == settings.readOnly().getFlag(CollationSettings.CHECK_FCD)) { return; }
739 int oldValue = settings.readOnly().getMaxVariable()
    [all...]
CollationElementIterator.java 508 boolean numeric = rbc_.settings.readOnly().isNumeric();
509 if (rbc_.settings.readOnly().dontCheckFCD()) {
546 boolean numeric = rbc_.settings.readOnly().isNumeric();
547 if (rbc_.settings.readOnly().dontCheckFCD()) {
574 boolean numeric = rbc_.settings.readOnly().isNumeric();
575 if (rbc_.settings.readOnly().dontCheckFCD()) {
593 int s = rbc_.settings.readOnly().getStrength();
  /libcore/luni/src/test/java/libcore/java/nio/channels/
FileChannelTest.java 31 ByteBuffer readOnly = ByteBuffer.allocate(1).asReadOnlyBuffer();
37 fc.read(readOnly);
42 fc.read(new ByteBuffer[] { readOnly });
47 fc.read(new ByteBuffer[] { readOnly }, 0, 1);
52 fc.read(readOnly, 0L);
61 fc.write(readOnly);
62 fc.write(new ByteBuffer[] { readOnly });
63 fc.write(new ByteBuffer[] { readOnly }, 0, 1);
64 fc.write(readOnly, 0L);
  /libnativehelper/include/nativehelper/
ScopedBytes.h 28 template<bool readOnly>
46 mEnv->ReleaseByteArrayElements(mByteArray, mPtr, readOnly ? JNI_ABORT : 0);
  /external/dng_sdk/source/
dng_xmp.cpp     [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
CollationTailoring.java 37 assert(baseSettings.readOnly().reorderCodes.length == 0);
38 assert(baseSettings.readOnly().reorderTable == null);
39 assert(baseSettings.readOnly().minHighNoReorder == 0);
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
CollationTailoring.java 35 assert(baseSettings.readOnly().reorderCodes.length == 0);
36 assert(baseSettings.readOnly().reorderTable == null);
37 assert(baseSettings.readOnly().minHighNoReorder == 0);
  /packages/apps/Contacts/src/com/android/contacts/editor/
Editor.java 67 public void setValues(DataKind kind, ValuesDelta values, RawContactDelta state, boolean readOnly,
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/X11/extensions/
XShm.h 56 Bool readOnly; /* how the server should attach it */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/X11/extensions/
XShm.h 54 Bool readOnly; /* how the server should attach it */
  /system/core/include/utils/
FileMap.h 67 off64_t offset, size_t length, bool readOnly);
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
Frame.java 181 final void setReadOnly(boolean readOnly) {
182 mReadOnly = readOnly;

Completed in 1605 milliseconds

1 2 3 4 5 6 7 8