HomeSort by relevance Sort by last modified time
    Searched defs:locktype (Results 1 - 9 of 9) sorted by null

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_thread.py 220 locktype = thread.allocate_lock variable in class:LockTests
test_threading.py 715 locktype = staticmethod(threading.Lock) variable in class:LockTests
718 locktype = staticmethod(threading.RLock) variable in class:RLockTests
725 locktype = staticmethod(threading.Condition) variable in class:ConditionAsRLockTests
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_thread.py 220 locktype = thread.allocate_lock variable in class:LockTests
test_threading.py 715 locktype = staticmethod(threading.Lock) variable in class:LockTests
718 locktype = staticmethod(threading.RLock) variable in class:RLockTests
725 locktype = staticmethod(threading.Condition) variable in class:ConditionAsRLockTests
  /external/chromium_org/third_party/sqlite/src/src/
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...]
  /external/chromium_org/third_party/sqlite/amalgamation/
sqlite3.c 22098 int locktype; \/* Type of lock currently held on this file *\/ member in struct:os2File
31240 unsigned char locktype; \/* Type of lock currently held on this file *\/ member in struct:winFile
    [all...]
  /external/sqlite/dist/orig/
sqlite3.c 22952 int locktype; \/* Type of lock currently held on this file *\/ member in struct:os2File
32173 u8 locktype; \/* Type of lock currently held on this file *\/ member in struct:winFile
    [all...]
  /external/sqlite/dist/
sqlite3.c 22952 int locktype; \/* Type of lock currently held on this file *\/ member in struct:os2File
32201 u8 locktype; \/* Type of lock currently held on this file *\/ member in struct:winFile
    [all...]

Completed in 350 milliseconds