Home | History | Annotate | Download | only in net

Lines Matching refs:Commit

79   // Commit pending operations as soon as possible.
82 // Commit any pending operations and close the database. This must be called
129 // Commit our pending operations to the database.
131 void Commit(Task* completion_task);
133 void Commit();
151 // Number of cookies that have actually been saved. Updated during Commit().
312 transaction.Commit();
346 transaction.Commit();
377 // Commit every 30 seconds.
379 // Commit right away if we have more than 512 outstanding operations.
403 this, &Backend::Commit, static_cast<Task*>(NULL)), kCommitIntervalMs);
407 NewRunnableMethod(this, &Backend::Commit), kCommitIntervalMs);
410 // We've reached a big enough batch, fire off a commit now.
413 this, &Backend::Commit, static_cast<Task*>(NULL)));
417 NewRunnableMethod(this, &Backend::Commit));
423 void SQLitePersistentCookieStore::Backend::Commit(Task* completion_task) {
425 void SQLitePersistentCookieStore::Backend::Commit() {
480 // Free the cookies as we commit them to the database.
526 bool succeeded = transaction.Commit();
539 this, &Backend::Commit, completion_task));
543 BrowserThread::DB, FROM_HERE, NewRunnableMethod(this, &Backend::Commit));
545 // We want the completion task to run immediately after Commit() returns.
547 // onto the message queue first, than if we posted it from Commit() itself.
554 // pending commit timer that will be holding a reference on us, but if/when
577 // Commit any pending operations
579 Commit(NULL);
581 Commit();