OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:IndexedDBTransaction
(Results
1 - 12
of
12
) sorted by null
/external/chromium_org/content/browser/indexed_db/
indexed_db_transaction_coordinator.h
18
class
IndexedDBTransaction
;
27
void DidCreateTransaction(scoped_refptr<
IndexedDBTransaction
> transaction);
28
void DidFinishTransaction(scoped_refptr<
IndexedDBTransaction
> transaction);
31
bool IsActive(
IndexedDBTransaction
* transaction);
35
std::vector<const
IndexedDBTransaction
*> GetTransactions() const;
39
bool CanStartTransaction(
IndexedDBTransaction
* const transaction,
45
typedef list_set<scoped_refptr<
IndexedDBTransaction
> > TransactionSet;
indexed_db_transaction.cc
23
IndexedDBTransaction
::TaskQueue::TaskQueue() {}
24
IndexedDBTransaction
::TaskQueue::~TaskQueue() { clear(); }
26
void
IndexedDBTransaction
::TaskQueue::clear() {
31
IndexedDBTransaction
::Operation
IndexedDBTransaction
::TaskQueue::pop() {
38
IndexedDBTransaction
::TaskStack::TaskStack() {}
39
IndexedDBTransaction
::TaskStack::~TaskStack() { clear(); }
41
void
IndexedDBTransaction
::TaskStack::clear() {
46
IndexedDBTransaction
::Operation
IndexedDBTransaction
::TaskStack::pop()
[
all
...]
indexed_db_cursor.h
19
class
IndexedDBTransaction
;
27
IndexedDBTransaction
* transaction);
48
IndexedDBTransaction
* transaction);
51
IndexedDBTransaction
* transaction);
55
IndexedDBTransaction
* transaction);
64
const scoped_refptr<
IndexedDBTransaction
> transaction_;
indexed_db_transaction_unittest.cc
31
void DummyOperation(
IndexedDBTransaction
* transaction) {}
47
scoped_refptr<
IndexedDBTransaction
> transaction = new
IndexedDBTransaction
(
57
EXPECT_EQ(
IndexedDBTransaction
::STARTED, transaction->state());
70
EXPECT_EQ(
IndexedDBTransaction
::FINISHED, transaction->state());
76
EXPECT_EQ(
IndexedDBTransaction
::FINISHED, transaction->state());
84
void AbortTask(
IndexedDBTransaction
* transaction) {
99
scoped_refptr<
IndexedDBTransaction
> transaction = new
IndexedDBTransaction
(
indexed_db_database.h
31
class
IndexedDBTransaction
;
121
void TransactionCreated(scoped_refptr<
IndexedDBTransaction
> transaction);
122
void TransactionStarted(
IndexedDBTransaction
* transaction);
123
void TransactionFinished(
IndexedDBTransaction
* transaction);
124
void TransactionFinishedAndCompleteFired(
IndexedDBTransaction
* transaction);
125
void TransactionFinishedAndAbortFired(
IndexedDBTransaction
* transaction);
187
IndexedDBTransaction
* transaction);
189
IndexedDBTransaction
* transaction);
192
IndexedDBTransaction
* transaction);
195
IndexedDBTransaction
* transaction)
[
all
...]
indexed_db_transaction_coordinator.cc
21
scoped_refptr<
IndexedDBTransaction
> transaction) {
24
DCHECK_EQ(
IndexedDBTransaction
::CREATED, transaction->state());
31
scoped_refptr<
IndexedDBTransaction
> transaction) {
46
IndexedDBTransaction
* transaction) {
58
std::vector<const
IndexedDBTransaction
*>
60
std::vector<const
IndexedDBTransaction
*> result;
94
IndexedDBTransaction
* transaction = *it;
105
scoped_refptr<
IndexedDBTransaction
> transaction = *it;
108
DCHECK_EQ(
IndexedDBTransaction
::CREATED, transaction->state());
112
DCHECK_EQ(
IndexedDBTransaction
::STARTED, transaction->state())
[
all
...]
indexed_db_transaction.h
26
class CONTENT_EXPORT
IndexedDBTransaction
27
: public NON_EXPORTED_BASE(base::RefCounted<
IndexedDBTransaction
>) {
29
typedef base::Callback<void(
IndexedDBTransaction
*)> Operation;
31
IndexedDBTransaction
(
88
friend class base::RefCounted<
IndexedDBTransaction
>;
89
virtual ~
IndexedDBTransaction
();
151
base::OneShotTimer<
IndexedDBTransaction
> timeout_timer_;
indexed_db_index_writer.h
20
class
IndexedDBTransaction
;
62
scoped_refptr<
IndexedDBTransaction
> transaction,
indexed_db_cursor.cc
20
IndexedDBTransaction
* transaction)
60
IndexedDBTransaction
* /*transaction*/) {
75
IndexedDBTransaction
* /*transaction*/) {
104
IndexedDBTransaction
* /*transaction*/) {
indexed_db_database.cc
215
IndexedDBTransaction
* IndexedDBDatabase::GetTransaction(
280
IndexedDBTransaction
* transaction = GetTransaction(transaction_id);
310
IndexedDBTransaction
* transaction) {
330
IndexedDBTransaction
* transaction = GetTransaction(transaction_id);
359
IndexedDBTransaction
* transaction = GetTransaction(transaction_id);
385
IndexedDBTransaction
* transaction) {
407
IndexedDBTransaction
* transaction) {
417
IndexedDBTransaction
* transaction = GetTransaction(transaction_id);
443
IndexedDBTransaction
* transaction) {
461
IndexedDBTransaction
* transaction)
[
all
...]
indexed_db_context_impl.cc
212
std::vector<const
IndexedDBTransaction
*> transactions =
214
for (std::vector<const
IndexedDBTransaction
*>::iterator trans_it =
219
const
IndexedDBTransaction
* transaction = *trans_it;
225
case
IndexedDBTransaction
::CREATED:
228
case
IndexedDBTransaction
::STARTED:
234
case
IndexedDBTransaction
::FINISHED:
indexed_db_index_writer.cc
117
scoped_refptr<
IndexedDBTransaction
> transaction,
Completed in 4931 milliseconds