Home
last modified time | relevance | path

Searched refs:Locker (Results 1 – 4 of 4) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPython.cpp1518 Locker py_lock(this, Locker::AcquireLock | Locker::NoSTDIN, in CreateFrameRecognizer()
1530 Locker py_lock(this, Locker::AcquireLock | Locker::NoSTDIN, Locker::FreeLock); in GetRecognizedArguments()
1577 Locker py_lock(this, Locker::AcquireLock | Locker::NoSTDIN, in OSPlugin_CreatePluginObject()
1588 Locker py_lock(this, Locker::AcquireLock | Locker::NoSTDIN, Locker::FreeLock); in OSPlugin_RegisterInfo()
1643 Locker py_lock(this, Locker::AcquireLock | Locker::NoSTDIN, Locker::FreeLock); in OSPlugin_ThreadsInfo()
1728 Locker py_lock(this, Locker::AcquireLock | Locker::NoSTDIN, Locker::FreeLock); in OSPlugin_RegisterContextData()
1785 Locker py_lock(this, Locker::AcquireLock | Locker::NoSTDIN, Locker::FreeLock); in OSPlugin_CreateThread()
2206 Locker py_lock(this, Locker::AcquireLock | Locker::InitSession | in GetScriptedSummary()
3063 Locker py_lock(this, Locker::AcquireLock | Locker::NoSTDIN, Locker::FreeLock); in GetShortHelpForCommandObject()
3118 Locker py_lock(this, Locker::AcquireLock | Locker::NoSTDIN, Locker::FreeLock); in GetFlagsForCommandObject()
[all …]
H A DScriptInterpreterPython.h491 class Locker : public ScriptInterpreterLocker {
507 Locker(ScriptInterpreterPython *py_interpreter = nullptr,
512 ~Locker() override;
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Host/
H A DLockFileBase.h34 using Locker = std::function<Status(const uint64_t, const uint64_t)>;
48 Status DoLock(const Locker &locker, const uint64_t start, const uint64_t len);
/freebsd-12.1/contrib/llvm/tools/lldb/source/Host/common/
H A DLockFileBase.cpp66 Status LockFileBase::DoLock(const Locker &locker, const uint64_t start, in DoLock()