Home
last modified time | relevance | path

Searched refs:SQLITE_ERROR_RETRY (Results 1 – 3 of 3) sorted by relevance

/third_party/sqlite/include/
Dsqlite3.h496 #define SQLITE_ERROR_RETRY (SQLITE_ERROR | (2<<8)) macro
/third_party/chromium/patch/
D0003-3.2-Beta3-1115.patch103062 +** that returns SQLITE_ERROR_RETRY.
103160 - }while( rc==SQLITE_ERROR_RETRY
103161 + }while( (rc==SQLITE_ERROR_RETRY && (cnt++)<SQLITE_MAX_PREPARE_RETRY)
140703 +** that returns SQLITE_ERROR_RETRY.
140801 - }while( rc==SQLITE_ERROR_RETRY
140802 + }while( (rc==SQLITE_ERROR_RETRY && (cnt++)<SQLITE_MAX_PREPARE_RETRY)
168754 +** that returns SQLITE_ERROR_RETRY.
168852 - }while( rc==SQLITE_ERROR_RETRY
168853 + }while( (rc==SQLITE_ERROR_RETRY && (cnt++)<SQLITE_MAX_PREPARE_RETRY)
/third_party/sqlite/src/
Dsqlite3.c806 #define SQLITE_ERROR_RETRY (SQLITE_ERROR | (2<<8)) macro
118987 pParse->rc = SQLITE_ERROR_RETRY;
133603 }while( rc==SQLITE_ERROR_RETRY