Home | History | Annotate | Download | only in net

Lines Matching refs:Commit

95   // Commit pending operations as soon as possible.
98 // Commit any pending operations and close the database. This must be called
145 // Commit our pending operations to the database.
147 void Commit(Task* completion_task);
149 void Commit();
167 // Number of cookies that have actually been saved. Updated during Commit().
328 transaction.Commit();
362 transaction.Commit();
393 // Commit every 30 seconds.
395 // Commit right away if we have more than 512 outstanding operations.
421 this, &Backend::Commit, static_cast<Task*>(NULL)), kCommitIntervalMs);
425 NewRunnableMethod(this, &Backend::Commit), kCommitIntervalMs);
428 // We've reached a big enough batch, fire off a commit now.
431 this, &Backend::Commit, static_cast<Task*>(NULL)));
435 NewRunnableMethod(this, &Backend::Commit));
441 void SQLitePersistentCookieStore::Backend::Commit(Task* completion_task) {
443 void SQLitePersistentCookieStore::Backend::Commit() {
498 // Free the cookies as we commit them to the database.
544 bool succeeded = transaction.Commit();
563 this, &Backend::Commit, completion_task));
567 BrowserThread::DB, FROM_HERE, NewRunnableMethod(this, &Backend::Commit));
569 // We want the completion task to run immediately after Commit() returns.
571 // onto the message queue first, than if we posted it from Commit() itself.
578 // pending commit timer that will be holding a reference on us, but if/when
604 // Commit any pending operations
606 Commit(NULL);
608 Commit();