Home
last modified time | relevance | path

Searched full:transactional (Results 1 – 25 of 181) sorted by relevance

12345678

/external/guice/extensions/persist/src/com/google/inject/persist/jpa/
DJpaLocalTxnInterceptor.java20 import com.google.inject.persist.Transactional;
36 @Transactional
51 Transactional transactional = readTransactionMetadata(methodInvocation); in invoke() local
54 // Allow 'joining' of transactions if there is an enclosing @Transactional method. in invoke()
68 if (rollbackIfNecessary(transactional, e, txn)) { in invoke()
99 private Transactional readTransactionMetadata(MethodInvocation methodInvocation) { in readTransactionMetadata()
100 Transactional transactional; in readTransactionMetadata() local
104 transactional = method.getAnnotation(Transactional.class); in readTransactionMetadata()
105 if (null == transactional) { in readTransactionMetadata()
107 transactional = targetClass.getAnnotation(Transactional.class); in readTransactionMetadata()
[all …]
/external/guice/extensions/persist/test/com/google/inject/persist/jpa/
DClassLevelManagedLocalTransactionsTest.java23 import com.google.inject.persist.Transactional;
32 * This test asserts class level @Transactional annotation behavior.
34 * <p>Class-level @Transactional is a shortcut if all non-private methods in the class are meant to
35 * be transactional.
66 "EntityManager was not closed by transactional service", in testSimpleTransaction()
96 "EntityManager was not closed by transactional service (rollback didnt happen?)", in testSimpleTransactionRollbackOnChecked()
123 "Txn was not closed by transactional service (commit didnt happen?)", in testSimpleTransactionRollbackOnCheckedExcepting()
148 "EntityManager was not closed by transactional service (rollback didnt happen?)", in testSimpleTransactionRollbackOnUnchecked()
164 @Transactional
176 @Transactional
[all …]
DJoiningLocalTransactionsTest.java23 import com.google.inject.persist.Transactional;
62 assertFalse("txn was not closed by transactional service", em.getTransaction().isActive()); in testSimpleTransaction()
92 "EM was not closed by transactional service (rollback didnt happen?)", in testSimpleTransactionRollbackOnChecked()
119 "Session was not closed by transactional service (rollback didnt happen?)", in testSimpleTransactionRollbackOnUnchecked()
141 @Transactional
146 @Transactional(rollbackOn = IOException.class)
153 @Transactional(rollbackOn = IOException.class)
158 @Transactional
167 @Transactional
172 @Transactional(rollbackOn = IOException.class)
DManagedLocalTransactionsTest.java23 import com.google.inject.persist.Transactional;
58 assertFalse("txn was not closed by transactional service", em.getTransaction().isActive()); in testSimpleTransaction()
80 assertFalse("txn was not closed by transactional service", em.getTransaction().isActive()); in testSimpleTransactionWithMerge()
110 "Previous EM was not closed by transactional service (rollback didnt happen?)", in testSimpleTransactionRollbackOnChecked()
135 "Session was not closed by transactional service (rollback didnt happen?)", in testSimpleTransactionRollbackOnUnchecked()
157 @Transactional
164 @Transactional
171 @Transactional(rollbackOn = IOException.class)
180 @Transactional
DManagedLocalTransactionsAcrossRequestTest.java24 import com.google.inject.persist.Transactional;
115 assertFalse("txn was not closed by transactional service", em.getTransaction().isActive()); in disabled_testSimpleTransactionWithMergeAndDF()
146 "Previous EM was not closed by transactional service (rollback didnt happen?)", in testSimpleTransactionRollbackOnChecked()
173 "Session was not closed by transactional service (rollback didnt happen?)", in testSimpleTransactionRollbackOnUnchecked()
197 @Transactional
204 @Transactional
211 @Transactional
218 @Transactional(rollbackOn = IOException.class)
227 @Transactional
DManualLocalTransactionsWithCustomMatcherTest.java23 import com.google.inject.persist.Transactional;
34 * its own (manual) discretion. As opposed to a transactional unit of work.
95 @Transactional
104 @Transactional
DManualLocalTransactionsTest.java23 import com.google.inject.persist.Transactional;
32 * its own (manual) discretion. As opposed to a transactional unit of work.
92 @Transactional
101 @Transactional
DDynamicFinderTest.java24 import com.google.inject.persist.Transactional;
91 @Transactional
101 @Transactional
DJpaWorkManagerTest.java23 import com.google.inject.persist.Transactional;
106 @Transactional
114 @Transactional
DEntityManagerProvisionTest.java24 import com.google.inject.persist.Transactional;
106 @Transactional
116 @Transactional
DEntityManagerPerRequestProvisionTest.java23 import com.google.inject.persist.Transactional;
113 @Transactional
122 @Transactional
DManualLocalTransactionsConfidenceTest.java23 import com.google.inject.persist.Transactional;
76 @Transactional
/external/clang/test/Driver/
Dsystemz-features.cpp3 // CHECK-DEFAULT-NOT: "-target-feature" "+transactional-execution"
4 // CHECK-DEFAULT-NOT: "-target-feature" "-transactional-execution"
10 // CHECK-HTM: "-target-feature" "+transactional-execution"
11 // CHECK-HTM-NOT: "-target-feature" "-transactional-execution"
15 // CHECK-NOHTM: "-target-feature" "-transactional-execution"
16 // CHECK-NOHTM-NOT: "-target-feature" "+transactional-execution"
/external/clang/include/clang/Basic/
DBuiltinsSystemZ.def21 // Transactional-memory intrinsics
22 TARGET_BUILTIN(__builtin_tbegin, "iv*", "j", "transactional-execution")
23 TARGET_BUILTIN(__builtin_tbegin_nofloat, "iv*", "j", "transactional-execution")
24 TARGET_BUILTIN(__builtin_tbeginc, "v", "nj", "transactional-execution")
25 TARGET_BUILTIN(__builtin_tabort, "vi", "r", "transactional-execution")
26 TARGET_BUILTIN(__builtin_tend, "i", "n", "transactional-execution")
27 TARGET_BUILTIN(__builtin_tx_nesting_depth, "i", "nc", "transactional-execution")
28 TARGET_BUILTIN(__builtin_tx_assist, "vi", "n", "transactional-execution")
29 TARGET_BUILTIN(__builtin_non_tx_store, "vULi*ULi", "", "transactional-execution")
/external/guice/extensions/persist/src/com/google/inject/persist/
DTransactional.java28 * Marking a method {@code @Transactional} will start a new transaction before the method executes
42 public @interface Transactional { annotation
45 * A list of exceptions to rollback on, if thrown by the transactional method. These exceptions
DPersistModule.java42 bindInterceptor(annotatedWith(Transactional.class), any(), getTransactionInterceptor()); in configure()
44 bindInterceptor(any(), annotatedWith(Transactional.class), getTransactionInterceptor()); in configure()
/external/googleapis/google/datastore/v1beta3/
Ddatastore.proto208 // Transactional: The mutations are either all applied, or none are applied.
211 TRANSACTIONAL = 1; enumerator
213 // Non-transactional: The mutations may not apply as all or none.
220 // The type of commit to perform. Defaults to `TRANSACTIONAL`.
223 // Must be set when mode is `TRANSACTIONAL`.
233 // When mode is `TRANSACTIONAL`, mutations affecting a single entity are
370 // The non-transactional read consistency to use.
/external/OpenCSD/decoder/include/opencsd/
Dtrc_gen_elem_types.h65 OCSD_GEN_TRC_ELEM_MEMTRANS, /*!< Trace indication of transactional memory operations. */
103 OCSD_MEM_TRANS_TRACE_INIT,/**< Trace started while PE in transactional state */
104 …OCSD_MEM_TRANS_START, /**< Trace after this packet is part of a transactional memory sequence …
105 OCSD_MEM_TRANS_COMMIT, /**< Transactional memory sequence valid. */
106 …OCSD_MEM_TRANS_FAIL, /**< Transactional memory sequence failed - operations since start of tr…
/external/guice/extensions/jmx/test/com/google/inject/tools/jmx/
DJmxTest.java42 @interface Transactional {} annotation in JmxTest
54 bind(Foo.class).annotatedWith(Transactional.class).to(FooImpl.class); in configure()
/external/googleapis/google/datastore/v1/
Ddatastore.proto376 // Transactional: The mutations are either all applied, or none are applied.
379 TRANSACTIONAL = 1; enumerator
381 // Non-transactional: The mutations may not apply as all or none.
394 // The type of commit to perform. Defaults to `TRANSACTIONAL`.
397 // Must be set when mode is `TRANSACTIONAL`.
413 // When mode is `TRANSACTIONAL`, mutations affecting a single entity are
437 // The transaction commit timestamp. Not set for non-transactional commits.
583 // The non-transactional read consistency to use.
/external/llvm/lib/Target/SystemZ/
DSystemZProcessors.td69 "transactional-execution", "TransactionalExecution",
70 "Assume that the transactional-execution facility is installed"
/external/linux-kselftest/tools/testing/selftests/powerpc/tm/
Dtm-poison.c116 * as r3 before entering in transactional mode, i.e. 0x1. in tm_poison_test()
164 * as r3 before entering in transactional mode, i.e. 0x1. in tm_poison_test()
/external/clang/test/CodeGen/
Dbuiltins-systemz-error2.c7 …*)0); // expected-error {{'__builtin_tbegin' needs target feature transactional-execution}} in f0()
/external/llvm/test/MC/SystemZ/
Dinsn-bad-z196.s247 #CHECK: error: {{(instruction requires: transactional-execution)?}}
554 #CHECK: error: {{(instruction requires: transactional-execution)?}}
723 #CHECK: error: {{(instruction requires: transactional-execution)?}}
728 #CHECK: error: {{(instruction requires: transactional-execution)?}}
733 #CHECK: error: {{(instruction requires: transactional-execution)?}}
738 #CHECK: error: {{(instruction requires: transactional-execution)?}}
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/
DPPCInstrHTM.td1 //===-- PPCInstrHTM.td - The PowerPC Hardware Transactional Memory -*-===//
9 // This file describes the Hardware Transactional Memory extension to the

12345678