Home
last modified time | relevance | path

Searched refs:aLock (Results 1 – 25 of 718) sorted by relevance

12345678910>>...29

/dports/lang/python-legacy/Python-2.7.18/Python/
H A Dthread_wince.h71 HANDLE aLock; in PyThread_allocate_lock() local
77 aLock = CreateEvent(NULL, /* Security attributes */ in PyThread_allocate_lock()
84 return (PyThread_type_lock) aLock; in PyThread_allocate_lock()
87 void PyThread_free_lock(PyThread_type_lock aLock) in PyThread_free_lock() argument
89 dprintf(("%ld: PyThread_free_lock(%p) called\n", PyThread_get_thread_ident(),aLock)); in PyThread_free_lock()
91 CloseHandle(aLock); in PyThread_free_lock()
100 int PyThread_acquire_lock(PyThread_type_lock aLock, int waitflag) in PyThread_acquire_lock() argument
108 waitResult = WaitForSingleObject(aLock, (waitflag ? INFINITE : 0)); in PyThread_acquire_lock()
113 waitResult = WaitForSingleObject(aLock, waitflag ? 3000 : 0); in PyThread_acquire_lock()
128 void PyThread_release_lock(PyThread_type_lock aLock) in PyThread_release_lock() argument
[all …]
H A Dthread_os2.h138 if (aLock) { in PyThread_free_lock()
139 _fmutex_close((_fmutex *)aLock); in PyThread_free_lock()
140 free((_fmutex *)aLock); in PyThread_free_lock()
144 free(aLock); in PyThread_free_lock()
166 aLock, in PyThread_acquire_lock()
171 if (aLock && in PyThread_acquire_lock()
213 aLock)); in PyThread_release_lock()
216 if (aLock) in PyThread_release_lock()
217 _fmutex_release((_fmutex *)aLock); in PyThread_release_lock()
222 aLock, in PyThread_release_lock()
[all …]
H A Dthread_nt.h214 PNRMUTEX aLock; in PyThread_allocate_lock() local
220 aLock = AllocNonRecursiveMutex() ; in PyThread_allocate_lock()
222 dprintf(("%ld: PyThread_allocate_lock() -> %p\n", PyThread_get_thread_ident(), aLock)); in PyThread_allocate_lock()
224 return (PyThread_type_lock) aLock; in PyThread_allocate_lock()
228 PyThread_free_lock(PyThread_type_lock aLock) in PyThread_free_lock() argument
230 dprintf(("%ld: PyThread_free_lock(%p) called\n", PyThread_get_thread_ident(),aLock)); in PyThread_free_lock()
232 FreeNonRecursiveMutex(aLock) ; in PyThread_free_lock()
242 PyThread_acquire_lock(PyThread_type_lock aLock, int waitflag) in PyThread_acquire_lock() argument
248 …success = aLock && EnterNonRecursiveMutex((PNRMUTEX) aLock, (waitflag ? INFINITE : 0)) == WAIT_OBJ… in PyThread_acquire_lock()
256 PyThread_release_lock(PyThread_type_lock aLock) in PyThread_release_lock() argument
[all …]
/dports/lang/python27/Python-2.7.18/Python/
H A Dthread_wince.h71 HANDLE aLock; in PyThread_allocate_lock() local
77 aLock = CreateEvent(NULL, /* Security attributes */ in PyThread_allocate_lock()
84 return (PyThread_type_lock) aLock; in PyThread_allocate_lock()
87 void PyThread_free_lock(PyThread_type_lock aLock) in PyThread_free_lock() argument
89 dprintf(("%ld: PyThread_free_lock(%p) called\n", PyThread_get_thread_ident(),aLock)); in PyThread_free_lock()
91 CloseHandle(aLock); in PyThread_free_lock()
100 int PyThread_acquire_lock(PyThread_type_lock aLock, int waitflag) in PyThread_acquire_lock() argument
108 waitResult = WaitForSingleObject(aLock, (waitflag ? INFINITE : 0)); in PyThread_acquire_lock()
113 waitResult = WaitForSingleObject(aLock, waitflag ? 3000 : 0); in PyThread_acquire_lock()
128 void PyThread_release_lock(PyThread_type_lock aLock) in PyThread_release_lock() argument
[all …]
H A Dthread_os2.h138 if (aLock) { in PyThread_free_lock()
139 _fmutex_close((_fmutex *)aLock); in PyThread_free_lock()
140 free((_fmutex *)aLock); in PyThread_free_lock()
144 free(aLock); in PyThread_free_lock()
166 aLock, in PyThread_acquire_lock()
171 if (aLock && in PyThread_acquire_lock()
213 aLock)); in PyThread_release_lock()
216 if (aLock) in PyThread_release_lock()
217 _fmutex_release((_fmutex *)aLock); in PyThread_release_lock()
222 aLock, in PyThread_release_lock()
[all …]
H A Dthread_nt.h214 PNRMUTEX aLock; in PyThread_allocate_lock() local
220 aLock = AllocNonRecursiveMutex() ; in PyThread_allocate_lock()
222 dprintf(("%ld: PyThread_allocate_lock() -> %p\n", PyThread_get_thread_ident(), aLock)); in PyThread_allocate_lock()
224 return (PyThread_type_lock) aLock; in PyThread_allocate_lock()
228 PyThread_free_lock(PyThread_type_lock aLock) in PyThread_free_lock() argument
230 dprintf(("%ld: PyThread_free_lock(%p) called\n", PyThread_get_thread_ident(),aLock)); in PyThread_free_lock()
232 FreeNonRecursiveMutex(aLock) ; in PyThread_free_lock()
242 PyThread_acquire_lock(PyThread_type_lock aLock, int waitflag) in PyThread_acquire_lock() argument
248 …success = aLock && EnterNonRecursiveMutex((PNRMUTEX) aLock, (waitflag ? INFINITE : 0)) == WAIT_OBJ… in PyThread_acquire_lock()
256 PyThread_release_lock(PyThread_type_lock aLock) in PyThread_release_lock() argument
[all …]
/dports/sysutils/uefi-edk2-bhyve-csm/uefi-edk2-aa8d718/AppPkg/Applications/Python/Python-2.7.2/Python/
H A Dthread_wince.h71 HANDLE aLock; in PyThread_allocate_lock() local
77 aLock = CreateEvent(NULL, /* Security attributes */ in PyThread_allocate_lock()
84 return (PyThread_type_lock) aLock; in PyThread_allocate_lock()
87 void PyThread_free_lock(PyThread_type_lock aLock) in PyThread_free_lock() argument
89 dprintf(("%ld: PyThread_free_lock(%p) called\n", PyThread_get_thread_ident(),aLock)); in PyThread_free_lock()
91 CloseHandle(aLock); in PyThread_free_lock()
100 int PyThread_acquire_lock(PyThread_type_lock aLock, int waitflag) in PyThread_acquire_lock() argument
108 waitResult = WaitForSingleObject(aLock, (waitflag ? INFINITE : 0)); in PyThread_acquire_lock()
113 waitResult = WaitForSingleObject(aLock, waitflag ? 3000 : 0); in PyThread_acquire_lock()
128 void PyThread_release_lock(PyThread_type_lock aLock) in PyThread_release_lock() argument
[all …]
H A Dthread_os2.h138 if (aLock) { in PyThread_free_lock()
139 _fmutex_close((_fmutex *)aLock); in PyThread_free_lock()
140 free((_fmutex *)aLock); in PyThread_free_lock()
144 free(aLock); in PyThread_free_lock()
166 aLock, in PyThread_acquire_lock()
171 if (aLock && in PyThread_acquire_lock()
213 aLock)); in PyThread_release_lock()
216 if (aLock) in PyThread_release_lock()
217 _fmutex_release((_fmutex *)aLock); in PyThread_release_lock()
222 aLock, in PyThread_release_lock()
[all …]
H A Dthread_nt.h214 PNRMUTEX aLock; in PyThread_allocate_lock() local
220 aLock = AllocNonRecursiveMutex() ; in PyThread_allocate_lock()
222 dprintf(("%ld: PyThread_allocate_lock() -> %p\n", PyThread_get_thread_ident(), aLock)); in PyThread_allocate_lock()
224 return (PyThread_type_lock) aLock; in PyThread_allocate_lock()
228 PyThread_free_lock(PyThread_type_lock aLock) in PyThread_free_lock() argument
230 dprintf(("%ld: PyThread_free_lock(%p) called\n", PyThread_get_thread_ident(),aLock)); in PyThread_free_lock()
232 FreeNonRecursiveMutex(aLock) ; in PyThread_free_lock()
242 PyThread_acquire_lock(PyThread_type_lock aLock, int waitflag) in PyThread_acquire_lock() argument
248 …success = aLock && EnterNonRecursiveMutex((PNRMUTEX) aLock, (waitflag ? INFINITE : 0)) == WAIT_OBJ… in PyThread_acquire_lock()
256 PyThread_release_lock(PyThread_type_lock aLock) in PyThread_release_lock() argument
[all …]
/dports/databases/mariadb105-client/mariadb-10.5.15/storage/columnstore/columnstore/writeengine/splitter/
H A Dwe_splclient.h123 boost::mutex::scoped_lock aLock(fTxMutex); in getBytesTx()
215 boost::mutex::scoped_lock aLock(fTxMutex); in setBytesTx()
217 aLock.unlock(); in setBytesTx()
221 boost::mutex::scoped_lock aLock(fTxMutex); in updateBytesTx()
223 aLock.unlock(); in updateBytesTx()
245 aLock.lock(); in setStartTime()
291 aLock.unlock(); in resetDbRootVar()
299 aLock.unlock(); in decDbRootVar()
309 aLock.unlock(); in setDataRqstCount()
317 aLock.unlock(); in decDataRqstCount()
[all …]
/dports/databases/mariadb105-server/mariadb-10.5.15/storage/columnstore/columnstore/writeengine/splitter/
H A Dwe_splclient.h123 boost::mutex::scoped_lock aLock(fTxMutex); in getBytesTx()
215 boost::mutex::scoped_lock aLock(fTxMutex); in setBytesTx()
217 aLock.unlock(); in setBytesTx()
221 boost::mutex::scoped_lock aLock(fTxMutex); in updateBytesTx()
223 aLock.unlock(); in updateBytesTx()
245 aLock.lock(); in setStartTime()
291 aLock.unlock(); in resetDbRootVar()
299 aLock.unlock(); in decDbRootVar()
309 aLock.unlock(); in setDataRqstCount()
317 aLock.unlock(); in decDataRqstCount()
[all …]
/dports/lang/python37/Python-3.7.12/Python/
H A Dthread_nt.h247 PNRMUTEX aLock; in PyThread_allocate_lock() local
253 aLock = AllocNonRecursiveMutex() ; in PyThread_allocate_lock()
257 return (PyThread_type_lock) aLock; in PyThread_allocate_lock()
261 PyThread_free_lock(PyThread_type_lock aLock) in PyThread_free_lock() argument
265 FreeNonRecursiveMutex(aLock) ; in PyThread_free_lock()
275 PyThread_acquire_lock_timed(PyThread_type_lock aLock, in PyThread_acquire_lock_timed() argument
296 PyThread_get_thread_ident(), aLock, microseconds)); in PyThread_acquire_lock_timed()
298 if (aLock && EnterNonRecursiveMutex((PNRMUTEX)aLock, in PyThread_acquire_lock_timed()
312 PyThread_acquire_lock(PyThread_type_lock aLock, int waitflag) in PyThread_acquire_lock() argument
318 PyThread_release_lock(PyThread_type_lock aLock) in PyThread_release_lock() argument
[all …]
/dports/databases/py-sqlite3/Python-3.8.12/Python/
H A Dthread_nt.h270 PNRMUTEX aLock; in PyThread_allocate_lock() local
276 aLock = AllocNonRecursiveMutex() ; in PyThread_allocate_lock()
280 return (PyThread_type_lock) aLock; in PyThread_allocate_lock()
284 PyThread_free_lock(PyThread_type_lock aLock) in PyThread_free_lock() argument
288 FreeNonRecursiveMutex(aLock) ; in PyThread_free_lock()
298 PyThread_acquire_lock_timed(PyThread_type_lock aLock, in PyThread_acquire_lock_timed() argument
319 PyThread_get_thread_ident(), aLock, microseconds)); in PyThread_acquire_lock_timed()
321 if (aLock && EnterNonRecursiveMutex((PNRMUTEX)aLock, in PyThread_acquire_lock_timed()
335 PyThread_acquire_lock(PyThread_type_lock aLock, int waitflag) in PyThread_acquire_lock() argument
341 PyThread_release_lock(PyThread_type_lock aLock) in PyThread_release_lock() argument
[all …]
/dports/databases/py-gdbm/Python-3.8.12/Python/
H A Dthread_nt.h270 PNRMUTEX aLock; in PyThread_allocate_lock() local
276 aLock = AllocNonRecursiveMutex() ; in PyThread_allocate_lock()
280 return (PyThread_type_lock) aLock; in PyThread_allocate_lock()
284 PyThread_free_lock(PyThread_type_lock aLock) in PyThread_free_lock() argument
288 FreeNonRecursiveMutex(aLock) ; in PyThread_free_lock()
298 PyThread_acquire_lock_timed(PyThread_type_lock aLock, in PyThread_acquire_lock_timed() argument
319 PyThread_get_thread_ident(), aLock, microseconds)); in PyThread_acquire_lock_timed()
321 if (aLock && EnterNonRecursiveMutex((PNRMUTEX)aLock, in PyThread_acquire_lock_timed()
335 PyThread_acquire_lock(PyThread_type_lock aLock, int waitflag) in PyThread_acquire_lock() argument
341 PyThread_release_lock(PyThread_type_lock aLock) in PyThread_release_lock() argument
[all …]
/dports/lang/python-tools/Python-3.8.12/Python/
H A Dthread_nt.h270 PNRMUTEX aLock; in PyThread_allocate_lock() local
276 aLock = AllocNonRecursiveMutex() ; in PyThread_allocate_lock()
280 return (PyThread_type_lock) aLock; in PyThread_allocate_lock()
284 PyThread_free_lock(PyThread_type_lock aLock) in PyThread_free_lock() argument
288 FreeNonRecursiveMutex(aLock) ; in PyThread_free_lock()
298 PyThread_acquire_lock_timed(PyThread_type_lock aLock, in PyThread_acquire_lock_timed() argument
319 PyThread_get_thread_ident(), aLock, microseconds)); in PyThread_acquire_lock_timed()
321 if (aLock && EnterNonRecursiveMutex((PNRMUTEX)aLock, in PyThread_acquire_lock_timed()
335 PyThread_acquire_lock(PyThread_type_lock aLock, int waitflag) in PyThread_acquire_lock() argument
341 PyThread_release_lock(PyThread_type_lock aLock) in PyThread_release_lock() argument
[all …]
/dports/lang/python310/Python-3.10.1/Python/
H A Dthread_nt.h277 PNRMUTEX aLock; in PyThread_allocate_lock() local
283 aLock = AllocNonRecursiveMutex() ; in PyThread_allocate_lock()
287 return (PyThread_type_lock) aLock; in PyThread_allocate_lock()
291 PyThread_free_lock(PyThread_type_lock aLock) in PyThread_free_lock() argument
295 FreeNonRecursiveMutex(aLock) ; in PyThread_free_lock()
305 PyThread_acquire_lock_timed(PyThread_type_lock aLock, in PyThread_acquire_lock_timed() argument
326 PyThread_get_thread_ident(), aLock, microseconds)); in PyThread_acquire_lock_timed()
328 if (aLock && EnterNonRecursiveMutex((PNRMUTEX)aLock, in PyThread_acquire_lock_timed()
342 PyThread_acquire_lock(PyThread_type_lock aLock, int waitflag) in PyThread_acquire_lock() argument
348 PyThread_release_lock(PyThread_type_lock aLock) in PyThread_release_lock() argument
[all …]
/dports/lang/python311/Python-3.11.0a3/Python/
H A Dthread_nt.h274 PNRMUTEX aLock; in PyThread_allocate_lock() local
280 aLock = AllocNonRecursiveMutex() ; in PyThread_allocate_lock()
284 return (PyThread_type_lock) aLock; in PyThread_allocate_lock()
288 PyThread_free_lock(PyThread_type_lock aLock) in PyThread_free_lock() argument
292 FreeNonRecursiveMutex(aLock) ; in PyThread_free_lock()
307 PyThread_acquire_lock_timed(PyThread_type_lock aLock, in PyThread_acquire_lock_timed() argument
337 PyThread_get_thread_ident(), aLock, microseconds)); in PyThread_acquire_lock_timed()
339 if (aLock && EnterNonRecursiveMutex((PNRMUTEX)aLock, in PyThread_acquire_lock_timed()
353 PyThread_acquire_lock(PyThread_type_lock aLock, int waitflag) in PyThread_acquire_lock() argument
359 PyThread_release_lock(PyThread_type_lock aLock) in PyThread_release_lock() argument
[all …]
/dports/lang/python38/Python-3.8.12/Python/
H A Dthread_nt.h270 PNRMUTEX aLock; in PyThread_allocate_lock() local
276 aLock = AllocNonRecursiveMutex() ; in PyThread_allocate_lock()
280 return (PyThread_type_lock) aLock; in PyThread_allocate_lock()
284 PyThread_free_lock(PyThread_type_lock aLock) in PyThread_free_lock() argument
288 FreeNonRecursiveMutex(aLock) ; in PyThread_free_lock()
298 PyThread_acquire_lock_timed(PyThread_type_lock aLock, in PyThread_acquire_lock_timed() argument
319 PyThread_get_thread_ident(), aLock, microseconds)); in PyThread_acquire_lock_timed()
321 if (aLock && EnterNonRecursiveMutex((PNRMUTEX)aLock, in PyThread_acquire_lock_timed()
335 PyThread_acquire_lock(PyThread_type_lock aLock, int waitflag) in PyThread_acquire_lock() argument
341 PyThread_release_lock(PyThread_type_lock aLock) in PyThread_release_lock() argument
[all …]
/dports/lang/python39/Python-3.9.9/Python/
H A Dthread_nt.h277 PNRMUTEX aLock; in PyThread_allocate_lock() local
283 aLock = AllocNonRecursiveMutex() ; in PyThread_allocate_lock()
287 return (PyThread_type_lock) aLock; in PyThread_allocate_lock()
291 PyThread_free_lock(PyThread_type_lock aLock) in PyThread_free_lock() argument
295 FreeNonRecursiveMutex(aLock) ; in PyThread_free_lock()
305 PyThread_acquire_lock_timed(PyThread_type_lock aLock, in PyThread_acquire_lock_timed() argument
326 PyThread_get_thread_ident(), aLock, microseconds)); in PyThread_acquire_lock_timed()
328 if (aLock && EnterNonRecursiveMutex((PNRMUTEX)aLock, in PyThread_acquire_lock_timed()
342 PyThread_acquire_lock(PyThread_type_lock aLock, int waitflag) in PyThread_acquire_lock() argument
348 PyThread_release_lock(PyThread_type_lock aLock) in PyThread_release_lock() argument
[all …]
/dports/x11-toolkits/py-tkinter/Python-3.8.12/Python/
H A Dthread_nt.h270 PNRMUTEX aLock; in PyThread_allocate_lock() local
276 aLock = AllocNonRecursiveMutex() ; in PyThread_allocate_lock()
280 return (PyThread_type_lock) aLock; in PyThread_allocate_lock()
284 PyThread_free_lock(PyThread_type_lock aLock) in PyThread_free_lock() argument
288 FreeNonRecursiveMutex(aLock) ; in PyThread_free_lock()
298 PyThread_acquire_lock_timed(PyThread_type_lock aLock, in PyThread_acquire_lock_timed() argument
319 PyThread_get_thread_ident(), aLock, microseconds)); in PyThread_acquire_lock_timed()
321 if (aLock && EnterNonRecursiveMutex((PNRMUTEX)aLock, in PyThread_acquire_lock_timed()
335 PyThread_acquire_lock(PyThread_type_lock aLock, int waitflag) in PyThread_acquire_lock() argument
341 PyThread_release_lock(PyThread_type_lock aLock) in PyThread_release_lock() argument
[all …]
/dports/java/java-subversion/subversion-1.14.1/subversion/bindings/javahl/src/org/tigris/subversion/javahl/
H A DLock.java94 Lock(org.apache.subversion.javahl.types.Lock aLock) in Lock() argument
96 this(aLock.getOwner(), aLock.getPath(), aLock.getToken(), in Lock()
97 aLock.getComment(), in Lock()
98 aLock.getCreationDate() == null ? 0 in Lock()
99 : aLock.getCreationDate().getTime() * 1000, in Lock()
100 aLock.getExpirationDate() == null ? 0 in Lock()
101 : aLock.getExpirationDate().getTime() * 1000); in Lock()
/dports/security/subversion-gnome-keyring/subversion-1.14.1/subversion/bindings/javahl/src/org/tigris/subversion/javahl/
H A DLock.java94 Lock(org.apache.subversion.javahl.types.Lock aLock) in Lock() argument
96 this(aLock.getOwner(), aLock.getPath(), aLock.getToken(), in Lock()
97 aLock.getComment(), in Lock()
98 aLock.getCreationDate() == null ? 0 in Lock()
99 : aLock.getCreationDate().getTime() * 1000, in Lock()
100 aLock.getExpirationDate() == null ? 0 in Lock()
101 : aLock.getExpirationDate().getTime() * 1000); in Lock()
/dports/devel/p5-subversion/subversion-1.14.1/subversion/bindings/javahl/src/org/tigris/subversion/javahl/
H A DLock.java94 Lock(org.apache.subversion.javahl.types.Lock aLock) in Lock() argument
96 this(aLock.getOwner(), aLock.getPath(), aLock.getToken(), in Lock()
97 aLock.getComment(), in Lock()
98 aLock.getCreationDate() == null ? 0 in Lock()
99 : aLock.getCreationDate().getTime() * 1000, in Lock()
100 aLock.getExpirationDate() == null ? 0 in Lock()
101 : aLock.getExpirationDate().getTime() * 1000); in Lock()
/dports/devel/py-subversion/subversion-1.14.1/subversion/bindings/javahl/src/org/tigris/subversion/javahl/
H A DLock.java94 Lock(org.apache.subversion.javahl.types.Lock aLock) in Lock() argument
96 this(aLock.getOwner(), aLock.getPath(), aLock.getToken(), in Lock()
97 aLock.getComment(), in Lock()
98 aLock.getCreationDate() == null ? 0 in Lock()
99 : aLock.getCreationDate().getTime() * 1000, in Lock()
100 aLock.getExpirationDate() == null ? 0 in Lock()
101 : aLock.getExpirationDate().getTime() * 1000); in Lock()
/dports/databases/mariadb105-client/mariadb-10.5.15/storage/columnstore/columnstore/writeengine/server/
H A Dwe_cpifeederthread.cpp99 boost::mutex::scoped_lock aLock(fMsgQMutex); in add2MsgQueue() local
103 aLock.unlock(); in add2MsgQueue()
114 boost::mutex::scoped_lock aLock(fMsgQMutex); in feedData2Cpi() local
118 bool aTimedOut = fFeederCond.timed_wait(aLock, boost::posix_time::milliseconds(3000)); in feedData2Cpi()
122 aLock.unlock(); in feedData2Cpi()
129 aLock.unlock(); in feedData2Cpi()
137 aLock.unlock(); in feedData2Cpi()
166 boost::mutex::scoped_lock aLock(fMsgQMutex); in isMsgQueueEmpty() local
168 aLock.unlock(); in isMsgQueueEmpty()

12345678910>>...29