Searched refs:m_nextStep (Results 1 – 2 of 2) sorted by relevance
67 : m_nextStep(&SQLTransaction::openTransactionAndPreflight) in SQLTransaction()146 m_nextStep = 0; in checkAndHandleClosedDatabase()158 LOG(StorageAPI, "Step %s\n", debugStepName(m_nextStep)); in performNextStep()160 ASSERT(m_nextStep == &SQLTransaction::openTransactionAndPreflight || in performNextStep()161 m_nextStep == &SQLTransaction::runStatements || in performNextStep()162 m_nextStep == &SQLTransaction::postflightAndCommit || in performNextStep()163 m_nextStep == &SQLTransaction::cleanupAfterSuccessCallback || in performNextStep()164 m_nextStep == &SQLTransaction::cleanupAfterTransactionErrorCallback); in performNextStep()168 if (m_nextStep) in performNextStep()169 (this->*m_nextStep)(); in performNextStep()[all …]
83 TransactionStepMethod m_nextStep; variable