Lines Matching refs:ScriptInterpreterPythonImpl
82 static ScriptInterpreterPythonImpl *GetPythonInterpreter(Debugger &debugger) { in GetPythonInterpreter()
85 return static_cast<ScriptInterpreterPythonImpl *>(script_interpreter); in GetPythonInterpreter()
358 ScriptInterpreterPythonImpl::CreateInstance); in Initialize()
359 ScriptInterpreterPythonImpl::Initialize(); in Initialize()
365 ScriptInterpreterPythonImpl::Locker::Locker( in Locker()
366 ScriptInterpreterPythonImpl *py_interpreter, uint16_t on_entry, in Locker()
380 bool ScriptInterpreterPythonImpl::Locker::DoAcquireLock() { in DoAcquireLock()
396 bool ScriptInterpreterPythonImpl::Locker::DoInitSession(uint16_t on_entry_flags, in DoInitSession()
404 bool ScriptInterpreterPythonImpl::Locker::DoFreeLock() { in DoFreeLock()
413 bool ScriptInterpreterPythonImpl::Locker::DoTearDownSession() { in DoTearDownSession()
420 ScriptInterpreterPythonImpl::Locker::~Locker() { in ~Locker()
426 ScriptInterpreterPythonImpl::ScriptInterpreterPythonImpl(Debugger &debugger) in ScriptInterpreterPythonImpl() function in ScriptInterpreterPythonImpl
481 ScriptInterpreterPythonImpl::~ScriptInterpreterPythonImpl() { in ~ScriptInterpreterPythonImpl()
492 void ScriptInterpreterPythonImpl::IOHandlerActivated(IOHandler &io_handler, in IOHandlerActivated()
521 void ScriptInterpreterPythonImpl::IOHandlerInputComplete(IOHandler &io_handler, in IOHandlerInputComplete()
548 ScriptInterpreterPythonImpl::BreakpointCallbackFunction, baton_sp); in IOHandlerInputComplete()
571 ScriptInterpreterPythonImpl::WatchpointCallbackFunction, baton_sp); in IOHandlerInputComplete()
585 ScriptInterpreterPythonImpl::CreateInstance(Debugger &debugger) { in CreateInstance()
586 return std::make_shared<ScriptInterpreterPythonImpl>(debugger); in CreateInstance()
589 void ScriptInterpreterPythonImpl::LeaveSession() { in LeaveSession()
624 bool ScriptInterpreterPythonImpl::SetStdHandle(FileSP file_sp, in SetStdHandle()
651 bool ScriptInterpreterPythonImpl::EnterSession(uint16_t on_entry_flags, in EnterSession()
734 PythonModule &ScriptInterpreterPythonImpl::GetMainModule() { in GetMainModule()
740 PythonDictionary &ScriptInterpreterPythonImpl::GetSessionDictionary() { in GetSessionDictionary()
758 PythonDictionary &ScriptInterpreterPythonImpl::GetSysModuleDictionary() { in GetSysModuleDictionary()
767 ScriptInterpreterPythonImpl::GetMaxPositionalArgumentsForCallable( in GetMaxPositionalArgumentsForCallable()
808 bool ScriptInterpreterPythonImpl::GetEmbeddedInterpreterModuleObjects() { in GetEmbeddedInterpreterModuleObjects()
829 bool ScriptInterpreterPythonImpl::ExecuteOneLine( in ExecuteOneLine()
921 void ScriptInterpreterPythonImpl::ExecuteInterpreterLoop() { in ExecuteInterpreterLoop()
941 bool ScriptInterpreterPythonImpl::Interrupt() { in Interrupt()
982 bool ScriptInterpreterPythonImpl::ExecuteOneLineWithReturn( in ExecuteOneLineWithReturn()
1106 Status ScriptInterpreterPythonImpl::ExecuteMultipleLines( in ExecuteMultipleLines()
1157 void ScriptInterpreterPythonImpl::CollectDataForBreakpointCommandCallback( in CollectDataForBreakpointCommandCallback()
1165 void ScriptInterpreterPythonImpl::CollectDataForWatchpointCommandCallback( in CollectDataForWatchpointCommandCallback()
1172 Status ScriptInterpreterPythonImpl::SetBreakpointCommandCallbackFunction( in SetBreakpointCommandCallbackFunction()
1214 Status ScriptInterpreterPythonImpl::SetBreakpointCommandCallback( in SetBreakpointCommandCallback()
1228 ScriptInterpreterPythonImpl::BreakpointCallbackFunction, baton_sp); in SetBreakpointCommandCallback()
1232 Status ScriptInterpreterPythonImpl::SetBreakpointCommandCallback( in SetBreakpointCommandCallback()
1240 Status ScriptInterpreterPythonImpl::SetBreakpointCommandCallback( in SetBreakpointCommandCallback()
1258 ScriptInterpreterPythonImpl::BreakpointCallbackFunction, baton_sp); in SetBreakpointCommandCallback()
1265 void ScriptInterpreterPythonImpl::SetWatchpointCommandCallback( in SetWatchpointCommandCallback()
1283 ScriptInterpreterPythonImpl::WatchpointCallbackFunction, baton_sp); in SetWatchpointCommandCallback()
1287 Status ScriptInterpreterPythonImpl::ExportFunctionDefinitionToInterpreter( in ExportFunctionDefinitionToInterpreter()
1298 Status ScriptInterpreterPythonImpl::GenerateFunction(const char *signature, in GenerateFunction()
1377 bool ScriptInterpreterPythonImpl::GenerateTypeScriptFunction( in GenerateTypeScriptFunction()
1405 bool ScriptInterpreterPythonImpl::GenerateScriptAliasFunction( in GenerateScriptAliasFunction()
1430 bool ScriptInterpreterPythonImpl::GenerateTypeSynthClass( in GenerateTypeSynthClass()
1475 ScriptInterpreterPythonImpl::CreateFrameRecognizer(const char *class_name) { in CreateFrameRecognizer()
1487 lldb::ValueObjectListSP ScriptInterpreterPythonImpl::GetRecognizedArguments( in GetRecognizedArguments()
1532 ScriptInterpreterPythonImpl::CreateScriptedProcessInterface() { in CreateScriptedProcessInterface()
1537 ScriptInterpreterPythonImpl::CreateScriptedThreadInterface() { in CreateScriptedThreadInterface()
1542 ScriptInterpreterPythonImpl::CreateScriptedThreadPlanInterface() { in CreateScriptedThreadPlanInterface()
1547 ScriptInterpreterPythonImpl::CreateOperatingSystemInterface() { in CreateOperatingSystemInterface()
1552 ScriptInterpreterPythonImpl::CreateStructuredDataFromScriptObject( in CreateStructuredDataFromScriptObject()
1563 ScriptInterpreterPythonImpl::CreateScriptedBreakpointResolver( in CreateScriptedBreakpointResolver()
1574 ScriptInterpreterPythonImpl *python_interpreter = in CreateScriptedBreakpointResolver()
1592 bool ScriptInterpreterPythonImpl::ScriptedBreakpointResolverSearchCallback( in ScriptedBreakpointResolverSearchCallback()
1610 ScriptInterpreterPythonImpl::ScriptedBreakpointResolverSearchDepth( in ScriptedBreakpointResolverSearchDepth()
1631 StructuredData::GenericSP ScriptInterpreterPythonImpl::CreateScriptedStopHook( in CreateScriptedStopHook()
1645 ScriptInterpreterPythonImpl *python_interpreter = in CreateScriptedStopHook()
1664 bool ScriptInterpreterPythonImpl::ScriptedStopHookHandleStop( in ScriptedStopHookHandleStop()
1682 ScriptInterpreterPythonImpl::LoadPluginModule(const FileSpec &file_spec, in LoadPluginModule()
1700 StructuredData::DictionarySP ScriptInterpreterPythonImpl::GetDynamicSettings( in GetDynamicSettings()
1729 ScriptInterpreterPythonImpl::CreateSyntheticScriptedProvider( in CreateSyntheticScriptedProvider()
1744 ScriptInterpreterPythonImpl *python_interpreter = in CreateSyntheticScriptedProvider()
1760 ScriptInterpreterPythonImpl::CreateScriptCommandObject(const char *class_name) { in CreateScriptCommandObject()
1781 bool ScriptInterpreterPythonImpl::GenerateTypeScriptFunction( in GenerateTypeScriptFunction()
1788 bool ScriptInterpreterPythonImpl::GenerateTypeSynthClass( in GenerateTypeSynthClass()
1795 Status ScriptInterpreterPythonImpl::GenerateBreakpointCommandCallbackData( in GenerateBreakpointCommandCallbackData()
1825 bool ScriptInterpreterPythonImpl::GenerateWatchpointCommandCallbackData( in GenerateWatchpointCommandCallbackData()
1847 bool ScriptInterpreterPythonImpl::GetScriptedSummary( in GetScriptedSummary()
1898 bool ScriptInterpreterPythonImpl::FormatterCallbackFunction( in FormatterCallbackFunction()
1906 bool ScriptInterpreterPythonImpl::BreakpointCallbackFunction( in BreakpointCallbackFunction()
1922 ScriptInterpreterPythonImpl *python_interpreter = in BreakpointCallbackFunction()
1971 bool ScriptInterpreterPythonImpl::WatchpointCallbackFunction( in WatchpointCallbackFunction()
1987 ScriptInterpreterPythonImpl *python_interpreter = in WatchpointCallbackFunction()
2017 size_t ScriptInterpreterPythonImpl::CalculateNumChildren( in CalculateNumChildren()
2039 lldb::ValueObjectSP ScriptInterpreterPythonImpl::GetChildAtIndex( in GetChildAtIndex()
2073 int ScriptInterpreterPythonImpl::GetIndexOfChildWithName( in GetIndexOfChildWithName()
2096 bool ScriptInterpreterPythonImpl::UpdateSynthProviderInstance( in UpdateSynthProviderInstance()
2120 bool ScriptInterpreterPythonImpl::MightHaveChildrenSynthProviderInstance( in MightHaveChildrenSynthProviderInstance()
2144 lldb::ValueObjectSP ScriptInterpreterPythonImpl::GetSyntheticValue( in GetSyntheticValue()
2179 ConstString ScriptInterpreterPythonImpl::GetSyntheticTypeName( in GetSyntheticTypeName()
2212 bool ScriptInterpreterPythonImpl::RunScriptFormatKeyword( in RunScriptFormatKeyword()
2237 bool ScriptInterpreterPythonImpl::RunScriptFormatKeyword( in RunScriptFormatKeyword()
2262 bool ScriptInterpreterPythonImpl::RunScriptFormatKeyword( in RunScriptFormatKeyword()
2287 bool ScriptInterpreterPythonImpl::RunScriptFormatKeyword( in RunScriptFormatKeyword()
2312 bool ScriptInterpreterPythonImpl::RunScriptFormatKeyword( in RunScriptFormatKeyword()
2348 bool ScriptInterpreterPythonImpl::LoadScriptingModule( in LoadScriptingModule()
2479 ScriptInterpreterPythonImpl::eScriptReturnTypeBool, &does_contain, exc_options); in LoadScriptingModule()
2529 bool ScriptInterpreterPythonImpl::IsReservedWord(const char *word) { in IsReservedWord()
2555 ScriptInterpreterPythonImpl::SynchronicityHandler::SynchronicityHandler( in SynchronicityHandler()
2565 ScriptInterpreterPythonImpl::SynchronicityHandler::~SynchronicityHandler() { in ~SynchronicityHandler()
2570 bool ScriptInterpreterPythonImpl::RunScriptBasedCommand( in RunScriptBasedCommand()
2615 bool ScriptInterpreterPythonImpl::RunScriptBasedCommand( in RunScriptBasedCommand()
2660 bool ScriptInterpreterPythonImpl::RunScriptBasedParsedCommand( in RunScriptBasedParsedCommand()
2712 ScriptInterpreterPythonImpl::GetRepeatCommandForScriptedCommand( in GetRepeatCommandForScriptedCommand()
2742 bool ScriptInterpreterPythonImpl::GetDocumentationForItem(const char *item, in GetDocumentationForItem()
2773 bool ScriptInterpreterPythonImpl::GetShortHelpForCommandObject( in GetShortHelpForCommandObject()
2808 uint32_t ScriptInterpreterPythonImpl::GetFlagsForCommandObject( in GetFlagsForCommandObject()
2858 ScriptInterpreterPythonImpl::GetOptionsForCommandObject( in GetOptionsForCommandObject()
2906 ScriptInterpreterPythonImpl::GetArgumentsForCommandObject( in GetArgumentsForCommandObject()
2954 ScriptInterpreterPythonImpl::OptionParsingStartedForCommandObject( in OptionParsingStartedForCommandObject()
3002 ScriptInterpreterPythonImpl::SetOptionValueForCommandObject( in SetOptionValueForCommandObject()
3056 bool ScriptInterpreterPythonImpl::GetLongHelpForCommandObject( in GetLongHelpForCommandObject()
3093 ScriptInterpreterPythonImpl::AcquireInterpreterLock() { in AcquireInterpreterLock()
3100 void ScriptInterpreterPythonImpl::Initialize() { in Initialize()
3151 void ScriptInterpreterPythonImpl::AddToSysPath(AddLocation location, in AddToSysPath()