Home
last modified time | relevance | path

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

/external/webkit/WebCore/storage/
DDatabaseAuthorizer.cpp242 return (m_readOnly && m_securityEnabled ? SQLAuthDeny : SQLAuthAllow); in createView()
250 return (m_readOnly && m_securityEnabled ? SQLAuthDeny : SQLAuthAllow); in createTempView()
255 return (m_readOnly && m_securityEnabled ? SQLAuthDeny : SQLAuthAllow); in dropView()
263 return (m_readOnly && m_securityEnabled ? SQLAuthDeny : SQLAuthAllow); in dropTempView()
272 return m_securityEnabled ? SQLAuthDeny : SQLAuthAllow; in createVTable()
280 return m_securityEnabled ? SQLAuthDeny : SQLAuthAllow; in dropVTable()
312 return m_securityEnabled ? SQLAuthDeny : SQLAuthAllow; in allowTransaction()
322 return (m_readOnly && m_securityEnabled ? SQLAuthDeny : SQLAuthAllow); in allowReindex()
332 return m_securityEnabled ? SQLAuthDeny : SQLAuthAllow; in allowPragma()
337 return m_securityEnabled ? SQLAuthDeny : SQLAuthAllow; in allowAttach()
[all …]
DDatabaseAuthorizer.h40 extern const int SQLAuthAllow;
77 int allowSelect() { return SQLAuthAllow; } in allowSelect()
/external/webkit/WebCore/platform/sql/
DSQLiteAuthorizer.cpp35 const int SQLAuthAllow = SQLITE_OK; variable