Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/compiler-rt/lib/lsan/
H A Dlsan_common_mac.cpp30 enum class SeenRegion { enum
38 inline SeenRegion operator|(SeenRegion left, SeenRegion right) { in operator |()
39 return static_cast<SeenRegion>(static_cast<int>(left) | in operator |()
43 inline SeenRegion &operator|=(SeenRegion &left, const SeenRegion &right) { in operator |=()
49 SeenRegion seen_regions = SeenRegion::None;
184 scan_state.seen_regions |= SeenRegion::AllocOnce; in ProcessPlatformSpecificAllocations()
189 scan_state.seen_regions |= SeenRegion::Foundation; in ProcessPlatformSpecificAllocations()
201 scan_state.seen_regions |= SeenRegion::LibDispatch; in ProcessPlatformSpecificAllocations()
207 if (scan_state.seen_regions == SeenRegion::All && !use_root_regions) { in ProcessPlatformSpecificAllocations()