Home
last modified time | relevance | path

Searched refs:read_only_ (Results 1 – 10 of 10) sorted by relevance

/external/webrtc/webrtc/system_wrappers/source/
Dfile_impl.cc37 read_only_(false), in FileWrapperImpl()
56 if (looping_ || !read_only_) { in Rewind()
111 read_only_ = read_only; in OpenFile()
185 read_only_ = read_only; in OpenFromFileHandle()
208 if (read_only_) in WriteText()
232 if (read_only_) in Write()
Dfile_impl.h61 bool read_only_; variable
/external/libchrome/libchrome_tools/patch/
Dshared_memory_posix.patch49 - DCHECK(read_only_)
51 - if (!read_only_) {
62 + // DCHECK(read_only_)
64 + // if (!read_only_) {
73 memory_ = mmap(nullptr, bytes, PROT_READ | (read_only_ ? 0 : PROT_WRITE),
Dshared_memory_handle.patch13 void SetReadOnly() { read_only_ = true; }
/external/libchrome/base/memory/
Dshared_memory_handle.h152 void SetReadOnly() { read_only_ = true; } in SetReadOnly()
156 bool IsReadOnly() const { return read_only_; } in IsReadOnly()
225 bool read_only_ = false;
Dshared_memory_posix.cc47 : shm_(handle), read_only_(read_only) {} in SharedMemory()
229 read_only_ = read_only; in Open()
298 memory_ = mmap(nullptr, bytes, PROT_READ | (read_only_ ? 0 : PROT_WRITE), in MapAt()
Dshared_memory.h245 bool read_only_ = false; variable
/external/v8/src/compiler/
Dcompilation-dependencies.cc185 : cell_(cell), type_(type), read_only_(read_only) { in GlobalPropertyDependency()
187 DCHECK_EQ(read_only_, cell_.property_details().IsReadOnly()); in GlobalPropertyDependency()
193 read_only_ == cell->property_details().IsReadOnly(); in IsValid()
206 bool read_only_; member in v8::internal::compiler::GlobalPropertyDependency
/external/webrtc/webrtc/base/
Dstream.cc966 : str_(*str), read_pos_(0), read_only_(false) { in StringStream()
970 : str_(const_cast<std::string&>(str)), read_pos_(0), read_only_(true) { in StringStream()
991 if (read_only_) { in Write()
1033 if (read_only_) in ReserveSize()
Dstream.h621 bool read_only_; variable