Searched refs:m_securityEnabled (Results 1 – 2 of 2) sorted by relevance
45 : m_securityEnabled(false) in DatabaseAuthorizer()342 return m_securityEnabled ? SQLAuthDeny : SQLAuthAllow; in allowTransaction()347 if (m_permissions & NoAccessMask && m_securityEnabled) in allowRead()365 return m_securityEnabled ? SQLAuthDeny : SQLAuthAllow; in allowPragma()370 return m_securityEnabled ? SQLAuthDeny : SQLAuthAllow; in allowAttach()375 return m_securityEnabled ? SQLAuthDeny : SQLAuthAllow; in allowDetach()380 if (m_securityEnabled && !m_whitelistedFunctions.contains(functionName)) in allowFunction()388 m_securityEnabled = false; in disable()393 m_securityEnabled = true; in enable()398 return !(m_securityEnabled && (m_permissions & ReadOnlyMask || m_permissions & NoAccessMask)); in allowWrite()[all …]
114 bool m_securityEnabled : 1; variable