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

1 2 3 4 5 6 7

  /frameworks/base/core/java/android/database/sqlite/
SQLiteStatementInfo.java 38 public boolean readOnly;
  /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 */
shmproto.h 78 BOOL readOnly;
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/
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;
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;
  /libcore/ojluni/src/main/java/javax/security/auth/
Subject.java 128 private volatile boolean readOnly = false;
183 * @param readOnly true if the {@code Subject} is to be read-only,
199 public Subject(boolean readOnly, Set<? extends Principal> principals,
215 this.readOnly = readOnly;
244 this.readOnly = true;
255 return this.readOnly;
    [all...]
  /prebuilts/go/darwin-x86/src/sync/
map.go 39 read atomic.Value // readOnly
62 // readOnly is an immutable struct stored atomically in the Map.read field.
63 type readOnly struct {
103 read, _ := m.read.Load().(readOnly)
110 read, _ = m.read.Load().(readOnly)
137 read, _ := m.read.Load().(readOnly)
143 read, _ = m.read.Load().(readOnly)
158 m.read.Store(readOnly{m: read.m, amended: true})
205 read, _ := m.read.Load().(readOnly)
214 read, _ = m.read.Load().(readOnly)
    [all...]
  /prebuilts/go/linux-x86/src/sync/
map.go 39 read atomic.Value // readOnly
62 // readOnly is an immutable struct stored atomically in the Map.read field.
63 type readOnly struct {
103 read, _ := m.read.Load().(readOnly)
110 read, _ = m.read.Load().(readOnly)
137 read, _ := m.read.Load().(readOnly)
143 read, _ = m.read.Load().(readOnly)
158 m.read.Store(readOnly{m: read.m, amended: true})
205 read, _ := m.read.Load().(readOnly)
214 read, _ = m.read.Load().(readOnly)
    [all...]
  /device/google/contexthub/contexthubhal/
message_buf.h 44 bool readOnly;
50 readOnly = false;
56 readOnly = true;
70 if (pos == size || readOnly)
84 if (pos > (size - sizeof(uint16_t)) || readOnly) {
101 if (pos > (size - sizeof(uint32_t)) || readOnly) {
118 if (pos > (size - sizeof(uint64_t)) || readOnly) {
134 if (pos > (size - bufSize) || readOnly) {
  /external/skia/src/gpu/gl/
GrGLBuffer.cpp 169 bool readOnly = (kXferGpuToCpu_GrBufferType == fIntendedType);
181 GL_CALL_RET(fMapPtr, MapBuffer(target, readOnly ? GR_GL_READ_ONLY : GR_GL_WRITE_ONLY));
196 readOnly ? GR_GL_MAP_READ_BIT : writeAccess));
206 readOnly ? GR_GL_READ_ONLY : GR_GL_WRITE_ONLY));
  /external/skqp/src/gpu/gl/
GrGLBuffer.cpp 169 bool readOnly = (kXferGpuToCpu_GrBufferType == fIntendedType);
181 GL_CALL_RET(fMapPtr, MapBuffer(target, readOnly ? GR_GL_READ_ONLY : GR_GL_WRITE_ONLY));
196 readOnly ? GR_GL_MAP_READ_BIT : writeAccess));
206 readOnly ? GR_GL_READ_ONLY : GR_GL_WRITE_ONLY));
  /packages/apps/Contacts/src/com/android/contacts/group/
GroupMetaData.java 53 public final boolean readOnly;
78 this.readOnly = getBoolean(cursor, GroupMetaDataLoader.IS_READ_ONLY);
95 readOnly = source.readInt() == 1;
109 dest.writeInt(readOnly ? 1 : 0);
136 .add("readOnly", readOnly)
  /external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
SharedObject.java 40 * // For read-only access, use s.readOnly().
127 public T readOnly() { return ref; }
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
SharedObject.java 39 * // For read-only access, use s.readOnly().
125 public T readOnly() { return ref; }
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/glslang/glslang/MachineIndependent/
SymbolTable.cpp 264 void TSymbolTableLevel::readOnly()
271 // Copy a symbol, but the copy is writable; call readOnly() afterward if that's not desired.
  /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);
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;
  /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/
FileChannelTest.java 51 ByteBuffer readOnly = ByteBuffer.allocate(1).asReadOnlyBuffer();
57 fc.read(readOnly);
62 fc.read(new ByteBuffer[] { readOnly });
67 fc.read(new ByteBuffer[] { readOnly }, 0, 1);
72 fc.read(readOnly, 0L);
81 fc.write(readOnly);
82 fc.write(new ByteBuffer[] { readOnly });
83 fc.write(new ByteBuffer[] { readOnly }, 0, 1);
84 fc.write(readOnly, 0L);
DatagramChannelTest.java 48 ByteBuffer readOnly = ByteBuffer.allocate(1).asReadOnlyBuffer();
53 dc.read(readOnly);
58 dc.read(new ByteBuffer[] { readOnly });
63 dc.read(new ByteBuffer[] { readOnly }, 0, 1);
SocketChannelTest.java 53 ByteBuffer readOnly = ByteBuffer.allocate(1).asReadOnlyBuffer();
56 sc.read(readOnly);
61 sc.read(new ByteBuffer[] { readOnly });
66 sc.read(new ByteBuffer[] { readOnly }, 0, 1);
  /prebuilts/devtools/tools/lib/
fat32lib.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/fat32lib/unspecified/
fat32lib-unspecified.jar 
  /packages/experimental/LoaderApp/src/com/android/loaderapp/model/
ContactsSource.java 64 public boolean readOnly;
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
FormatterTest.java 150 private File readOnly;
246 f = new Formatter(readOnly.getPath());
291 f = new Formatter(readOnly.getPath(), "UTF-16BE");
344 f = new Formatter(readOnly.getPath(), Charset.defaultCharset()
375 f = new Formatter(readOnly);
406 f = new Formatter(readOnly, Charset.defaultCharset().name());
483 f = new Formatter(readOnly.getPath(), Charset.defaultCharset()
    [all...]

Completed in 463 milliseconds

1 2 3 4 5 6 7