| /openbsd-src/gnu/llvm/lldb/source/Plugins/ScriptInterpreter/Python/ |
| H A D | ScriptInterpreterPython.cpp | 344 ScriptInterpreterPythonImpl::Locker::Locker( in Locker() function in ScriptInterpreterPythonImpl::Locker 359 bool ScriptInterpreterPythonImpl::Locker::DoAcquireLock() { in DoAcquireLock() 375 bool ScriptInterpreterPythonImpl::Locker::DoInitSession(uint16_t on_entry_flags, in DoInitSession() 383 bool ScriptInterpreterPythonImpl::Locker::DoFreeLock() { in DoFreeLock() 392 bool ScriptInterpreterPythonImpl::Locker::DoTearDownSession() { in DoTearDownSession() 399 ScriptInterpreterPythonImpl::Locker::~Locker() { in ~Locker() 424 Locker locker(this, Locker::AcquireLock, Locker::FreeAcquiredLock); in ScriptInterpreterPythonImpl() 661 if (on_entry_flags & Locker::InitGlobals) { in EnterSession() 694 if (on_entry_flags & Locker::NoSTDIN) { in EnterSession() 760 Locker py_lock(this, Locker::AcquireLock | in GetMaxPositionalArgumentsForCallable() [all …]
|
| H A D | ScriptedPlatformPythonInterface.cpp | 26 using Locker = ScriptInterpreterPythonImpl::Locker; typedef 41 Locker py_lock(&m_interpreter, Locker::AcquireLock | Locker::NoSTDIN, in CreatePluginObject() 42 Locker::FreeLock); in CreatePluginObject()
|
| H A D | ScriptedThreadPythonInterface.cpp | 26 using Locker = ScriptInterpreterPythonImpl::Locker; typedef 41 Locker py_lock(&m_interpreter, Locker::AcquireLock | Locker::NoSTDIN, in CreatePluginObject() 42 Locker::FreeLock); in CreatePluginObject()
|
| H A D | ScriptedProcessPythonInterface.cpp | 28 using Locker = ScriptInterpreterPythonImpl::Locker; typedef 43 Locker py_lock(&m_interpreter, Locker::AcquireLock | Locker::NoSTDIN, in CreatePluginObject() 44 Locker::FreeLock); in CreatePluginObject()
|
| H A D | ScriptedPythonInterface.h | 44 using Locker = ScriptInterpreterPythonImpl::Locker; in Dispatch() local 54 Locker py_lock(&m_interpreter, Locker::AcquireLock | Locker::NoSTDIN, in Dispatch() 55 Locker::FreeLock); in Dispatch()
|
| H A D | ScriptInterpreterPythonImpl.h | 301 class Locker : public ScriptInterpreterLocker { 317 Locker(ScriptInterpreterPythonImpl *py_interpreter, 323 ~Locker() override; 445 ScriptInterpreterPythonImpl::Locker locker( in Run() 447 ScriptInterpreterPythonImpl::Locker::AcquireLock | in Run() 448 ScriptInterpreterPythonImpl::Locker::InitSession | in Run() 449 ScriptInterpreterPythonImpl::Locker::InitGlobals, in Run() 450 ScriptInterpreterPythonImpl::Locker::FreeAcquiredLock | in Run() 451 ScriptInterpreterPythonImpl::Locker::TearDownSession); in Run()
|
| /openbsd-src/gnu/llvm/lldb/tools/debugserver/source/ |
| H A D | PThreadMutex.cpp | 19 PThreadMutex::Locker::Locker(PThreadMutex &m, const char *function, in Locker() function in PThreadMutex::Locker 26 PThreadMutex::Locker::Locker(PThreadMutex *m, const char *function, in Locker() function in PThreadMutex::Locker 33 PThreadMutex::Locker::Locker(pthread_mutex_t *mutex, const char *function, in Locker() function in PThreadMutex::Locker 40 PThreadMutex::Locker::~Locker() { Unlock(); } in ~Locker() 42 void PThreadMutex::Locker::Lock() { in Lock() 58 void PThreadMutex::Locker::Unlock() { in Unlock()
|
| H A D | PThreadMutex.h | 24 PThreadMutex::Locker var(mutex, __FUNCTION__, __FILE__, __LINE__) 27 #define PTHREAD_MUTEX_LOCKER(var, mutex) PThreadMutex::Locker var(mutex) 32 class Locker { 36 Locker(PThreadMutex &m, const char *function, const char *file, int line); 37 Locker(PThreadMutex *m, const char *function, const char *file, int line); 38 Locker(pthread_mutex_t *mutex, const char *function, const char *file, 40 ~Locker(); 45 Locker(PThreadMutex &m) : m_pMutex(m.Mutex()) { Lock(); } 47 Locker(PThreadMutex *m) : m_pMutex(m ? m->Mutex() : NULL) { Lock(); } 49 Locker(pthread_mutex_t *mutex) : m_pMutex(mutex) { Lock(); } [all …]
|
| H A D | RNBRemote.cpp | 780 PThreadMutex::Locker locker(m_mutex); in GetPacketPayload() 1011 PThreadMutex::Locker locker(m_mutex); in CommDataReceived()
|
| /openbsd-src/gnu/llvm/lldb/examples/interposing/darwin/fd_interposing/ |
| H A D | FDInterposing.cpp | 251 class Locker { class 253 Locker(pthread_mutex_t *mutex_ptr) : m_mutex_ptr(mutex_ptr) { in Locker() function in fd_interposing::Locker 258 Locker(pthread_mutex_t *mutex_ptr, bool &lock_acquired) : m_mutex_ptr(NULL) { in Locker() function in fd_interposing::Locker 264 ~Locker() { in ~Locker() 530 Locker locker(&g_mutex); in socket$__interposed__() 558 Locker locker(&g_mutex); in socketpair$__interposed__() 583 Locker locker(&g_mutex); in open$__interposed__() 613 Locker locker(&g_mutex); in open$NOCANCEL$__interposed__() 635 Locker locker(&g_mutex); in __open_extended$__interposed__() 656 Locker locker(&g_mutex); in kqueue$__interposed__() [all …]
|
| /openbsd-src/gnu/llvm/lldb/include/lldb/Host/ |
| H A D | LockFileBase.h | 33 using Locker = std::function<Status(const uint64_t, const uint64_t)>; 47 Status DoLock(const Locker &locker, const uint64_t start, const uint64_t len);
|
| /openbsd-src/gnu/llvm/lldb/source/Host/common/ |
| H A D | LockFileBase.cpp | 62 Status LockFileBase::DoLock(const Locker &locker, const uint64_t start, in DoLock()
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/X86/ |
| H A D | X86InstrKL.td | 16 // Key Locker instructions
|
| H A D | X86.td | 297 "Support Key Locker kl Instructions", 300 "Support Key Locker wide Instructions",
|
| H A D | X86InstrInfo.td | 3243 // Key Locker instructions
|
| /openbsd-src/gnu/usr.bin/perl/plan9/ |
| H A D | config_sh.sample | 19 Locker=''
|
| /openbsd-src/gnu/usr.bin/perl/win32/ |
| H A D | config.vc | 7 Locker=''
|
| H A D | config.gc | 7 Locker=''
|
| /openbsd-src/gnu/usr.bin/cvs/doc/ |
| H A D | cvs.info-9 | 358 * Locker keyword: Keyword list.
|
| H A D | cvs.info-7 | 121 $Locker: $
|
| H A D | cvs.info-4 | 1050 `$Locker: $'
|
| H A D | ChangeLog | 694 $Locker and -kkvl, refer to cvs admin -l.
|
| H A D | cvs.texinfo | 6757 @cindex Locker keyword 6758 @item $@asis{Locker}$ 10406 $@asis{}Locker: harry $
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/IR/ |
| H A D | IntrinsicsX86.td | 5258 // Key Locker
|
| /openbsd-src/games/fortune/datfiles/ |
| H A D | fortunes | 13516 -- Frederick Locker-Lampson
|