reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
44 bool IsReadable() const { return protection & kProtectionRead; } 45 bool IsWritable() const { return protection & kProtectionWrite; } 46 bool IsExecutable() const { return protection & kProtectionExecute; } 47 bool IsShared() const { return protection & kProtectionShared; }projects/compiler-rt/lib/sanitizer_common/sanitizer_procmaps_linux.cpp
46 segment->protection = 0; 47 if (*data_.current++ == 'r') segment->protection |= kProtectionRead; 49 if (*data_.current++ == 'w') segment->protection |= kProtectionWrite; 51 if (*data_.current++ == 'x') segment->protection |= kProtectionExecute; 53 if (*data_.current++ == 's') segment->protection |= kProtectionShared;projects/compiler-rt/lib/tsan/rtl/tsan_platform_posix.cpp
134 if (segment.protection == 0) // Zero page or mprotected.