|
LLDB mainline
|
#include <ScriptedPythonInterface.h>
Classes | |
| struct | AbstractMethodCheckerPayload |
Public Types | |
| enum class | AbstractMethodCheckerCases { eNotImplemented , eNotAllocated , eNotCallable , eUnknownArgumentCount , eInvalidArgumentCount , eValid } |
Public Member Functions | |
| ScriptedPythonInterface (ScriptInterpreterPythonImpl &interpreter) | |
| ~ScriptedPythonInterface () override=default | |
| llvm::Expected< FileSpec > | GetScriptedModulePath () override |
| llvm::Expected< std::map< llvm::StringLiteral, AbstractMethodCheckerPayload > > | CheckAbstractMethodImplementation (const python::PythonObject &obj_class) const |
| template<typename... Args> | |
| llvm::Expected< StructuredData::GenericSP > | CreatePluginObject (const ScriptedMetadata &scripted_metadata, StructuredData::Generic *script_obj, Args... args) |
| template<typename T = StructuredData::ObjectSP, typename... Args> | |
| T | CallStaticMethod (llvm::StringRef class_name, llvm::StringRef method_name, Status &error, Args &&...args) |
| Call a static method on a Python class without creating an instance. | |
| Public Member Functions inherited from lldb_private::ScriptedInterface | |
| ScriptedInterface ()=default | |
| virtual | ~ScriptedInterface ()=default |
| StructuredData::GenericSP | GetScriptObjectInstance () |
| const std::optional< ScriptedMetadata > & | GetScriptedMetadata () const |
| virtual bool | UserCanRunDirectly () const |
| Whether the user can invoke this extension directly, the way a scripted command can. | |
| virtual llvm::SmallVector< AbstractMethodRequirement > | GetAbstractMethodRequirements () const =0 |
| llvm::SmallVector< llvm::StringLiteral > const | GetAbstractMethods () const |
Static Protected Member Functions | |
| static std::string | ExtractPythonError (llvm::Error error) |
| Extract detailed error message including Python backtrace if available. | |
| template<std::size_t N, typename Tuple, typename Fn, std::size_t... I> | |
| static void | ApplyPrefixImpl (Tuple &&t, Fn &&fn, std::index_sequence< I... >) |
| template<std::size_t N, typename Tuple, typename Fn> | |
| static void | ApplyPrefix (Tuple &&t, Fn &&fn) |
| template<typename Tuple, std::size_t... Is, typename Fn> | |
| static void | CallWithArity (size_t call_arity, Tuple &&t, std::index_sequence< Is... >, Fn &&fn) |
Protected Attributes | |
| ScriptInterpreterPythonImpl & | m_interpreter |
| Protected Attributes inherited from lldb_private::ScriptedInterface | |
| StructuredData::GenericSP | m_object_instance_sp |
| std::optional< ScriptedMetadata > | m_scripted_metadata |
Additional Inherited Members | |
| Static Public Member Functions inherited from lldb_private::ScriptedInterface | |
| template<typename Ret> | |
| static Ret | ErrorWithMessage (llvm::StringRef caller_name, llvm::StringRef user_msg, Status &error, LLDBLog log_category=LLDBLog::Process) |
| template<typename T = StructuredData::ObjectSP> | |
| static bool | CheckStructuredDataObject (llvm::StringRef caller, T obj, Status &error) |
| static bool | CreateInstance (lldb::ScriptLanguage language, ScriptedInterfaceUsages usages) |
Definition at line 29 of file ScriptedPythonInterface.h.
|
strong |
| Enumerator | |
|---|---|
| eNotImplemented | |
| eNotAllocated | |
| eNotCallable | |
| eUnknownArgumentCount | |
| eInvalidArgumentCount | |
| eValid | |
Definition at line 34 of file ScriptedPythonInterface.h.
| ScriptedPythonInterface::ScriptedPythonInterface | ( | ScriptInterpreterPythonImpl & | interpreter | ) |
Definition at line 27 of file ScriptedPythonInterface.cpp.
References m_interpreter, and lldb_private::ScriptedInterface::ScriptedInterface().
Referenced by lldb_private::ScriptedBreakpointPythonInterface::ScriptedBreakpointPythonInterface(), lldb_private::ScriptedCommandPythonInterface::ScriptedCommandPythonInterface(), lldb_private::ScriptedFrameProviderPythonInterface::ScriptedFrameProviderPythonInterface(), lldb_private::ScriptedFramePythonInterface::ScriptedFramePythonInterface(), lldb_private::ScriptedHookPythonInterface::ScriptedHookPythonInterface(), lldb_private::ScriptedPlatformPythonInterface::ScriptedPlatformPythonInterface(), lldb_private::ScriptedProcessPythonInterface::ScriptedProcessPythonInterface(), lldb_private::ScriptedStackFrameRecognizerPythonInterface::ScriptedStackFrameRecognizerPythonInterface(), lldb_private::ScriptedStringSummaryPythonInterface::ScriptedStringSummaryPythonInterface(), lldb_private::ScriptedSyntheticChildrenPythonInterface::ScriptedSyntheticChildrenPythonInterface(), lldb_private::ScriptedThreadPlanPythonInterface::ScriptedThreadPlanPythonInterface(), and lldb_private::ScriptedThreadPythonInterface::ScriptedThreadPythonInterface().
|
overridedefault |
|
inlinestaticprotected |
Definition at line 810 of file ScriptedPythonInterface.h.
References ApplyPrefixImpl().
Referenced by CallWithArity().
|
inlinestaticprotected |
Definition at line 805 of file ScriptedPythonInterface.h.
Referenced by ApplyPrefix().
|
inline |
Call a static method on a Python class without creating an instance.
This method resolves a Python class by name and calls a static method on it, returning the result. This is useful for calling class-level methods that don't require an instance.
| class_name | The fully-qualified name of the Python class. |
| method_name | The name of the static method to call. |
| error | Output parameter to receive error information if the call fails. |
| args | Arguments to pass to the static method. |
Definition at line 406 of file ScriptedPythonInterface.h.
References lldb_private::ScriptInterpreterPythonImpl::Locker::AcquireLock, error(), lldb_private::ScriptedInterface::ErrorWithMessage(), ExtractPythonError(), ExtractValueFromPythonObject(), lldb_private::ScriptInterpreterPythonImpl::Locker::FreeLock, lldb_private::Status::FromErrorString(), lldb_private::PolicyStack::Get(), m_interpreter, lldb_private::ScriptInterpreterPythonImpl::Locker::NoSTDIN, lldb_private::PolicyStack::PushScriptedExtensionCall(), ReassignPtrsOrRefsArgs(), TransformArgs(), and lldb_private::ScriptedInterface::UserCanRunDirectly().
Referenced by lldb_private::ScriptedFrameProviderPythonInterface::AppliesToThread(), lldb_private::ScriptedFrameProviderPythonInterface::GetDescription(), and lldb_private::ScriptedFrameProviderPythonInterface::GetPriority().
|
inlinestaticprotected |
Definition at line 819 of file ScriptedPythonInterface.h.
References ApplyPrefix().
Referenced by Dispatch().
|
inline |
Definition at line 115 of file ScriptedPythonInterface.h.
References lldb_private::python::PythonObject::AsType(), eInvalidArgumentCount, eNotAllocated, eNotCallable, eNotImplemented, eUnknownArgumentCount, eValid, ExtractPythonError(), lldb_private::ScriptedInterface::GetAbstractMethodRequirements(), lldb_private::python::PythonObject::GetAttributeValue(), lldb_private::python::PythonObject::HasAttribute(), and SET_CASE_AND_CONTINUE.
Referenced by CreatePluginObject().
|
inline |
Definition at line 174 of file ScriptedPythonInterface.h.
References lldb_private::ScriptInterpreterPythonImpl::Locker::AcquireLock, CheckAbstractMethodImplementation(), eInvalidArgumentCount, eNotAllocated, eNotCallable, eNotImplemented, error(), eUnknownArgumentCount, eValid, ExtractPythonError(), lldb_private::ScriptInterpreterPythonImpl::Locker::FreeLock, lldb_private::Status::FromError(), lldb_private::PolicyStack::Get(), lldb_private::ScriptedMetadata::GetClassName(), lldb_private::GetLog(), lldb_private::StructuredData::Generic::GetValue(), LLDB_LOG, m_interpreter, lldb_private::ScriptedInterface::m_object_instance_sp, lldb_private::ScriptedInterface::m_scripted_metadata, lldb_private::ScriptInterpreterPythonImpl::Locker::NoSTDIN, lldb_private::PolicyStack::PushScriptedExtensionCall(), lldb_private::Script, TransformArgs(), and lldb_private::ScriptedInterface::UserCanRunDirectly().
Referenced by lldb_private::OperatingSystemPythonInterface::CreatePluginObject(), lldb_private::ScriptedBreakpointPythonInterface::CreatePluginObject(), lldb_private::ScriptedCommandPythonInterface::CreatePluginObject(), lldb_private::ScriptedFrameProviderPythonInterface::CreatePluginObject(), lldb_private::ScriptedFramePythonInterface::CreatePluginObject(), lldb_private::ScriptedHookPythonInterface::CreatePluginObject(), lldb_private::ScriptedPlatformPythonInterface::CreatePluginObject(), lldb_private::ScriptedProcessPythonInterface::CreatePluginObject(), lldb_private::ScriptedStackFrameRecognizerPythonInterface::CreatePluginObject(), lldb_private::ScriptedStringSummaryPythonInterface::CreatePluginObject(), lldb_private::ScriptedSyntheticChildrenPythonInterface::CreatePluginObject(), lldb_private::ScriptedThreadPlanPythonInterface::CreatePluginObject(), and lldb_private::ScriptedThreadPythonInterface::CreatePluginObject().
|
inlineprotected |
Definition at line 536 of file ScriptedPythonInterface.h.
References lldb_private::ScriptInterpreterPythonImpl::Locker::AcquireLock, CallWithArity(), error(), lldb_private::ScriptedInterface::ErrorWithMessage(), ExtractPythonError(), ExtractValueFromPythonObject(), lldb_private::ScriptInterpreterPythonImpl::Locker::FreeLock, lldb_private::Status::FromErrorString(), lldb_private::PolicyStack::Get(), lldb_private::ScriptedInterface::GetAbstractMethods(), lldb_private::ScriptedInterface::GetScriptedMetadata(), m_interpreter, lldb_private::ScriptedInterface::m_object_instance_sp, lldb_private::ScriptInterpreterPythonImpl::Locker::NoSTDIN, lldb_private::PolicyStack::PushScriptedExtensionCall(), ReassignPtrsOrRefsArgs(), TransformArgs(), and lldb_private::ScriptedInterface::UserCanRunDirectly().
Referenced by lldb_private::ScriptedSyntheticChildrenPythonInterface::CalculateNumChildren(), lldb_private::ScriptedProcessPythonInterface::CreateBreakpoint(), lldb_private::OperatingSystemPythonInterface::CreateThread(), lldb_private::OperatingSystemPythonInterface::DoesPluginReportAllThreads(), lldb_private::ScriptedThreadPlanPythonInterface::ExplainsStop(), lldb_private::ScriptedCommandPythonInterface::GetArgumentsDefinition(), lldb_private::ScriptedProcessPythonInterface::GetCapabilities(), lldb_private::ScriptedSyntheticChildrenPythonInterface::GetChildAtIndex(), lldb_private::ScriptedBreakpointPythonInterface::GetDepth(), lldb_private::ScriptedFramePythonInterface::GetDisplayFunctionName(), lldb_private::ScriptedStackFrameRecognizerPythonInterface::GetException(), lldb_private::ScriptedThreadPythonInterface::GetExtendedInfo(), lldb_private::ScriptedCommandPythonInterface::GetFlags(), lldb_private::ScriptedFrameProviderPythonInterface::GetFrameAtIndex(), lldb_private::ScriptedFramePythonInterface::GetFunctionName(), lldb_private::ScriptedFramePythonInterface::GetID(), lldb_private::ScriptedSyntheticChildrenPythonInterface::GetIndexOfChildWithName(), lldb_private::ScriptedProcessPythonInterface::GetLoadedImages(), lldb_private::ScriptedBreakpointPythonInterface::GetLocationDescription(), lldb_private::ScriptedCommandPythonInterface::GetLongHelp(), lldb_private::ScriptedProcessPythonInterface::GetMemoryRegionContainingAddress(), lldb_private::ScriptedProcessPythonInterface::GetMetadata(), lldb_private::ScriptedThreadPythonInterface::GetName(), lldb_private::ScriptedCommandPythonInterface::GetOptionsDefinition(), lldb_private::ScriptedFramePythonInterface::GetPC(), lldb_private::ScriptedProcessPythonInterface::GetProcessID(), lldb_private::ScriptedPlatformPythonInterface::GetProcessInfo(), lldb_private::ScriptedThreadPythonInterface::GetQueue(), lldb_private::ScriptedStackFrameRecognizerPythonInterface::GetRecognizedArguments(), lldb_private::ScriptedFramePythonInterface::GetRegisterContext(), lldb_private::ScriptedThreadPythonInterface::GetRegisterContext(), lldb_private::OperatingSystemPythonInterface::GetRegisterContextForTID(), lldb_private::ScriptedFramePythonInterface::GetRegisterInfo(), lldb_private::ScriptedThreadPythonInterface::GetRegisterInfo(), lldb_private::ScriptedCommandPythonInterface::GetRepeatCommand(), lldb_private::ScriptedThreadPlanPythonInterface::GetRunState(), lldb_private::ScriptedThreadPythonInterface::GetScriptedFramePluginName(), lldb_private::ScriptedProcessPythonInterface::GetScriptedThreadPluginName(), lldb_private::ScriptedBreakpointPythonInterface::GetShortHelp(), lldb_private::ScriptedCommandPythonInterface::GetShortHelp(), lldb_private::ScriptedThreadPythonInterface::GetStackFrames(), lldb_private::ScriptedThreadPythonInterface::GetState(), GetStatusFromMethod(), lldb_private::ScriptedStackFrameRecognizerPythonInterface::GetStopDescription(), lldb_private::ScriptedThreadPlanPythonInterface::GetStopDescription(), lldb_private::ScriptedThreadPythonInterface::GetStopReason(), lldb_private::ScriptedStringSummaryPythonInterface::GetSummary(), lldb_private::ScriptedFramePythonInterface::GetSymbolContext(), lldb_private::ScriptedSyntheticChildrenPythonInterface::GetSyntheticTypeName(), lldb_private::ScriptedSyntheticChildrenPythonInterface::GetSyntheticValue(), lldb_private::ScriptedThreadPythonInterface::GetThreadID(), lldb_private::OperatingSystemPythonInterface::GetThreadInfo(), lldb_private::ScriptedProcessPythonInterface::GetThreadsInfo(), lldb_private::ScriptedFramePythonInterface::GetValueObjectForVariableExpression(), lldb_private::ScriptedFramePythonInterface::GetValueTypeForVariable(), lldb_private::ScriptedFramePythonInterface::GetVariables(), lldb_private::ScriptedCommandPythonInterface::HandleArgumentCompletion(), lldb_private::ScriptedHookPythonInterface::HandleModuleLoaded(), lldb_private::ScriptedHookPythonInterface::HandleModuleUnloaded(), lldb_private::ScriptedCommandPythonInterface::HandleOptionArgumentCompletion(), lldb_private::ScriptedHookPythonInterface::HandleStop(), lldb_private::ScriptedProcessPythonInterface::IsAlive(), lldb_private::ScriptedFramePythonInterface::IsArtificial(), lldb_private::ScriptedFramePythonInterface::IsHidden(), lldb_private::ScriptedFramePythonInterface::IsInlined(), lldb_private::ScriptedThreadPlanPythonInterface::IsStale(), lldb_private::ScriptedPlatformPythonInterface::ListProcesses(), lldb_private::ScriptedSyntheticChildrenPythonInterface::MightHaveChildren(), lldb_private::ScriptedCommandPythonInterface::OptionParsingStarted(), lldb_private::ScriptedBreakpointPythonInterface::OverridesResolver(), lldb_private::ScriptedProcessPythonInterface::ReadMemoryAtAddress(), lldb_private::ScriptedBreakpointPythonInterface::ResolverCallback(), lldb_private::ScriptedCommandPythonInterface::RunParsedCommand(), lldb_private::ScriptedCommandPythonInterface::RunRawCommand(), lldb_private::ScriptedStackFrameRecognizerPythonInterface::SelectMostRelevantFrame(), lldb_private::ScriptedBreakpointPythonInterface::SetBreakpoint(), lldb_private::ScriptedCommandPythonInterface::SetOptionValue(), lldb_private::ScriptedStackFrameRecognizerPythonInterface::ShouldHide(), lldb_private::ScriptedThreadPlanPythonInterface::ShouldStop(), lldb_private::ScriptedSyntheticChildrenPythonInterface::Update(), lldb_private::ScriptedBreakpointPythonInterface::WasHit(), and lldb_private::ScriptedProcessPythonInterface::WriteMemoryAtAddress().
|
inlinestaticprotected |
Extract detailed error message including Python backtrace if available.
This helper processes llvm::Error objects that may contain PythonException instances, extracting full Python backtraces when available.
| error | The llvm::Error to extract information from. |
Definition at line 521 of file ScriptedPythonInterface.h.
References error(), and lldb_private::python::PythonException::ReadBacktrace().
Referenced by CallStaticMethod(), CheckAbstractMethodImplementation(), CreatePluginObject(), and Dispatch().
|
protected |
|
protected |
|
protected |
Definition at line 72 of file ScriptedPythonInterface.cpp.
References error(), lldb_private::Status::FromErrorString(), lldb_private::python::PythonObject::get(), lldb_private::ScriptInterpreterBridge::GetCommandReturnObject(), and lldb_private::python::LLDBSWIGPython_CastPyObjectToSBCommandReturnObject().
|
protected |
|
inlineprotected |
Definition at line 531 of file ScriptedPythonInterface.h.
References lldb_private::python::PythonObject::CreateStructuredObject(), and error().
Referenced by CallStaticMethod(), Dispatch(), ReverseTransform(), ScriptedPythonInterface::ExtractValueFromPythonObject< lldb::BreakpointLocationSP >(), lldb_private::ScriptedPythonInterface::ExtractValueFromPythonObject< lldb::BreakpointLocationSP >(), ScriptedPythonInterface::ExtractValueFromPythonObject< lldb::BreakpointSP >(), lldb_private::ScriptedPythonInterface::ExtractValueFromPythonObject< lldb::BreakpointSP >(), ScriptedPythonInterface::ExtractValueFromPythonObject< lldb::DataExtractorSP >(), lldb_private::ScriptedPythonInterface::ExtractValueFromPythonObject< lldb::DataExtractorSP >(), ScriptedPythonInterface::ExtractValueFromPythonObject< lldb::DebuggerSP >(), lldb_private::ScriptedPythonInterface::ExtractValueFromPythonObject< lldb::DebuggerSP >(), ScriptedPythonInterface::ExtractValueFromPythonObject< lldb::DescriptionLevel >(), lldb_private::ScriptedPythonInterface::ExtractValueFromPythonObject< lldb::DescriptionLevel >(), ScriptedPythonInterface::ExtractValueFromPythonObject< lldb::ExecutionContextRefSP >(), lldb_private::ScriptedPythonInterface::ExtractValueFromPythonObject< lldb::ExecutionContextRefSP >(), ScriptedPythonInterface::ExtractValueFromPythonObject< lldb::ProcessAttachInfoSP >(), lldb_private::ScriptedPythonInterface::ExtractValueFromPythonObject< lldb::ProcessAttachInfoSP >(), ScriptedPythonInterface::ExtractValueFromPythonObject< lldb::ProcessLaunchInfoSP >(), lldb_private::ScriptedPythonInterface::ExtractValueFromPythonObject< lldb::ProcessLaunchInfoSP >(), ScriptedPythonInterface::ExtractValueFromPythonObject< lldb::StackFrameListSP >(), lldb_private::ScriptedPythonInterface::ExtractValueFromPythonObject< lldb::StackFrameListSP >(), ScriptedPythonInterface::ExtractValueFromPythonObject< lldb::StackFrameSP >(), lldb_private::ScriptedPythonInterface::ExtractValueFromPythonObject< lldb::StackFrameSP >(), ScriptedPythonInterface::ExtractValueFromPythonObject< lldb::StreamSP >(), lldb_private::ScriptedPythonInterface::ExtractValueFromPythonObject< lldb::StreamSP >(), ScriptedPythonInterface::ExtractValueFromPythonObject< lldb::TargetSP >(), lldb_private::ScriptedPythonInterface::ExtractValueFromPythonObject< lldb::TargetSP >(), ScriptedPythonInterface::ExtractValueFromPythonObject< lldb::ThreadSP >(), lldb_private::ScriptedPythonInterface::ExtractValueFromPythonObject< lldb::ThreadSP >(), ScriptedPythonInterface::ExtractValueFromPythonObject< lldb::ValueObjectListSP >(), lldb_private::ScriptedPythonInterface::ExtractValueFromPythonObject< lldb::ValueObjectListSP >(), ScriptedPythonInterface::ExtractValueFromPythonObject< lldb::ValueObjectSP >(), lldb_private::ScriptedPythonInterface::ExtractValueFromPythonObject< lldb::ValueObjectSP >(), ScriptedPythonInterface::ExtractValueFromPythonObject< StructuredData::ArraySP >(), lldb_private::ScriptedPythonInterface::ExtractValueFromPythonObject< StructuredData::ArraySP >(), ScriptedPythonInterface::ExtractValueFromPythonObject< StructuredData::DictionarySP >(), and lldb_private::ScriptedPythonInterface::ExtractValueFromPythonObject< StructuredData::DictionarySP >().
|
protected |
References error().
|
protected |
References error().
|
protected |
References error().
|
inlineprotected |
Definition at line 872 of file ScriptedPythonInterface.h.
|
inlineprotected |
Definition at line 868 of file ScriptedPythonInterface.h.
|
inlineprotected |
Definition at line 863 of file ScriptedPythonInterface.h.
References FormatArgs().
Referenced by FormatArgs().
|
inlineoverridevirtual |
Reimplemented from lldb_private::ScriptedInterface.
Definition at line 58 of file ScriptedPythonInterface.h.
References lldb_private::ScriptInterpreterPythonImpl::Locker::AcquireLock, lldb_private::ScriptInterpreterPythonImpl::Locker::FreeLock, m_interpreter, lldb_private::ScriptedInterface::m_object_instance_sp, and lldb_private::ScriptInterpreterPythonImpl::Locker::NoSTDIN.
|
inlineprotected |
Definition at line 637 of file ScriptedPythonInterface.h.
References Dispatch(), and error().
Referenced by lldb_private::ScriptedProcessPythonInterface::Attach(), lldb_private::ScriptedPlatformPythonInterface::AttachToProcess(), lldb_private::ScriptedPlatformPythonInterface::KillProcess(), lldb_private::ScriptedProcessPythonInterface::Launch(), lldb_private::ScriptedPlatformPythonInterface::LaunchProcess(), and lldb_private::ScriptedProcessPythonInterface::Resume().
|
inlineprotected |
Definition at line 853 of file ScriptedPythonInterface.h.
References ReassignPtrsOrRefsArgs().
|
inlineprotected |
Definition at line 842 of file ScriptedPythonInterface.h.
References error(), and TransformBack().
Referenced by CallStaticMethod(), Dispatch(), and ReassignPtrsOrRefsArgs().
|
inlineprotected |
Definition at line 779 of file ScriptedPythonInterface.h.
References lldb_private::python::Borrowed, error(), lldb_private::Status::FromErrorStringWithFormatv(), lldb_private::python::PythonObject::get(), lldb_private::python::PythonBoolean::GetValue(), and lldb_private::python::PythonObject::IsValid().
|
inlineprotected |
Definition at line 776 of file ScriptedPythonInterface.h.
References error().
|
inlineprotected |
Definition at line 766 of file ScriptedPythonInterface.h.
References error(), and ExtractValueFromPythonObject().
|
inlineprotected |
Definition at line 761 of file ScriptedPythonInterface.h.
References error().
Referenced by TransformBack().
|
inlineprotected |
Definition at line 649 of file ScriptedPythonInterface.h.
|
inlineprotected |
Definition at line 752 of file ScriptedPythonInterface.h.
References lldb_private::python::SWIGBridge::ToSWIGWrapper().
|
inlineprotected |
Definition at line 654 of file ScriptedPythonInterface.h.
References lldb_private::Status::Clone(), and lldb_private::python::SWIGBridge::ToSWIGWrapper().
|
inlineprotected |
Definition at line 744 of file ScriptedPythonInterface.h.
References lldb_private::python::PythonList::AppendItem(), and lldb_private::python::Empty.
|
inlineprotected |
Definition at line 662 of file ScriptedPythonInterface.h.
References lldb_private::python::SWIGBridge::ToSWIGWrapper().
|
inlineprotected |
Definition at line 716 of file ScriptedPythonInterface.h.
References lldb_private::python::SWIGBridge::ToSWIGWrapper().
|
inlineprotected |
Definition at line 756 of file ScriptedPythonInterface.h.
References lldb_private::python::SWIGBridge::ToSWIGWrapper().
|
inlineprotected |
Definition at line 712 of file ScriptedPythonInterface.h.
References lldb_private::python::SWIGBridge::ToSWIGWrapper().
|
inlineprotected |
Definition at line 684 of file ScriptedPythonInterface.h.
References lldb_private::python::SWIGBridge::ToSWIGWrapper().
|
inlineprotected |
Definition at line 680 of file ScriptedPythonInterface.h.
References lldb_private::python::SWIGBridge::ToSWIGWrapper().
|
inlineprotected |
Definition at line 728 of file ScriptedPythonInterface.h.
References lldb_private::python::SWIGBridge::ToSWIGWrapper().
|
inlineprotected |
Definition at line 740 of file ScriptedPythonInterface.h.
References lldb_private::python::SWIGBridge::ToSWIGWrapper().
|
inlineprotected |
Definition at line 732 of file ScriptedPythonInterface.h.
References lldb_private::python::SWIGBridge::ToSWIGWrapper().
|
inlineprotected |
Definition at line 672 of file ScriptedPythonInterface.h.
References lldb_private::python::SWIGBridge::ToSWIGWrapper().
|
inlineprotected |
Definition at line 704 of file ScriptedPythonInterface.h.
References lldb_private::python::SWIGBridge::ToSWIGWrapper().
|
inlineprotected |
Definition at line 708 of file ScriptedPythonInterface.h.
References lldb_private::python::SWIGBridge::ToSWIGWrapper().
|
inlineprotected |
Definition at line 688 of file ScriptedPythonInterface.h.
References lldb_private::python::SWIGBridge::ToSWIGWrapper().
|
inlineprotected |
Definition at line 696 of file ScriptedPythonInterface.h.
References lldb_private::python::SWIGBridge::ToSWIGWrapper().
|
inlineprotected |
Definition at line 724 of file ScriptedPythonInterface.h.
References lldb_private::python::SWIGBridge::ToSWIGWrapper().
|
inlineprotected |
Definition at line 720 of file ScriptedPythonInterface.h.
References lldb_private::python::SWIGBridge::ToSWIGWrapper().
|
inlineprotected |
Definition at line 676 of file ScriptedPythonInterface.h.
References lldb_private::python::SWIGBridge::ToSWIGWrapper().
|
inlineprotected |
Definition at line 700 of file ScriptedPythonInterface.h.
References lldb_private::python::SWIGBridge::ToSWIGWrapper().
|
inlineprotected |
Definition at line 692 of file ScriptedPythonInterface.h.
References lldb_private::python::SWIGBridge::ToSWIGWrapper().
|
inlineprotected |
Definition at line 736 of file ScriptedPythonInterface.h.
References lldb_private::python::SWIGBridge::ToSWIGWrapper().
|
inlineprotected |
Definition at line 658 of file ScriptedPythonInterface.h.
References lldb_private::python::SWIGBridge::ToSWIGWrapper().
|
inlineprotected |
Definition at line 668 of file ScriptedPythonInterface.h.
References Transform().
|
inlineprotected |
Definition at line 644 of file ScriptedPythonInterface.h.
Referenced by Transform(), and TransformTuple().
|
inlineprotected |
Definition at line 799 of file ScriptedPythonInterface.h.
References TransformTuple().
Referenced by CallStaticMethod(), CreatePluginObject(), and Dispatch().
|
inlineprotected |
Definition at line 837 of file ScriptedPythonInterface.h.
References error().
|
inlineprotected |
Definition at line 828 of file ScriptedPythonInterface.h.
References error(), and ReverseTransform().
Referenced by ReassignPtrsOrRefsArgs().
|
inlineprotected |
Definition at line 791 of file ScriptedPythonInterface.h.
References Transform().
Referenced by TransformArgs().
|
protected |
Definition at line 875 of file ScriptedPythonInterface.h.
Referenced by CallStaticMethod(), CreatePluginObject(), lldb_private::ScriptedSyntheticChildrenPythonInterface::CreatePluginObject(), lldb_private::ScriptedThreadPythonInterface::CreateScriptedFrameInterface(), lldb_private::ScriptedProcessPythonInterface::CreateScriptedThreadInterface(), Dispatch(), GetScriptedModulePath(), lldb_private::ScriptedHookPythonInterface::GetSupportedMethods(), lldb_private::ScriptedCommandPythonInterface::RunParsedCommand(), lldb_private::ScriptedCommandPythonInterface::RunRawCommand(), and ScriptedPythonInterface().