Home | History | Annotate | Download | only in storage

Lines Matching refs:String

52     static PassRefPtr<DatabaseAuthorizer> create(const String& databaseInfoTableName);
54 int createTable(const String& tableName);
55 int createTempTable(const String& tableName);
56 int dropTable(const String& tableName);
57 int dropTempTable(const String& tableName);
58 int allowAlterTable(const String& databaseName, const String& tableName);
60 int createIndex(const String& indexName, const String& tableName);
61 int createTempIndex(const String& indexName, const String& tableName);
62 int dropIndex(const String& indexName, const String& tableName);
63 int dropTempIndex(const String& indexName, const String& tableName);
65 int createTrigger(const String& triggerName, const String& tableName);
66 int createTempTrigger(const String& triggerName, const String& tableName);
67 int dropTrigger(const String& triggerName, const String& tableName);
68 int dropTempTrigger(const String& triggerName, const String& tableName);
70 int createView(const String& viewName);
71 int createTempView(const String& viewName);
72 int dropView(const String& viewName);
73 int dropTempView(const String& viewName);
75 int createVTable(const String& tableName, const String& moduleName);
76 int dropVTable(const String& tableName, const String& moduleName);
78 int allowDelete(const String& tableName);
79 int allowInsert(const String& tableName);
80 int allowUpdate(const String& tableName, const String& columnName);
84 int allowRead(const String& tableName, const String& columnName);
86 int allowReindex(const String& indexName);
87 int allowAnalyze(const String& tableName);
88 int allowFunction(const String& functionName);
89 int allowPragma(const String& pragmaName, const String& firstArgument);
91 int allowAttach(const String& filename);
92 int allowDetach(const String& databaseName);
107 DatabaseAuthorizer(const String& databaseInfoTableName);
109 int denyBasedOnTableName(const String&) const;
110 int updateDeletesBasedOnTableName(const String&);
119 const String m_databaseInfoTableName;
121 HashSet<String, CaseFoldingHash> m_whitelistedFunctions;