| 924 | CHUNK_INVALID; |
| 925 | } |
| 926 | bool AsanChunkView::IsAllocated() const { |
| 927 | return chunk_ && atomic_load(&chunk_->chunk_state, memory_order_relaxed) == |
| 928 | CHUNK_ALLOCATED; |
| 929 | } |
| 930 | bool AsanChunkView::IsQuarantined() const { |
| 931 | return chunk_ && atomic_load(&chunk_->chunk_state, memory_order_relaxed) == |
| 932 | CHUNK_QUARANTINE; |
no test coverage detected