/external/chromium_org/third_party/sqlite/src/src/ |
os.c | 82 int sqlite3OsLock(sqlite3_file *id, int lockType){ 84 return id->pMethods->xLock(id, lockType); 86 int sqlite3OsUnlock(sqlite3_file *id, int lockType){ 87 return id->pMethods->xUnlock(id, lockType);
|
os_unix.c | [all...] |
os_os2.c | 71 int locktype; /* Type of lock currently held on this file */ member in struct:os2File 109 pFile->locktype = NO_LOCK; 133 OSTRACE(( "READ %d lock=%d\n", pFile->h, pFile->locktype )); 166 OSTRACE(( "WRITE %d lock=%d\n", pFile->h, pFile->locktype )); 219 OSTRACE(( "SYNC %d lock=%d\n", pFile->h, pFile->locktype )); 292 ** Lock the file with the lock specified by parameter locktype - one 317 static int os2Lock( sqlite3_file *id, int locktype ){ 320 int newLocktype; /* Set pFile->locktype to this value before exiting */ 328 OSTRACE(( "LOCK %d %d was %d\n", pFile->h, locktype, pFile->locktype )); [all...] |
os_win.c | 105 unsigned char locktype; /* Type of lock currently held on this file */ member in struct:winFile 718 OSTRACE(("READ %d lock=%d\n", pFile->h, pFile->locktype)); 754 OSTRACE(("WRITE %d lock=%d\n", pFile->h, pFile->locktype)); 839 OSTRACE(("SYNC %d lock=%d\n", pFile->h, pFile->locktype)); 951 ** Lock the file with the lock specified by parameter locktype - one 976 static int winLock(sqlite3_file *id, int locktype){ 979 int newLocktype; /* Set pFile->locktype to this value before exiting */ 986 pFile->h, locktype, pFile->locktype, pFile->sharedLockByte)); 992 if( pFile->locktype>=locktype ) [all...] |
btree.c | [all...] |
/external/chromium_org/third_party/sqlite/amalgamation/ |
sqlite3.c | 22083 int locktype; \/* Type of lock currently held on this file *\/ member in struct:os2File 31225 unsigned char locktype; \/* Type of lock currently held on this file *\/ member in struct:winFile [all...] |
/external/chromium_org/third_party/libaddressinput/src/java/ |
android.jar | |