Home | History | Annotate | Download | only in net

Lines Matching refs:DB

36   DbThread() : base::Thread("android-db") {
159 // If you open the DB with an older version on Mac or Linux, the times will
172 bool InitTable(sql::Connection* db) {
173 if (!db->DoesTableExist("cookies")) {
174 if (!db->Execute("CREATE TABLE cookies ("
197 db->Execute(
212 // DB thread as part of http://crbug.com/52909.)
222 NOTREACHED() << "Unable to open cookie DB.";
234 NOTREACHED() << "Unable to open cookie DB.";
382 DCHECK(!BrowserThread::CurrentlyOn(BrowserThread::DB));
406 BrowserThread::DB, FROM_HERE,
416 BrowserThread::DB, FROM_HERE,
426 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::DB));
498 NOTREACHED() << "Could not add a cookie to the DB.";
508 NOTREACHED() << "Could not update cookie last access time in the DB.";
518 NOTREACHED() << "Could not delete a cookie from the DB.";
541 DCHECK(!BrowserThread::CurrentlyOn(BrowserThread::DB));
543 BrowserThread::DB, FROM_HERE, NewRunnableMethod(this, &Backend::Commit));
548 BrowserThread::PostTask(BrowserThread::DB, FROM_HERE, completion_task);
558 DCHECK(!BrowserThread::CurrentlyOn(BrowserThread::DB));
568 BrowserThread::DB, FROM_HERE,
575 DCHECK(BrowserThread::CurrentlyOn(BrowserThread::DB));