HomeSort by relevance Sort by last modified time
    Searched defs:txn (Results 1 - 7 of 7) sorted by null

  /external/guice/extensions/persist/src/com/google/inject/persist/jpa/
JpaLocalTxnInterceptor.java 65 final EntityTransaction txn = em.getTransaction(); local
66 txn.begin();
74 if (rollbackIfNecessary(transactional, e, txn)) {
75 txn.commit();
82 if (null != didWeStartWork.get() && !txn.isActive()) {
88 //everything was normal so commit the txn (do not move into try block above as it
91 txn.commit();
128 * @param txn A JPA Transaction to issue rollbacks on
131 EntityTransaction txn) {
153 txn.rollback()
    [all...]
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
FragmentTransactionTest.java 36 private TestFragmentTransaction txn; field in class:FragmentTransactionTest
43 txn = new TestFragmentTransaction(manager);
51 txn.add(fragment, tag);
52 assertSame(fragment, txn.getFragment());
53 assertSame(tag, txn.getTag());
54 assertEquals(View.NO_ID, txn.getContainerViewId());
56 txn.add(id, fragment);
57 assertEquals(id, txn.getContainerViewId());
58 assertSame(fragment, txn.getFragment());
60 txn.add(id, fragment, tag)
    [all...]
  /external/python/cpython2/Modules/
bsddb.h 162 struct DBTxnObject *txn; member in struct:DBObject
186 struct DBTxnObject *txn; member in struct:DBCursorObject
193 DB_TXN* txn; member in struct:DBTxnObject
239 struct DBTxnObject *txn; member in struct:DBSequenceObject
_bsddb.c 739 /* verify that an obj is either None or a DBTxn, and set the txn pointer */
740 static int checkTxnObj(PyObject* txnobj, DB_TXN** txn)
743 *txn = NULL;
747 *txn = ((DBTxnObject*)txnobj)->txn;
758 static int _DB_delete(DBObject* self, DB_TXN *txn, DBT *key, int flags)
763 err = self->db->del(self->db, txn, key, 0);
774 static int _DB_put(DBObject* self, DB_TXN *txn, DBT *key, DBT *data, int flags)
779 err = self->db->put(self->db, txn, key, data, flags);
930 self->txn=NULL
1423 DB_TXN *txn = NULL; local
1583 DB_TXN *txn = NULL; local
1706 DB_TXN *txn = NULL; local
1773 DB_TXN *txn = NULL; local
1798 DB_TXN *txn = NULL; local
1834 DB_TXN *txn = NULL; local
1903 DB_TXN *txn; local
1955 DB_TXN *txn = NULL; local
2021 DB_TXN *txn = NULL; local
2113 DB_TXN *txn = NULL; local
2157 DB_TXN *txn = NULL; local
2305 DB_TXN *txn = NULL; local
2335 DB_TXN *txn = NULL; local
2405 DB_TXN *txn = NULL; local
3242 DB_TXN *txn = NULL; local
3393 DB_TXN *txn = NULL; local
3654 DB_TXN *txn = NULL; local
3850 DB_TXN *txn = NULL; local
3864 DB_TXN *txn = NULL; local
3878 DB_TXN *txn = NULL; local
5169 DB_TXN *txn = NULL; local
5197 DB_TXN *txn = NULL; local
6114 DBTxnObject *txn; local
6190 DB_TXN *txn = NULL; local
6704 DB_TXN *txn = NULL; local
8120 DB_TXN *txn; local
8193 DB_TXN *txn; local
8402 DB_TXN *txn = NULL; local
8475 DB_TXN *txn = NULL; local
8509 DB_TXN *txn = NULL; local
    [all...]
  /frameworks/native/cmds/servicemanager/
binder.c 23 void bio_init_from_txn(struct binder_io *io, struct binder_transaction_data *txn);
44 void binder_dump_txn(struct binder_transaction_data *txn)
47 binder_size_t *offs = (binder_size_t *)(uintptr_t)txn->data.ptr.offsets;
48 size_t count = txn->offsets_size / sizeof(binder_size_t);
51 (uint64_t)txn->target.ptr, (uint64_t)txn->cookie, txn->code, txn->flags);
53 txn->sender_pid, txn->sender_euid, (uint64_t)txn->data_size, (uint64_t)txn->offsets_size)
192 struct binder_transaction_data txn; member in struct:__anon41110
244 struct binder_transaction_data *txn = (struct binder_transaction_data *) ptr; local
269 struct binder_transaction_data *txn = (struct binder_transaction_data *) ptr; local
343 struct binder_transaction_data txn; member in struct:__anon41112
    [all...]
  /prebuilts/tools/common/m2/repository/com/firebase/firebase-client-jvm/2.5.2/
firebase-client-jvm-2.5.2.jar 
  /external/guice/extensions/persist/lib/
hibernate3.jar 

Completed in 1698 milliseconds