Lines Matching refs:switchCache
290 static auto *switchCache = new SwitchCache(TextToBool, true, PropType::PROP_PRIVATE); in IsPrivateSwitchOn() local
291 if (switchCache == nullptr) { in IsPrivateSwitchOn()
294 return switchCache->getValue(); in IsPrivateSwitchOn()
299 static auto *switchCache = new SwitchCache(TextToBool, false, PropType::PROP_ONCE_DEBUG); in IsOnceDebugOn() local
300 if (switchCache == nullptr) { in IsOnceDebugOn()
303 return switchCache->getValue(); in IsOnceDebugOn()
308 static auto *switchCache = new SwitchCache(TextToBool, false, PropType::PROP_PERSIST_DEBUG); in IsPersistDebugOn() local
309 if (switchCache == nullptr) { in IsPersistDebugOn()
312 return switchCache->getValue(); in IsPersistDebugOn()
395 static auto *switchCache = new SwitchCache(TextToBool, false, PropType::PROP_PROCESS_FLOWCTRL); in IsProcessSwitchOn() local
396 if (switchCache == nullptr) { in IsProcessSwitchOn()
399 return switchCache->getValue(); in IsProcessSwitchOn()
404 static auto *switchCache = new SwitchCache(TextToBool, false, PropType::PROP_DOMAIN_FLOWCTRL); in IsDomainSwitchOn() local
405 if (switchCache == nullptr) { in IsDomainSwitchOn()
408 return switchCache->getValue(); in IsDomainSwitchOn()