Home
last modified time | relevance | path

Searched refs:READ_ONLY (Results 1 – 25 of 57) sorted by relevance

123

/external/libchrome/base/files/
Dmemory_mapped_file.h31 READ_ONLY, enumerator
74 return Initialize(file_name, READ_ONLY); in Initialize()
84 return Initialize(std::move(file), READ_ONLY); in Initialize()
93 return Initialize(std::move(file), region, READ_ONLY); in Initialize()
Dmemory_mapped_file.cc40 case READ_ONLY: in Initialize()
85 case READ_ONLY: in Initialize()
Dmemory_mapped_file_posix.cc74 case READ_ONLY: in MapFileRegionToMemory()
/external/turbine/java/com/google/turbine/zip/
DZip.java166 MappedByteBuffer eocd = chan.map(MapMode.READ_ONLY, eocdOffset, ENDHDR); in ZipIterable()
173 eocd = chan.map(MapMode.READ_ONLY, start, (size - start)); in ZipIterable()
199 MappedByteBuffer zip64eocd = chan.map(MapMode.READ_ONLY, zip64eocdOffset, ZIP64_ENDHDR); in ZipIterable()
209 this.cd = chan.map(MapMode.READ_ONLY, eocdOffset - cdsize, cdsize); in ZipIterable()
289 MapMode.READ_ONLY, in getBytes()
300 fc = chan.map(MapMode.READ_ONLY, offset + LOCHDR + nameLength + locExtLength, size); in getBytes()
/external/v8/src/
Dproperty-details.h20 READ_ONLY = ::v8::ReadOnly, enumerator
24 ALL_ATTRIBUTES_MASK = READ_ONLY | DONT_ENUM | DONT_DELETE,
27 FROZEN = SEALED | READ_ONLY,
48 STATIC_ASSERT(ONLY_WRITABLE == static_cast<PropertyFilter>(READ_ONLY));
326 bool IsReadOnly() const { return (attributes() & READ_ONLY) != 0; } in IsReadOnly()
344 (READ_ONLY << AttributesField::kShift);
Dbootstrapper.cc592 static_cast<PropertyAttributes>(DONT_DELETE | DONT_ENUM | READ_ONLY)); in InstallConstant()
688 static_cast<PropertyAttributes>(DONT_ENUM | DONT_DELETE | READ_ONLY)) in GetThrowTypeErrorIntrinsic()
862 static_cast<PropertyAttributes>(DONT_ENUM | READ_ONLY)); in CreateIteratorMaps()
866 static_cast<PropertyAttributes>(DONT_ENUM | READ_ONLY)); in CreateIteratorMaps()
871 static_cast<PropertyAttributes>(DONT_ENUM | READ_ONLY)); in CreateIteratorMaps()
875 static_cast<PropertyAttributes>(DONT_ENUM | READ_ONLY)); in CreateIteratorMaps()
955 static_cast<PropertyAttributes>(DONT_ENUM | READ_ONLY)); in CreateAsyncIteratorMaps()
986 static_cast<PropertyAttributes>(DONT_ENUM | READ_ONLY)); in CreateAsyncIteratorMaps()
990 static_cast<PropertyAttributes>(DONT_ENUM | READ_ONLY)); in CreateAsyncIteratorMaps()
994 static_cast<PropertyAttributes>(DONT_ENUM | READ_ONLY)); in CreateAsyncIteratorMaps()
[all …]
Dcontexts.cc171 return mode == VariableMode::kConst ? READ_ONLY : NONE; in GetAttributesForMode()
323 *attributes = READ_ONLY; in Lookup()
351 : READ_ONLY; in Lookup()
Dproperty-descriptor.h113 (has_writable() && !writable() ? READ_ONLY : NONE)); in ToAttributes()
/external/tensorflow/tensorflow/core/debug/
Ddebug_grpc_io_utils_test.cc283 i == 0 ? EventReply::DebugOpStateChange::READ_ONLY in TEST_F()
373 EventReply::DebugOpStateChange::READ_ONLY); in TEST_F()
376 EventReply::DebugOpStateChange::READ_ONLY); in TEST_F()
405 EventReply::DebugOpStateChange::READ_ONLY); in TEST_F()
408 EventReply::DebugOpStateChange::READ_ONLY); in TEST_F()
433 EventReply::DebugOpStateChange::READ_ONLY); in TEST_F()
462 kGrpcUrl1, kWatch1, EventReply::DebugOpStateChange::READ_ONLY); in TEST_F()
/external/u-boot/lib/efi_loader/
Defi_variable.c12 #define READ_ONLY BIT(31) macro
145 attr |= READ_ONLY; in parse_attr()
286 if (attr & READ_ONLY) in efi_set_variable()
/external/v8/src/js/
Dprologue.js44 var attributes = DONT_ENUM | DONT_DELETE | READ_ONLY;
77 %AddNamedProperty(prototype, key, f, DONT_ENUM | DONT_DELETE | READ_ONLY);
Dmacros.py32 define READ_ONLY = 1;
/external/archive-patcher/generator/src/main/java/com/google/archivepatcher/generator/bsdiff/
DRandomAccessObject.java360 mapMode = FileChannel.MapMode.READ_ONLY; in RandomAccessMmapObject()
398 mapMode = FileChannel.MapMode.READ_ONLY; in RandomAccessMmapObject()
447 mapMode = FileChannel.MapMode.READ_ONLY; in RandomAccessMmapObject()
/external/e2fsprogs/debugfs/
Ddebugfs.c239 #ifdef READ_ONLY in do_open_filesys()
292 #ifndef READ_ONLY in do_open_filesys()
364 #ifndef READ_ONLY
521 #ifndef READ_ONLY
1115 #ifndef READ_ONLY
1209 #ifndef READ_ONLY
1268 #ifndef READ_ONLY
1469 #ifndef READ_ONLY
1745 #ifndef READ_ONLY
2008 #ifndef READ_ONLY
[all …]
/external/guava/guava-tests/test/com/google/common/io/
DPackageSanityTests.java36 setDefault(MapMode.class, MapMode.READ_ONLY); in PackageSanityTests()
/external/libchrome/mojo/public/cpp/system/
Dbuffer.h49 READ_ONLY, enumerator
Dbuffer.cc26 if (access_mode == AccessMode::READ_ONLY) in Clone()
/external/v8/src/objects/
Dliteral-objects.cc470 static_cast<PropertyAttributes>(DONT_ENUM | READ_ONLY); in BuildClassBoilerplate()
477 static_cast<PropertyAttributes>(DONT_ENUM | DONT_DELETE | READ_ONLY); in BuildClassBoilerplate()
483 static_cast<PropertyAttributes>(DONT_ENUM | DONT_DELETE | READ_ONLY); in BuildClassBoilerplate()
571 static_cast<PropertyAttributes>(DONT_ENUM | READ_ONLY); in BuildClassBoilerplate()
/external/brotli/java/org/brotli/dec/
DSetDictionaryTest.java67 ByteBuffer dictionary = dictionaryChannel.map(FileChannel.MapMode.READ_ONLY, 0, 122784).load(); in testSetDictionary()
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/
DChannelHelper.java33 …ByteBuffer bb = ((FileChannel) channel).map(FileChannel.MapMode.READ_ONLY, ((FileChannel) channel)… in readFully()
/external/tensorflow/tensorflow/python/debug/lib/
Dgrpc_debug_server.py209 debug_service_pb2.EventReply.DebugOpStateChange.READ_ONLY):
417 else debug_service_pb2.EventReply.DebugOpStateChange.READ_ONLY,
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
DFreeBox.java98 …data = ((FileChannel) readableByteChannel).map(FileChannel.MapMode.READ_ONLY, ((FileChannel) reada… in parse()
/external/tensorflow/tensorflow/lite/models/smartreply/demo/app/src/main/java/com/example/android/smartreply/
DSmartReplyClient.java98 return fileChannel.map(FileChannel.MapMode.READ_ONLY, startOffset, declaredLength); in loadModelFile()
/external/v8/src/runtime/
Druntime-scopes.cc86 DCHECK_EQ(attr & READ_ONLY, 0); in DeclareGlobal()
90 if (old_attributes & READ_ONLY || old_attributes & DONT_ENUM || in DeclareGlobal()
177 if (is_function && is_native) attr |= READ_ONLY; in DeclareGlobals()
908 if ((attributes & READ_ONLY) == 0) { in StoreLookupSlot()
924 if ((attributes & READ_ONLY) == 0) { in StoreLookupSlot()
/external/tensorflow/tensorflow/lite/java/ovic/src/main/java/org/tensorflow/ovic/
DOvicValidator.java101 return fileChannel.map(FileChannel.MapMode.READ_ONLY, startOffset, declaredLength); in loadModelFile()

123