OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:m_nextState
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
SQLTransactionStateMachine.h
48
SQLTransactionState
m_nextState
;
68
:
m_nextState
(SQLTransactionState::Idle)
83
ASSERT(
m_nextState
== SQLTransactionState::Idle);
85
m_nextState
= m_requestedState;
93
while (
m_nextState
> SQLTransactionState::Idle) {
94
ASSERT(
m_nextState
< SQLTransactionState::NumberOfStates);
95
StateFunction stateFunction = stateFunctionFor(
m_nextState
);
99
m_stateAuditTrail[m_nextStateAuditEntry] =
m_nextState
;
102
m_nextState
= (static_cast<T*>(this)->*stateFunction)();
SQLTransaction.cpp
243
ASSERT(
m_nextState
!= SQLTransactionState::Idle);
244
m_backend->requestTransitToState(
m_nextState
);
277
ASSERT(
m_nextState
== SQLTransactionState::End
278
||
m_nextState
== SQLTransactionState::DeliverTransactionCallback
279
||
m_nextState
== SQLTransactionState::DeliverTransactionErrorCallback
280
||
m_nextState
== SQLTransactionState::DeliverStatementCallback
281
||
m_nextState
== SQLTransactionState::DeliverQuotaIncreaseCallback
282
||
m_nextState
== SQLTransactionState::DeliverSuccessCallback);
284
LOG(StorageAPI, "Callback %s\n", nameForSQLTransactionState(
m_nextState
));
289
m_nextState
= SQLTransactionState::CleanupAndTerminate
[
all
...]
SQLTransactionBackend.cpp
218
// their Idle states. This means their
m_nextState
is set to Idle, but they never
226
// state (indicated by
m_nextState
), and then transits itself to the Idle state
481
ASSERT(
m_nextState
== SQLTransactionState::AcquireLock
482
||
m_nextState
== SQLTransactionState::OpenTransactionAndPreflight
483
||
m_nextState
== SQLTransactionState::RunStatements
484
||
m_nextState
== SQLTransactionState::PostflightAndCommit
485
||
m_nextState
== SQLTransactionState::CleanupAndTerminate
486
||
m_nextState
== SQLTransactionState::CleanupAfterTransactionErrorCallback);
488
LOG(StorageAPI, "State %s\n", nameForSQLTransactionState(
m_nextState
));
493
if (
m_nextState
== SQLTransactionState::End
[
all
...]
Completed in 31 milliseconds