Searched refs:Transaction (Results 1 - 25 of 79) sorted by relevance

1234

/external/chromium_org/sql/
H A Dtransaction.cc12 Transaction::Transaction(Connection* connection) function in class:sql::Transaction
17 Transaction::~Transaction() {
22 bool Transaction::Begin() {
28 void Transaction::Rollback() {
35 bool Transaction::Commit() {
H A Dtransaction.h15 class SQL_EXPORT Transaction { class in namespace:sql
24 explicit Transaction(Connection* connection);
25 ~Transaction();
55 DISALLOW_COPY_AND_ASSIGN(Transaction);
H A Dtransaction_unittest.cc43 sql::Transaction t(&db());
61 sql::Transaction t(&db());
73 sql::Transaction t2(&db());
91 sql::Transaction outer(&db());
97 sql::Transaction inner1(&db());
111 sql::Transaction inner2(&db());
124 sql::Transaction inner3(&db());
/external/nist-sip/java/javax/sip/
H A DServerTransaction.java5 public interface ServerTransaction extends Transaction {
H A DClientTransaction.java6 public interface ClientTransaction extends Transaction {
H A DTransaction.java6 public interface Transaction extends Serializable { interface in inherits:Serializable
H A DSipProvider.java41 Dialog getNewDialog(Transaction transaction) throws SipException;
/external/nist-sip/java/gov/nist/javax/sip/
H A DTransactionExt.java8 import javax.sip.Transaction;
10 public interface TransactionExt extends Transaction {
/external/chromium_org/content/browser/indexed_db/
H A Dindexed_db_fake_backing_store.cc53 bool IndexedDBFakeBackingStore::UpdateIDBDatabaseIntVersion(Transaction*,
64 Transaction*,
74 Transaction* transaction,
81 IndexedDBBackingStore::Transaction* transaction,
92 Transaction*,
98 Transaction*,
105 Transaction*,
112 Transaction*,
120 Transaction*,
130 Transaction*,
63 CreateObjectStore( Transaction*, int64 database_id, int64 object_store_id, const base::string16& name, const IndexedDBKeyPath&, bool auto_increment) argument
91 ClearObjectStore( Transaction*, int64 database_id, int64 object_store_id) argument
97 DeleteRecord( Transaction*, int64 database_id, int64 object_store_id, const RecordIdentifier&) argument
104 GetKeyGeneratorCurrentNumber( Transaction*, int64 database_id, int64 object_store_id, int64* current_number) argument
111 MaybeUpdateKeyGeneratorCurrentNumber( Transaction*, int64 database_id, int64 object_store_id, int64 new_number, bool check_current) argument
119 KeyExistsInObjectStore( Transaction*, int64 database_id, int64 object_store_id, const IndexedDBKey&, RecordIdentifier* found_record_identifier, bool* found) argument
129 CreateIndex( Transaction*, int64 database_id, int64 object_store_id, int64 index_id, const base::string16& name, const IndexedDBKeyPath&, bool is_unique, bool is_multi_entry) argument
147 PutIndexDataForRecord( Transaction*, int64 database_id, int64 object_store_id, int64 index_id, const IndexedDBKey&, const RecordIdentifier&) argument
[all...]
H A Dindexed_db_fake_backing_store.h35 virtual bool UpdateIDBDatabaseIntVersion(Transaction*,
40 virtual leveldb::Status CreateObjectStore(Transaction*,
47 virtual leveldb::Status DeleteObjectStore(Transaction* transaction,
52 IndexedDBBackingStore::Transaction* transaction,
60 virtual leveldb::Status ClearObjectStore(Transaction*,
63 virtual leveldb::Status DeleteRecord(Transaction*,
67 virtual leveldb::Status GetKeyGeneratorCurrentNumber(Transaction*,
73 Transaction*,
79 Transaction*,
86 virtual leveldb::Status CreateIndex(Transaction*,
[all...]
H A Dindexed_db_index_writer.h31 IndexedDBBackingStore::Transaction* transaction,
41 IndexedDBBackingStore::Transaction* transaction,
49 IndexedDBBackingStore::Transaction* transaction,
H A Dindexed_db_backing_store.h120 class CONTENT_EXPORT Transaction { class in class:content::IndexedDBBackingStore
122 explicit Transaction(IndexedDBBackingStore* backing_store);
123 virtual ~Transaction();
275 Transaction* transaction,
288 Transaction* transaction_;
357 IndexedDBBackingStore::Transaction* transaction,
372 IndexedDBBackingStore::Transaction* transaction,
379 IndexedDBBackingStore::Transaction* transaction,
384 IndexedDBBackingStore::Transaction* transaction,
390 IndexedDBBackingStore::Transaction* transactio
[all...]
H A Dindexed_db_index_writer.cc33 IndexedDBBackingStore::Transaction* transaction,
70 IndexedDBBackingStore::Transaction* transaction,
91 IndexedDBBackingStore::Transaction* transaction,
H A Dindexed_db_transaction.h47 IndexedDBBackingStore::Transaction* backing_store_transaction);
71 IndexedDBBackingStore::Transaction* BackingStoreTransaction() {
159 scoped_ptr<IndexedDBBackingStore::Transaction> transaction_;
H A Dindexed_db_backing_store_unittest.cc108 const std::vector<IndexedDBBackingStore::Transaction::WriteDescriptor>&
121 const Transaction::WriteDescriptor& descriptor,
122 Transaction::ChainedBlobWriter* chained_blob_writer) OVERRIDE {
133 base::Bind(&Transaction::ChainedBlobWriter::ReportWriteCompletion,
172 std::vector<Transaction::WriteDescriptor> writes_;
307 const IndexedDBBackingStore::Transaction::WriteDescriptor& desc =
378 IndexedDBBackingStore::Transaction transaction1(backing_store_.get());
393 IndexedDBBackingStore::Transaction transaction2(backing_store_.get());
410 IndexedDBBackingStore::Transaction transaction1(backing_store_.get());
431 IndexedDBBackingStore::Transaction transaction
[all...]
/external/chromium_org/net/http/
H A Dhttp_cache.h235 class Transaction;
237 friend class Transaction;
241 typedef std::list<Transaction*> TransactionList;
249 Transaction* writer;
273 int GetBackendForTransaction(Transaction* trans);
285 int DoomEntry(const std::string& key, Transaction* trans);
290 int AsyncDoomEntry(const std::string& key, Transaction* trans);
322 Transaction* trans);
328 Transaction* trans);
338 int AddTransactionToEntry(ActiveEntry* entry, Transaction* tran
[all...]
H A Dhttp_cache_transaction.cc312 HttpCache::Transaction::Transaction( function in class:net::HttpCache::Transaction
343 COMPILE_ASSERT(HttpCache::Transaction::kNumValidationHeaders ==
347 io_callback_ = base::Bind(&Transaction::OnIOComplete,
351 HttpCache::Transaction::~Transaction() {
374 int HttpCache::Transaction::WriteMetadata(IOBuffer* buf, int buf_len,
390 bool HttpCache::Transaction::AddTruncatedFlag() {
411 LoadState HttpCache::Transaction::GetWriterLoadState() const {
419 const BoundNetLog& HttpCache::Transaction
[all...]
H A Dhttp_cache.cc144 WorkItem(WorkItemOperation operation, Transaction* trans, ActiveEntry** entry)
149 WorkItem(WorkItemOperation operation, Transaction* trans,
183 bool Matches(Transaction* trans) const { return trans == trans_; }
188 Transaction* trans_;
200 explicit MetadataWriter(HttpCache::Transaction* trans)
217 scoped_ptr<HttpCache::Transaction> transaction_;
421 HttpCache::Transaction* trans =
422 new HttpCache::Transaction(priority, this);
467 HttpCache::Transaction* transaction =
468 new HttpCache::Transaction(priorit
[all...]
H A Dhttp_cache_transaction.h5 // This file declares HttpCache::Transaction, a private class of HttpCache so
30 class HttpCache::Transaction : public HttpTransaction { class in class:net::HttpCache
61 Transaction(RequestPriority priority,
63 virtual ~Transaction();
466 base::WeakPtrFactory<Transaction> weak_factory_;
468 DISALLOW_COPY_AND_ASSIGN(Transaction);
/external/chromium_org/chrome/browser/sync_file_system/drive_backend/
H A Dleveldb_wrapper.h44 typedef std::pair<Operation, std::string> Transaction; typedef in class:sync_file_system::drive_backend::LevelDBWrapper
45 typedef std::map<std::string, Transaction, SliceComparator>
H A Dleveldb_wrapper.cc74 Transaction deletion(DELETE_OPERATION, std::string());
154 pending_[key] = Transaction(PUT_OPERATION, value);
159 pending_[key] = Transaction(DELETE_OPERATION, std::string());
169 const Transaction& transaction = itr->second;
190 const Transaction& transaction = itr->second;
/external/clang/lib/ARCMigrate/
H A DTransEmptyStatementsAndDealloc.cpp180 Transaction Trans(Pass.TA);
223 Transaction Trans(TA);
228 Transaction Trans(TA);
234 Transaction Trans(TA);
237 Transaction Trans(TA);
250 Transaction Trans(pass.TA);
H A DTransARCAssign.cpp57 Transaction Trans(Pass.TA);
H A DTransGCCalls.cpp53 Transaction Trans(TA);
H A DTransUnusedInitDelegate.cpp55 Transaction Trans(Pass.TA);

Completed in 253 milliseconds

1234