Searched defs:lockFile (Results 1 - 22 of 22) sorted by relevance

/forgerock/opendj-b2.6/src/server/org/opends/server/core/
H A DLockFileManager.java84 * @param lockFile The file for which to obtain the shared lock.
91 public static boolean acquireSharedLock(String lockFile, argument
98 if (exclusiveLocks.containsKey(lockFile))
102 ERR_FILELOCKER_LOCK_SHARED_REJECTED_BY_EXCLUSIVE.get(lockFile));
109 FileLock sharedLock = sharedLocks.get(lockFile);
112 int numReferences = sharedLockReferences.get(lockFile);
114 sharedLockReferences.put(lockFile, numReferences);
121 File f = getFileForPath(lockFile);
137 ERR_FILELOCKER_LOCK_SHARED_FAILED_CREATE.get(lockFile,
148 raf = new RandomAccessFile(lockFile, "
216 acquireExclusiveLock(String lockFile, StringBuilder failureReason) argument
343 releaseLock(String lockFile, StringBuilder failureReason) argument
[all...]
/forgerock/opendj2/src/server/org/opends/server/core/
H A DLockFileManager.java78 * @param lockFile The file for which to obtain the shared lock.
85 public static boolean acquireSharedLock(String lockFile, argument
92 if (exclusiveLocks.containsKey(lockFile))
96 ERR_FILELOCKER_LOCK_SHARED_REJECTED_BY_EXCLUSIVE.get(lockFile));
103 FileLock sharedLock = sharedLocks.get(lockFile);
106 int numReferences = sharedLockReferences.get(lockFile);
108 sharedLockReferences.put(lockFile, numReferences);
115 File f = getFileForPath(lockFile);
131 ERR_FILELOCKER_LOCK_SHARED_FAILED_CREATE.get(lockFile,
142 raf = new RandomAccessFile(lockFile, "
210 acquireExclusiveLock(String lockFile, StringBuilder failureReason) argument
337 releaseLock(String lockFile, StringBuilder failureReason) argument
[all...]
/forgerock/opendj2.6.2/src/server/org/opends/server/core/
H A DLockFileManager.java84 * @param lockFile The file for which to obtain the shared lock.
91 public static boolean acquireSharedLock(String lockFile, argument
98 if (exclusiveLocks.containsKey(lockFile))
102 ERR_FILELOCKER_LOCK_SHARED_REJECTED_BY_EXCLUSIVE.get(lockFile));
109 FileLock sharedLock = sharedLocks.get(lockFile);
112 int numReferences = sharedLockReferences.get(lockFile);
114 sharedLockReferences.put(lockFile, numReferences);
121 File f = getFileForPath(lockFile);
137 ERR_FILELOCKER_LOCK_SHARED_FAILED_CREATE.get(lockFile,
148 raf = new RandomAccessFile(lockFile, "
216 acquireExclusiveLock(String lockFile, StringBuilder failureReason) argument
343 releaseLock(String lockFile, StringBuilder failureReason) argument
[all...]
/forgerock/opendj2-jel-hg/src/server/org/opends/server/core/
H A DLockFileManager.java84 * @param lockFile The file for which to obtain the shared lock.
91 public static boolean acquireSharedLock(String lockFile, argument
98 if (exclusiveLocks.containsKey(lockFile))
102 ERR_FILELOCKER_LOCK_SHARED_REJECTED_BY_EXCLUSIVE.get(lockFile));
109 FileLock sharedLock = sharedLocks.get(lockFile);
112 int numReferences = sharedLockReferences.get(lockFile);
114 sharedLockReferences.put(lockFile, numReferences);
121 File f = getFileForPath(lockFile);
137 ERR_FILELOCKER_LOCK_SHARED_FAILED_CREATE.get(lockFile,
148 raf = new RandomAccessFile(lockFile, "
216 acquireExclusiveLock(String lockFile, StringBuilder failureReason) argument
343 releaseLock(String lockFile, StringBuilder failureReason) argument
[all...]
/forgerock/opendj2-hg/src/server/org/opends/server/core/
H A DLockFileManager.java78 * @param lockFile The file for which to obtain the shared lock.
85 public static boolean acquireSharedLock(String lockFile, argument
92 if (exclusiveLocks.containsKey(lockFile))
96 ERR_FILELOCKER_LOCK_SHARED_REJECTED_BY_EXCLUSIVE.get(lockFile));
103 FileLock sharedLock = sharedLocks.get(lockFile);
106 int numReferences = sharedLockReferences.get(lockFile);
108 sharedLockReferences.put(lockFile, numReferences);
115 File f = getFileForPath(lockFile);
131 ERR_FILELOCKER_LOCK_SHARED_FAILED_CREATE.get(lockFile,
142 raf = new RandomAccessFile(lockFile, "
210 acquireExclusiveLock(String lockFile, StringBuilder failureReason) argument
337 releaseLock(String lockFile, StringBuilder failureReason) argument
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/core/
H A DLockFileManager.java67 * @param lockFile The file for which to obtain the shared lock.
74 public static boolean acquireSharedLock(String lockFile, argument
81 if (exclusiveLocks.containsKey(lockFile))
84 ERR_FILELOCKER_LOCK_SHARED_REJECTED_BY_EXCLUSIVE.get(lockFile));
91 FileLock sharedLock = sharedLocks.get(lockFile);
94 int numReferences = sharedLockReferences.get(lockFile);
96 sharedLockReferences.put(lockFile, numReferences);
103 File f = getFileForPath(lockFile);
116 ERR_FILELOCKER_LOCK_SHARED_FAILED_CREATE.get(lockFile,
127 raf = new RandomAccessFile(lockFile, "
189 acquireExclusiveLock(String lockFile, StringBuilder failureReason) argument
307 releaseLock(String lockFile, StringBuilder failureReason) argument
[all...]
/forgerock/opendj2/src/build-tools/windows/
H A Dservice.c434 char lockFile[MAX_PATH]; local
443 sprintf(lockFile, "%s%s", _instanceDir, relativePath);
448 lockFile);
450 fd = _open(lockFile, _O_RDWR);
456 debug("Able to open the lock file '%s'.", lockFile);
465 debug("Able to lock '%s', so the server is not running.", lockFile);
476 debug("Unable to lock '%s', so the server is running.", lockFile);
494 lockFile);
/forgerock/opendj-b2.6/src/build-tools/windows/
H A Dservice.c435 char lockFile[MAX_PATH]; local
444 sprintf(lockFile, "%s%s", _instanceDir, relativePath);
449 lockFile);
451 fd = _open(lockFile, _O_RDWR);
457 debug("Able to open the lock file '%s'.", lockFile);
466 debug("Able to lock '%s', so the server is not running.", lockFile);
477 debug("Unable to lock '%s', so the server is running.", lockFile);
495 lockFile);
/forgerock/opendj2.6.2/src/build-tools/windows/
H A Dservice.c435 char lockFile[MAX_PATH]; local
444 sprintf(lockFile, "%s%s", _instanceDir, relativePath);
449 lockFile);
451 fd = _open(lockFile, _O_RDWR);
457 debug("Able to open the lock file '%s'.", lockFile);
466 debug("Able to lock '%s', so the server is not running.", lockFile);
477 debug("Unable to lock '%s', so the server is running.", lockFile);
495 lockFile);
/forgerock/opendj2-hg/src/build-tools/windows/
H A Dservice.c434 char lockFile[MAX_PATH]; local
443 sprintf(lockFile, "%s%s", _instanceDir, relativePath);
448 lockFile);
450 fd = _open(lockFile, _O_RDWR);
456 debug("Able to open the lock file '%s'.", lockFile);
465 debug("Able to lock '%s', so the server is not running.", lockFile);
476 debug("Unable to lock '%s', so the server is running.", lockFile);
494 lockFile);
/forgerock/opendj2-jel-hg/src/build-tools/windows/
H A Dservice.c435 char lockFile[MAX_PATH]; local
444 sprintf(lockFile, "%s%s", _instanceDir, relativePath);
449 lockFile);
451 fd = _open(lockFile, _O_RDWR);
457 debug("Able to open the lock file '%s'.", lockFile);
466 debug("Able to lock '%s', so the server is not running.", lockFile);
477 debug("Unable to lock '%s', so the server is running.", lockFile);
495 lockFile);
/forgerock/opendj-v3/opendj-server-legacy/src/build-tools/windows/
H A Dservice.c434 char lockFile[MAX_PATH]; local
443 sprintf(lockFile, "%s%s", _instanceDir, relativePath);
448 lockFile);
450 fd = _open(lockFile, _O_RDWR);
456 debug("Able to open the lock file '%s'.", lockFile);
465 debug("Able to lock '%s', so the server is not running.", lockFile);
476 debug("Unable to lock '%s', so the server is running.", lockFile);
494 lockFile);
/forgerock/authenticator-android-v2/gradle/wrapper/
H A Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/gradle/wrapper/ org/gradle/wrapper/Download ...
/forgerock/opendj-b2.6/tests/staf-tests/shared/resource/
H A Dsvnkit.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/tigris/ org/tigris/subversion/ org/tigris/subversion/javahl/ ...
/forgerock/opendj2/tests/staf-tests/shared/resource/
H A Dsvnkit.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/tigris/ org/tigris/subversion/ org/tigris/subversion/javahl/ ...
/forgerock/opendj2.6.2/tests/staf-tests/shared/resource/
H A Dsvnkit.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/tigris/ org/tigris/subversion/ org/tigris/subversion/javahl/ ...
/forgerock/opendj2-jel-hg/tests/staf-tests/shared/resource/
H A Dsvnkit.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/tigris/ org/tigris/subversion/ org/tigris/subversion/javahl/ ...
/forgerock/opendj2-hg/tests/staf-tests/shared/resource/
H A Dsvnkit.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/tigris/ org/tigris/subversion/ org/tigris/subversion/javahl/ ...
/forgerock/opendj-b2.6/ext/svnkit/
H A Dsvnkit.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/LICENSE.txt org/ org/tmatesoft/ org/ ...
/forgerock/opendj2.6.2/ext/svnkit/
H A Dsvnkit.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/LICENSE.txt org/ org/tmatesoft/ org/ ...
/forgerock/opendj2/ext/svnkit/lib/
H A Dsvnkit-1.8.5.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/LICENSE.txt org/ org/tmatesoft/ org/ ...
/forgerock/opendj2-hg/ext/svnkit/lib/
H A Dsvnkit-1.8.5.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/LICENSE.txt org/ org/tmatesoft/ org/ ...

Completed in 69 milliseconds