Lines Matching refs:ScriptInterpreterPythonImpl
78 static ScriptInterpreterPythonImpl *GetPythonInterpreter(Debugger &debugger) { in GetPythonInterpreter()
81 return static_cast<ScriptInterpreterPythonImpl *>(script_interpreter); in GetPythonInterpreter()
337 ScriptInterpreterPythonImpl::CreateInstance); in Initialize()
338 ScriptInterpreterPythonImpl::Initialize(); in Initialize()
344 ScriptInterpreterPythonImpl::Locker::Locker( in Locker()
345 ScriptInterpreterPythonImpl *py_interpreter, uint16_t on_entry, in Locker()
359 bool ScriptInterpreterPythonImpl::Locker::DoAcquireLock() { in DoAcquireLock()
375 bool ScriptInterpreterPythonImpl::Locker::DoInitSession(uint16_t on_entry_flags, in DoInitSession()
383 bool ScriptInterpreterPythonImpl::Locker::DoFreeLock() { in DoFreeLock()
392 bool ScriptInterpreterPythonImpl::Locker::DoTearDownSession() { in DoTearDownSession()
399 ScriptInterpreterPythonImpl::Locker::~Locker() { in ~Locker()
405 ScriptInterpreterPythonImpl::ScriptInterpreterPythonImpl(Debugger &debugger) in ScriptInterpreterPythonImpl() function in ScriptInterpreterPythonImpl
464 ScriptInterpreterPythonImpl::~ScriptInterpreterPythonImpl() { in ~ScriptInterpreterPythonImpl()
475 void ScriptInterpreterPythonImpl::IOHandlerActivated(IOHandler &io_handler, in IOHandlerActivated()
504 void ScriptInterpreterPythonImpl::IOHandlerInputComplete(IOHandler &io_handler, in IOHandlerInputComplete()
531 ScriptInterpreterPythonImpl::BreakpointCallbackFunction, baton_sp); in IOHandlerInputComplete()
553 ScriptInterpreterPythonImpl::WatchpointCallbackFunction, baton_sp); in IOHandlerInputComplete()
567 ScriptInterpreterPythonImpl::CreateInstance(Debugger &debugger) { in CreateInstance()
568 return std::make_shared<ScriptInterpreterPythonImpl>(debugger); in CreateInstance()
571 void ScriptInterpreterPythonImpl::LeaveSession() { in LeaveSession()
610 bool ScriptInterpreterPythonImpl::SetStdHandle(FileSP file_sp, in SetStdHandle()
637 bool ScriptInterpreterPythonImpl::EnterSession(uint16_t on_entry_flags, in EnterSession()
720 PythonModule &ScriptInterpreterPythonImpl::GetMainModule() { in GetMainModule()
726 PythonDictionary &ScriptInterpreterPythonImpl::GetSessionDictionary() { in GetSessionDictionary()
744 PythonDictionary &ScriptInterpreterPythonImpl::GetSysModuleDictionary() { in GetSysModuleDictionary()
753 ScriptInterpreterPythonImpl::GetMaxPositionalArgumentsForCallable( in GetMaxPositionalArgumentsForCallable()
794 bool ScriptInterpreterPythonImpl::GetEmbeddedInterpreterModuleObjects() { in GetEmbeddedInterpreterModuleObjects()
815 bool ScriptInterpreterPythonImpl::ExecuteOneLine( in ExecuteOneLine()
907 void ScriptInterpreterPythonImpl::ExecuteInterpreterLoop() { in ExecuteInterpreterLoop()
927 bool ScriptInterpreterPythonImpl::Interrupt() { in Interrupt()
968 bool ScriptInterpreterPythonImpl::ExecuteOneLineWithReturn( in ExecuteOneLineWithReturn()
1092 Status ScriptInterpreterPythonImpl::ExecuteMultipleLines( in ExecuteMultipleLines()
1143 void ScriptInterpreterPythonImpl::CollectDataForBreakpointCommandCallback( in CollectDataForBreakpointCommandCallback()
1151 void ScriptInterpreterPythonImpl::CollectDataForWatchpointCommandCallback( in CollectDataForWatchpointCommandCallback()
1158 Status ScriptInterpreterPythonImpl::SetBreakpointCommandCallbackFunction( in SetBreakpointCommandCallbackFunction()
1200 Status ScriptInterpreterPythonImpl::SetBreakpointCommandCallback( in SetBreakpointCommandCallback()
1213 ScriptInterpreterPythonImpl::BreakpointCallbackFunction, baton_sp); in SetBreakpointCommandCallback()
1217 Status ScriptInterpreterPythonImpl::SetBreakpointCommandCallback( in SetBreakpointCommandCallback()
1223 Status ScriptInterpreterPythonImpl::SetBreakpointCommandCallback( in SetBreakpointCommandCallback()
1240 ScriptInterpreterPythonImpl::BreakpointCallbackFunction, baton_sp); in SetBreakpointCommandCallback()
1247 void ScriptInterpreterPythonImpl::SetWatchpointCommandCallback( in SetWatchpointCommandCallback()
1264 ScriptInterpreterPythonImpl::WatchpointCallbackFunction, baton_sp); in SetWatchpointCommandCallback()
1268 Status ScriptInterpreterPythonImpl::ExportFunctionDefinitionToInterpreter( in ExportFunctionDefinitionToInterpreter()
1279 Status ScriptInterpreterPythonImpl::GenerateFunction(const char *signature, in GenerateFunction()
1336 bool ScriptInterpreterPythonImpl::GenerateTypeScriptFunction( in GenerateTypeScriptFunction()
1363 bool ScriptInterpreterPythonImpl::GenerateScriptAliasFunction( in GenerateScriptAliasFunction()
1387 bool ScriptInterpreterPythonImpl::GenerateTypeSynthClass( in GenerateTypeSynthClass()
1432 ScriptInterpreterPythonImpl::CreateFrameRecognizer(const char *class_name) { in CreateFrameRecognizer()
1444 lldb::ValueObjectListSP ScriptInterpreterPythonImpl::GetRecognizedArguments( in GetRecognizedArguments()
1488 ScriptInterpreterPythonImpl::OSPlugin_CreatePluginObject( in OSPlugin_CreatePluginObject()
1504 StructuredData::DictionarySP ScriptInterpreterPythonImpl::OSPlugin_RegisterInfo( in OSPlugin_RegisterInfo()
1538 StructuredData::ArraySP ScriptInterpreterPythonImpl::OSPlugin_ThreadsInfo( in OSPlugin_ThreadsInfo()
1572 ScriptInterpreterPythonImpl::OSPlugin_RegisterContextData( in OSPlugin_RegisterContextData()
1605 StructuredData::DictionarySP ScriptInterpreterPythonImpl::OSPlugin_CreateThread( in OSPlugin_CreateThread()
1640 StructuredData::ObjectSP ScriptInterpreterPythonImpl::CreateScriptedThreadPlan( in CreateScriptedThreadPlan()
1650 ScriptInterpreterPythonImpl *python_interpreter = in CreateScriptedThreadPlan()
1668 bool ScriptInterpreterPythonImpl::ScriptedThreadPlanExplainsStop( in ScriptedThreadPlanExplainsStop()
1685 bool ScriptInterpreterPythonImpl::ScriptedThreadPlanShouldStop( in ScriptedThreadPlanShouldStop()
1702 bool ScriptInterpreterPythonImpl::ScriptedThreadPlanIsStale( in ScriptedThreadPlanIsStale()
1719 lldb::StateType ScriptInterpreterPythonImpl::ScriptedThreadPlanGetRunState( in ScriptedThreadPlanGetRunState()
1739 ScriptInterpreterPythonImpl::CreateScriptedBreakpointResolver( in CreateScriptedBreakpointResolver()
1750 ScriptInterpreterPythonImpl *python_interpreter = in CreateScriptedBreakpointResolver()
1767 bool ScriptInterpreterPythonImpl::ScriptedBreakpointResolverSearchCallback( in ScriptedBreakpointResolverSearchCallback()
1785 ScriptInterpreterPythonImpl::ScriptedBreakpointResolverSearchDepth( in ScriptedBreakpointResolverSearchDepth()
1806 StructuredData::GenericSP ScriptInterpreterPythonImpl::CreateScriptedStopHook( in CreateScriptedStopHook()
1820 ScriptInterpreterPythonImpl *python_interpreter = in CreateScriptedStopHook()
1839 bool ScriptInterpreterPythonImpl::ScriptedStopHookHandleStop( in ScriptedStopHookHandleStop()
1857 ScriptInterpreterPythonImpl::LoadPluginModule(const FileSpec &file_spec, in LoadPluginModule()
1875 StructuredData::DictionarySP ScriptInterpreterPythonImpl::GetDynamicSettings( in GetDynamicSettings()
1904 ScriptInterpreterPythonImpl::CreateSyntheticScriptedProvider( in CreateSyntheticScriptedProvider()
1919 ScriptInterpreterPythonImpl *python_interpreter = in CreateSyntheticScriptedProvider()
1935 ScriptInterpreterPythonImpl::CreateScriptCommandObject(const char *class_name) { in CreateScriptCommandObject()
1953 bool ScriptInterpreterPythonImpl::GenerateTypeScriptFunction( in GenerateTypeScriptFunction()
1960 bool ScriptInterpreterPythonImpl::GenerateTypeSynthClass( in GenerateTypeSynthClass()
1967 Status ScriptInterpreterPythonImpl::GenerateBreakpointCommandCallbackData( in GenerateBreakpointCommandCallbackData()
1997 bool ScriptInterpreterPythonImpl::GenerateWatchpointCommandCallbackData( in GenerateWatchpointCommandCallbackData()
2019 bool ScriptInterpreterPythonImpl::GetScriptedSummary( in GetScriptedSummary()
2070 bool ScriptInterpreterPythonImpl::FormatterCallbackFunction( in FormatterCallbackFunction()
2078 bool ScriptInterpreterPythonImpl::BreakpointCallbackFunction( in BreakpointCallbackFunction()
2094 ScriptInterpreterPythonImpl *python_interpreter = in BreakpointCallbackFunction()
2143 bool ScriptInterpreterPythonImpl::WatchpointCallbackFunction( in WatchpointCallbackFunction()
2159 ScriptInterpreterPythonImpl *python_interpreter = in WatchpointCallbackFunction()
2189 size_t ScriptInterpreterPythonImpl::CalculateNumChildren( in CalculateNumChildren()
2211 lldb::ValueObjectSP ScriptInterpreterPythonImpl::GetChildAtIndex( in GetChildAtIndex()
2243 int ScriptInterpreterPythonImpl::GetIndexOfChildWithName( in GetIndexOfChildWithName()
2266 bool ScriptInterpreterPythonImpl::UpdateSynthProviderInstance( in UpdateSynthProviderInstance()
2289 bool ScriptInterpreterPythonImpl::MightHaveChildrenSynthProviderInstance( in MightHaveChildrenSynthProviderInstance()
2313 lldb::ValueObjectSP ScriptInterpreterPythonImpl::GetSyntheticValue( in GetSyntheticValue()
2347 ConstString ScriptInterpreterPythonImpl::GetSyntheticTypeName( in GetSyntheticTypeName()
2393 bool ScriptInterpreterPythonImpl::RunScriptFormatKeyword( in RunScriptFormatKeyword()
2418 bool ScriptInterpreterPythonImpl::RunScriptFormatKeyword( in RunScriptFormatKeyword()
2442 bool ScriptInterpreterPythonImpl::RunScriptFormatKeyword( in RunScriptFormatKeyword()
2467 bool ScriptInterpreterPythonImpl::RunScriptFormatKeyword( in RunScriptFormatKeyword()
2491 bool ScriptInterpreterPythonImpl::RunScriptFormatKeyword( in RunScriptFormatKeyword()
2527 bool ScriptInterpreterPythonImpl::LoadScriptingModule( in LoadScriptingModule()
2661 ScriptInterpreterPythonImpl::eScriptReturnTypeBool, &does_contain, exc_options); in LoadScriptingModule()
2711 bool ScriptInterpreterPythonImpl::IsReservedWord(const char *word) { in IsReservedWord()
2737 ScriptInterpreterPythonImpl::SynchronicityHandler::SynchronicityHandler( in SynchronicityHandler()
2747 ScriptInterpreterPythonImpl::SynchronicityHandler::~SynchronicityHandler() { in ~SynchronicityHandler()
2752 bool ScriptInterpreterPythonImpl::RunScriptBasedCommand( in RunScriptBasedCommand()
2797 bool ScriptInterpreterPythonImpl::RunScriptBasedCommand( in RunScriptBasedCommand()
2845 bool ScriptInterpreterPythonImpl::GetDocumentationForItem(const char *item, in GetDocumentationForItem()
2876 bool ScriptInterpreterPythonImpl::GetShortHelpForCommandObject( in GetShortHelpForCommandObject()
2911 uint32_t ScriptInterpreterPythonImpl::GetFlagsForCommandObject( in GetFlagsForCommandObject()
2960 bool ScriptInterpreterPythonImpl::GetLongHelpForCommandObject( in GetLongHelpForCommandObject()
2997 ScriptInterpreterPythonImpl::AcquireInterpreterLock() { in AcquireInterpreterLock()
3004 void ScriptInterpreterPythonImpl::Initialize() { in Initialize()
3055 void ScriptInterpreterPythonImpl::AddToSysPath(AddLocation location, in AddToSysPath()