Home | History | Annotate | Download | only in amalgamation

Lines Matching defs:LockFile

8822 ** those functions are not available.  So we use only LockFile() and
8825 ** LockFile() prevents not just writing but also reading by other processes.
26043 /* The lock is held if and only if the lockfile exists */
31469 #define LockFile(a,b,c,d,e) winceLockFile(&a, b, c, d, e)
31600 ** An implementation of the LockFile() API of windows for wince
32055 res = LockFile(pFile->h, SHARED_FIRST+pFile->sharedLockByte, 0, 1, 0);
32146 while( cnt-->0 && (res = LockFile(pFile->h, PENDING_BYTE, 0, 1, 0))==0 ){
32175 res = LockFile(pFile->h, RESERVED_BYTE, 0, 1, 0);
32196 res = LockFile(pFile->h, SHARED_FIRST, 0, SHARED_SIZE, 0);
32244 rc = LockFile(pFile->h, RESERVED_BYTE, 0, 1, 0);