OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:m_transactionError
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
SQLTransactionBackend.cpp
409
// We also can't clear m_currentStatementBackend and
m_transactionError
.
412
//
m_transactionError
may be accessed by deliverTransactionErrorCallback().
430
return
m_transactionError
;
570
m_transactionError
= SQLError::create(SQLError::DATABASE_ERR, "unable to begin transaction",
582
m_transactionError
= SQLError::create(SQLError::DATABASE_ERR, "unable to read version",
596
m_transactionError
= m_wrapper->sqlError();
597
if (!
m_transactionError
) {
599
m_transactionError
= SQLError::create(SQLError::UNKNOWN_ERR, "unknown error occurred during transaction preflight");
[
all
...]
SQLTransaction.cpp
129
ASSERT(
m_transactionError
);
154
m_transactionError
= SQLError::create(SQLError::UNKNOWN_ERR, "the SQLTransactionCallback was null or threw an exception");
167
// If we get here with an empty
m_transactionError
, then the backend
171
if (!
m_transactionError
)
172
m_transactionError
= m_backend->transactionError();
174
ASSERT(
m_transactionError
);
175
errorCallback->handleEvent(
m_transactionError
.get());
177
m_transactionError
= 0;
202
m_transactionError
= SQLError::create(SQLError::UNKNOWN_ERR, "the statement callback raised an exception or statement error callback did not return false");
SQLTransaction.h
105
RefPtr<SQLError>
m_transactionError
;
SQLTransactionBackend.h
115
RefPtr<SQLError>
m_transactionError
;
Completed in 35 milliseconds