OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:setlasterrormessage
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
DatabaseSync.cpp
81
setLastErrorMessage
("unable to changeVersion from within a transaction");
96
setLastErrorMessage
("unable to read the current version", sqliteDatabase().lastError(), sqliteDatabase().lastErrorMsg());
103
setLastErrorMessage
("current version of the database and `oldVersion` argument do not match");
117
setLastErrorMessage
("unable to set the new version", sqliteDatabase().lastError(), sqliteDatabase().lastErrorMsg());
132
setLastErrorMessage
("");
149
setLastErrorMessage
("");
158
setLastErrorMessage
("unable to start a transaction from within a transaction");
182
setLastErrorMessage
("");
SQLStatementSync.cpp
66
db->
setLastErrorMessage
("could not prepare statement", result, database->lastErrorMsg());
75
db->
setLastErrorMessage
("number of '?'s in statement string does not match argument count");
83
db->
setLastErrorMessage
("there was not enough remaining storage space");
89
db->
setLastErrorMessage
("could not bind value", result, database->lastErrorMsg());
114
db->
setLastErrorMessage
("could not iterate results", result, database->lastErrorMsg());
124
db->
setLastErrorMessage
("there was not enough remaining storage space");
128
db->
setLastErrorMessage
("statement failed due to a constraint failure");
132
db->
setLastErrorMessage
("could not execute statement", result, database->lastErrorMsg());
DatabaseSync.h
65
void
setLastErrorMessage
(const String& message) { m_lastErrorMessage = message; }
66
void
setLastErrorMessage
(const char* message, int sqliteCode)
68
setLastErrorMessage
(String::format("%s (%d)", message, sqliteCode));
70
void
setLastErrorMessage
(const char* message, int sqliteCode, const char* sqliteMessage)
72
setLastErrorMessage
(String::format("%s (%d, %s)", message, sqliteCode, sqliteMessage));
SQLTransactionBackendSync.cpp
76
m_database->
setLastErrorMessage
("");
79
m_database->
setLastErrorMessage
("cannot executeSQL because the database is not open");
85
m_database->
setLastErrorMessage
("cannot executeSQL because there is a version mismatch");
116
m_database->
setLastErrorMessage
("there was not enough remaining storage space");
134
m_database->
setLastErrorMessage
("cannot begin transaction because the database is not open");
157
m_database->
setLastErrorMessage
("unable to begin transaction",
170
m_database->
setLastErrorMessage
("unable to read version",
185
m_database->
setLastErrorMessage
("failed to execute transaction callback");
199
m_database->
setLastErrorMessage
("unable to commit transaction because the database is not open.");
213
m_database->
setLastErrorMessage
("unable to commit transaction"
[
all
...]
Completed in 169 milliseconds