| /llvm-project-15.0.7/lldb/source/Plugins/ScriptInterpreter/Python/ |
| H A D | ScriptInterpreterPython.cpp | 420 Locker locker(this, Locker::AcquireLock, Locker::FreeAcquiredLock); in ScriptInterpreterPythonImpl() 1434 Locker py_lock(this, Locker::AcquireLock | Locker::NoSTDIN, Locker::FreeLock); in CreateFrameRecognizer() 1445 Locker py_lock(this, Locker::AcquireLock | Locker::NoSTDIN, Locker::FreeLock); in GetRecognizedArguments() 1494 Locker py_lock(this, Locker::AcquireLock | Locker::NoSTDIN, Locker::FreeLock); in OSPlugin_CreatePluginObject() 1504 Locker py_lock(this, Locker::AcquireLock | Locker::NoSTDIN, Locker::FreeLock); in OSPlugin_RegisterInfo() 1559 Locker py_lock(this, Locker::AcquireLock | Locker::NoSTDIN, Locker::FreeLock); in OSPlugin_ThreadsInfo() 1616 Locker py_lock(this, Locker::AcquireLock | Locker::NoSTDIN, Locker::FreeLock); in OSPlugin_RegisterContextData() 1673 Locker py_lock(this, Locker::AcquireLock | Locker::NoSTDIN, Locker::FreeLock); in OSPlugin_CreateThread() 2979 Locker py_lock(this, Locker::AcquireLock | Locker::NoSTDIN, Locker::FreeLock); in GetShortHelpForCommandObject() 3035 Locker py_lock(this, Locker::AcquireLock | Locker::NoSTDIN, Locker::FreeLock); in GetFlagsForCommandObject() [all …]
|
| H A D | ScriptedThreadPythonInterface.cpp | 25 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 | ScriptedPythonInterface.h | 39 using Locker = ScriptInterpreterPythonImpl::Locker; in Dispatch() local 49 Locker py_lock(&m_interpreter, Locker::AcquireLock | Locker::NoSTDIN, in Dispatch() 50 Locker::FreeLock); in Dispatch()
|
| H A D | ScriptedProcessPythonInterface.cpp | 26 using Locker = ScriptInterpreterPythonImpl::Locker; typedef 42 Locker py_lock(&m_interpreter, Locker::AcquireLock | Locker::NoSTDIN, in CreatePluginObject() 43 Locker::FreeLock); in CreatePluginObject()
|
| H A D | ScriptInterpreterPythonImpl.h | 298 class Locker : public ScriptInterpreterLocker { 314 Locker(ScriptInterpreterPythonImpl *py_interpreter, 320 ~Locker() override; 442 ScriptInterpreterPythonImpl::Locker locker( in Run() 444 ScriptInterpreterPythonImpl::Locker::AcquireLock | in Run() 445 ScriptInterpreterPythonImpl::Locker::InitSession | in Run() 446 ScriptInterpreterPythonImpl::Locker::InitGlobals, in Run() 447 ScriptInterpreterPythonImpl::Locker::FreeAcquiredLock | in Run() 448 ScriptInterpreterPythonImpl::Locker::TearDownSession); in Run()
|
| /llvm-project-15.0.7/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 | 776 PThreadMutex::Locker locker(m_mutex); in GetPacketPayload() 1007 PThreadMutex::Locker locker(m_mutex); in CommDataReceived()
|
| /llvm-project-15.0.7/lldb/examples/interposing/darwin/fd_interposing/ |
| H A D | FDInterposing.cpp | 251 class Locker { class 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__() 674 Locker locker(&g_mutex); in shm_open$__interposed__() 695 Locker locker(&g_mutex); in accept$__interposed__() [all …]
|
| /llvm-project-15.0.7/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);
|
| /llvm-project-15.0.7/lldb/source/Host/common/ |
| H A D | LockFileBase.cpp | 62 Status LockFileBase::DoLock(const Locker &locker, const uint64_t start, in DoLock()
|
| /llvm-project-15.0.7/llvm/lib/Target/X86/ |
| H A D | X86InstrKL.td | 16 // Key Locker instructions
|
| H A D | X86.td | 276 "Support Key Locker kl Instructions", 279 "Support Key Locker wide Instructions",
|
| H A D | X86InstrInfo.td | 3170 // Key Locker instructions
|
| /llvm-project-15.0.7/llvm/include/llvm/IR/ |
| H A D | IntrinsicsX86.td | 4968 // Key Locker
|