|
| | ScriptInterpreterNone (Debugger &debugger) |
| | ~ScriptInterpreterNone () override |
| bool | ExecuteOneLine (llvm::StringRef command, CommandReturnObject *result, const ExecuteScriptOptions &options=ExecuteScriptOptions()) override |
| void | ExecuteInterpreterLoop () override |
| llvm::StringRef | GetPluginName () override |
| | ScriptInterpreter (Debugger &debugger, lldb::ScriptLanguage script_lang) |
| virtual StructuredData::DictionarySP | GetInterpreterInfo () |
| virtual llvm::Expected< FileSpec > | GenerateExtensionTemplate (const std::string &name, std::vector< ExtensionTemplateRequest > &extensions, bool generate_non_abstract_methods, std::string output_file) |
| | ~ScriptInterpreter () override=default |
| virtual bool | Interrupt () |
| virtual bool | ExecuteOneLineWithReturn (llvm::StringRef in_string, ScriptReturnType return_type, void *ret_value, const ExecuteScriptOptions &options=ExecuteScriptOptions()) |
| virtual Status | ExecuteMultipleLines (const char *in_string, const ExecuteScriptOptions &options=ExecuteScriptOptions()) |
| virtual Status | ExportFunctionDefinitionToInterpreter (StringList &function_def) |
| virtual Status | GenerateBreakpointCommandCallbackData (StringList &input, std::string &output, bool has_extra_args, bool is_callback) |
| virtual bool | GenerateWatchpointCommandCallbackData (StringList &input, std::string &output, bool is_callback) |
| virtual bool | GenerateTypeScriptFunction (const char *oneliner, std::string &output, const void *name_token=nullptr) |
| virtual bool | GenerateTypeScriptFunction (StringList &input, std::string &output, const void *name_token=nullptr) |
| virtual bool | GenerateScriptAliasFunction (StringList &input, std::string &output) |
| virtual bool | GenerateTypeSynthClass (StringList &input, std::string &output, const void *name_token=nullptr) |
| virtual bool | GenerateTypeSynthClass (const char *oneliner, std::string &output, const void *name_token=nullptr) |
| virtual StructuredData::ObjectSP | LoadPluginModule (const FileSpec &file_spec, lldb_private::Status &error) |
| virtual StructuredData::DictionarySP | GetDynamicSettings (StructuredData::ObjectSP plugin_module_sp, Target *target, const char *setting_name, lldb_private::Status &error) |
| virtual Status | GenerateFunction (const char *signature, const StringList &input, bool is_callback) |
| virtual void | CollectDataForBreakpointCommandCallback (std::vector< std::reference_wrapper< BreakpointOptions > > &options, CommandReturnObject &result) |
| virtual void | CollectDataForWatchpointCommandCallback (WatchpointOptions *wp_options, CommandReturnObject &result) |
| Status | SetBreakpointCommandCallback (std::vector< std::reference_wrapper< BreakpointOptions > > &bp_options_vec, const char *callback_text) |
| | Set the specified text as the callback for the breakpoint.
|
| virtual Status | SetBreakpointCommandCallback (BreakpointOptions &bp_options, const char *callback_text, bool is_callback) |
| virtual Status | SetBreakpointCommandCallback (BreakpointOptions &bp_options, std::unique_ptr< BreakpointOptions::CommandData > &data_up) |
| | This one is for deserialization:
|
| Status | SetBreakpointCommandCallbackFunction (std::vector< std::reference_wrapper< BreakpointOptions > > &bp_options_vec, const char *function_name, StructuredData::ObjectSP extra_args_sp) |
| virtual Status | SetBreakpointCommandCallbackFunction (BreakpointOptions &bp_options, const char *function_name, StructuredData::ObjectSP extra_args_sp) |
| | Set a script function as the callback for the breakpoint.
|
| virtual void | SetWatchpointCommandCallback (WatchpointOptions *wp_options, const char *user_input, bool is_callback) |
| | Set a one-liner as the callback for the watchpoint.
|
| virtual bool | GetScriptedSummary (const char *function_name, lldb::ValueObjectSP valobj, StructuredData::ObjectSP &callee_wrapper_sp, const TypeSummaryOptions &options, std::string &retval) |
| virtual bool | FormatterCallbackFunction (const char *function_name, lldb::TypeImplSP type_impl_sp) |
| virtual void | Clear () |
| virtual bool | RunScriptBasedCommand (const char *impl_function, llvm::StringRef args, ScriptedCommandSynchronicity synchronicity, lldb_private::CommandReturnObject &cmd_retobj, Status &error, const lldb_private::ExecutionContext &exe_ctx) |
| virtual bool | RunScriptFormatKeyword (const char *impl_function, Process *process, std::string &output, Status &error) |
| virtual bool | RunScriptFormatKeyword (const char *impl_function, Thread *thread, std::string &output, Status &error) |
| virtual bool | RunScriptFormatKeyword (const char *impl_function, Target *target, std::string &output, Status &error) |
| virtual bool | RunScriptFormatKeyword (const char *impl_function, StackFrame *frame, std::string &output, Status &error) |
| virtual bool | RunScriptFormatKeyword (const char *impl_function, ValueObject *value, std::string &output, Status &error) |
| virtual bool | GetDocumentationForItem (const char *item, std::string &dest) |
| virtual bool | CheckObjectExists (const char *name) |
| virtual bool | LoadScriptingModule (const char *filename, const LoadScriptOptions &options, lldb_private::Status &error, StructuredData::ObjectSP *module_sp=nullptr, FileSpec extra_search_dir={}, lldb::TargetSP loaded_into_target_sp={}) |
| virtual bool | IsReservedWord (const char *word) |
| virtual std::unique_ptr< ScriptInterpreterLocker > | AcquireInterpreterLock () |
| const char * | GetScriptInterpreterPtyName () |
| virtual llvm::Expected< unsigned > | GetMaxPositionalArgumentsForCallable (const llvm::StringRef &callable_name) |
| virtual llvm::Expected< std::string > | ExtensionToImportPath (lldb::ScriptedExtension extension) |
| lldb::ScriptLanguage | GetLanguage () |
| virtual lldb::ScriptedProcessInterfaceUP | CreateScriptedProcessInterface () |
| virtual lldb::ScriptedThreadInterfaceSP | CreateScriptedThreadInterface () |
| virtual lldb::ScriptedFrameInterfaceSP | CreateScriptedFrameInterface () |
| virtual lldb::ScriptedFrameProviderInterfaceSP | CreateScriptedFrameProviderInterface () |
| virtual lldb::ScriptedThreadPlanInterfaceSP | CreateScriptedThreadPlanInterface () |
| virtual lldb::OperatingSystemInterfaceSP | CreateOperatingSystemInterface () |
| virtual lldb::ScriptedPlatformInterfaceUP | GetScriptedPlatformInterface () |
| virtual lldb::ScriptedHookInterfaceSP | CreateScriptedHookInterface () |
| virtual lldb::ScriptedBreakpointInterfaceSP | CreateScriptedBreakpointInterface () |
| virtual lldb::ScriptedStackFrameRecognizerInterfaceSP | CreateScriptedStackFrameRecognizerInterface () |
| virtual lldb::ScriptedCommandInterfaceSP | CreateScriptedCommandInterface () |
| virtual lldb::ScriptedStringSummaryInterfaceSP | CreateScriptedStringSummaryInterface () |
| virtual lldb::ScriptedSyntheticChildrenInterfaceSP | CreateScriptedSyntheticChildrenInterface () |
| virtual StructuredData::ObjectSP | CreateStructuredDataFromScriptObject (ScriptObject obj) |
| virtual SanitizedScriptingModuleName | GetSanitizedScriptingModuleName (llvm::StringRef name) |
| Debugger & | GetDebugger () |
| | Get the debugger associated with this script interpreter.
|
| const Debugger & | GetDebugger () const |
| | PluginInterface ()=default |
| virtual | ~PluginInterface ()=default |
| | PluginInterface (const PluginInterface &)=delete |
| PluginInterface & | operator= (const PluginInterface &)=delete |
Definition at line 16 of file ScriptInterpreterNone.h.