Home | History | Annotate | Download | only in driver

Lines Matching refs:Transaction

69 #include "transaction.h"
2437 // exclusive access to the runtime and the transaction. To achieve this, we could use
2441 Transaction transaction;
2443 // Run the class initializer in transaction mode.
2444 runtime->EnterTransactionMode(&transaction);
2448 // TODO we detach transaction from runtime to indicate we quit the transactional
2449 // mode which prevents the GC from visiting objects modified during the transaction.
2450 // Ensure GC is not run so don't access freed objects when aborting transaction.
2452 ScopedAssertNoThreadSuspension ants(soa.Self(), "Transaction end");
2467 transaction.Rollback();