Searched refs:noLock (Results 1 – 3 of 3) sorted by relevance
/external/webkit/WebCore/platform/sql/chromium/ |
D | SQLiteFileSystemChromiumPosix.cpp | 46 …e3_file(sqlite3_vfs* vfs, int fd, int dirfd, sqlite3_file* file, const char* fileName, int noLock); 94 int noLock = (fileType != SQLITE_OPEN_MAIN_DB); in chromiumOpen() local 95 result = chromium_sqlite3_fill_in_unix_sqlite3_file(vfs, fd, dirfd, id, fileName, noLock); in chromiumOpen()
|
/external/sqlite/dist/ |
D | sqlite3.c | 25030 int noLock, /* Omit locking if true */ 25054 noLock = 1; 25059 if( noLock ){ 25372 int noLock; /* True to omit locking primitives */ 25511 noLock = eType!=SQLITE_OPEN_MAIN_DB; 25514 if( zPath!=NULL && !noLock && pVfs->xOpen ){ 25543 rc = fillInUnixFile(pVfs, fd, dirfd, pFile, zPath, noLock, isDelete); 25552 rc = fillInUnixFile(pVfs, fd, dirfd, pFile, zPath, noLock, isDelete);
|
D | sqlite3.c.orig | 25025 int noLock, /* Omit locking if true */ 25049 noLock = 1; 25054 if( noLock ){ 25367 int noLock; /* True to omit locking primitives */ 25506 noLock = eType!=SQLITE_OPEN_MAIN_DB; 25509 if( zPath!=NULL && !noLock && pVfs->xOpen ){ 25538 rc = fillInUnixFile(pVfs, fd, dirfd, pFile, zPath, noLock, isDelete); 25547 rc = fillInUnixFile(pVfs, fd, dirfd, pFile, zPath, noLock, isDelete);
|