Lines Matching refs:ScriptInterpreterPythonImpl
80 static ScriptInterpreterPythonImpl *GetPythonInterpreter(Debugger &debugger) { in GetPythonInterpreter()
83 return static_cast<ScriptInterpreterPythonImpl *>(script_interpreter); in GetPythonInterpreter()
352 ScriptInterpreterPythonImpl::CreateInstance); in Initialize()
353 ScriptInterpreterPythonImpl::Initialize(); in Initialize()
359 ScriptInterpreterPythonImpl::Locker::Locker( in Locker()
360 ScriptInterpreterPythonImpl *py_interpreter, uint16_t on_entry, in Locker()
374 bool ScriptInterpreterPythonImpl::Locker::DoAcquireLock() { in DoAcquireLock()
390 bool ScriptInterpreterPythonImpl::Locker::DoInitSession(uint16_t on_entry_flags, in DoInitSession()
398 bool ScriptInterpreterPythonImpl::Locker::DoFreeLock() { in DoFreeLock()
407 bool ScriptInterpreterPythonImpl::Locker::DoTearDownSession() { in DoTearDownSession()
414 ScriptInterpreterPythonImpl::Locker::~Locker() { in ~Locker()
420 ScriptInterpreterPythonImpl::ScriptInterpreterPythonImpl(Debugger &debugger) in ScriptInterpreterPythonImpl() function in ScriptInterpreterPythonImpl
475 ScriptInterpreterPythonImpl::~ScriptInterpreterPythonImpl() { in ~ScriptInterpreterPythonImpl()
486 void ScriptInterpreterPythonImpl::IOHandlerActivated(IOHandler &io_handler, in IOHandlerActivated()
515 void ScriptInterpreterPythonImpl::IOHandlerInputComplete(IOHandler &io_handler, in IOHandlerInputComplete()
543 ScriptInterpreterPythonImpl::BreakpointCallbackFunction, baton_sp); in IOHandlerInputComplete()
566 ScriptInterpreterPythonImpl::WatchpointCallbackFunction, baton_sp); in IOHandlerInputComplete()
580 ScriptInterpreterPythonImpl::CreateInstance(Debugger &debugger) { in CreateInstance()
581 return std::make_shared<ScriptInterpreterPythonImpl>(debugger); in CreateInstance()
584 void ScriptInterpreterPythonImpl::LeaveSession() { in LeaveSession()
619 bool ScriptInterpreterPythonImpl::SetStdHandle(FileSP file_sp, in SetStdHandle()
646 bool ScriptInterpreterPythonImpl::EnterSession(uint16_t on_entry_flags, in EnterSession()
729 PythonModule &ScriptInterpreterPythonImpl::GetMainModule() { in GetMainModule()
735 PythonDictionary &ScriptInterpreterPythonImpl::GetSessionDictionary() { in GetSessionDictionary()
753 PythonDictionary &ScriptInterpreterPythonImpl::GetSysModuleDictionary() { in GetSysModuleDictionary()
762 ScriptInterpreterPythonImpl::GetMaxPositionalArgumentsForCallable( in GetMaxPositionalArgumentsForCallable()
803 bool ScriptInterpreterPythonImpl::GetEmbeddedInterpreterModuleObjects() { in GetEmbeddedInterpreterModuleObjects()
824 bool ScriptInterpreterPythonImpl::ExecuteOneLine( in ExecuteOneLine()
916 void ScriptInterpreterPythonImpl::ExecuteInterpreterLoop() { in ExecuteInterpreterLoop()
936 bool ScriptInterpreterPythonImpl::Interrupt() { in Interrupt()
977 bool ScriptInterpreterPythonImpl::ExecuteOneLineWithReturn( in ExecuteOneLineWithReturn()
1101 Status ScriptInterpreterPythonImpl::ExecuteMultipleLines( in ExecuteMultipleLines()
1152 void ScriptInterpreterPythonImpl::CollectDataForBreakpointCommandCallback( in CollectDataForBreakpointCommandCallback()
1160 void ScriptInterpreterPythonImpl::CollectDataForWatchpointCommandCallback( in CollectDataForWatchpointCommandCallback()
1167 Status ScriptInterpreterPythonImpl::SetBreakpointCommandCallbackFunction( in SetBreakpointCommandCallbackFunction()
1209 Status ScriptInterpreterPythonImpl::SetBreakpointCommandCallback( in SetBreakpointCommandCallback()
1223 ScriptInterpreterPythonImpl::BreakpointCallbackFunction, baton_sp); in SetBreakpointCommandCallback()
1227 Status ScriptInterpreterPythonImpl::SetBreakpointCommandCallback( in SetBreakpointCommandCallback()
1235 Status ScriptInterpreterPythonImpl::SetBreakpointCommandCallback( in SetBreakpointCommandCallback()
1253 ScriptInterpreterPythonImpl::BreakpointCallbackFunction, baton_sp); in SetBreakpointCommandCallback()
1260 void ScriptInterpreterPythonImpl::SetWatchpointCommandCallback( in SetWatchpointCommandCallback()
1278 ScriptInterpreterPythonImpl::WatchpointCallbackFunction, baton_sp); in SetWatchpointCommandCallback()
1282 Status ScriptInterpreterPythonImpl::ExportFunctionDefinitionToInterpreter( in ExportFunctionDefinitionToInterpreter()
1293 Status ScriptInterpreterPythonImpl::GenerateFunction(const char *signature, in GenerateFunction()
1372 bool ScriptInterpreterPythonImpl::GenerateTypeScriptFunction( in GenerateTypeScriptFunction()
1400 bool ScriptInterpreterPythonImpl::GenerateScriptAliasFunction( in GenerateScriptAliasFunction()
1425 bool ScriptInterpreterPythonImpl::GenerateTypeSynthClass( in GenerateTypeSynthClass()
1470 ScriptInterpreterPythonImpl::CreateFrameRecognizer(const char *class_name) { in CreateFrameRecognizer()
1482 lldb::ValueObjectListSP ScriptInterpreterPythonImpl::GetRecognizedArguments( in GetRecognizedArguments()
1527 ScriptInterpreterPythonImpl::CreateScriptedProcessInterface() { in CreateScriptedProcessInterface()
1532 ScriptInterpreterPythonImpl::CreateScriptedThreadInterface() { in CreateScriptedThreadInterface()
1537 ScriptInterpreterPythonImpl::CreateOperatingSystemInterface() { in CreateOperatingSystemInterface()
1542 ScriptInterpreterPythonImpl::CreateStructuredDataFromScriptObject( in CreateStructuredDataFromScriptObject()
1552 StructuredData::ObjectSP ScriptInterpreterPythonImpl::CreateScriptedThreadPlan( in CreateScriptedThreadPlan()
1562 ScriptInterpreterPythonImpl *python_interpreter = in CreateScriptedThreadPlan()
1580 bool ScriptInterpreterPythonImpl::ScriptedThreadPlanExplainsStop( in ScriptedThreadPlanExplainsStop()
1597 bool ScriptInterpreterPythonImpl::ScriptedThreadPlanShouldStop( in ScriptedThreadPlanShouldStop()
1614 bool ScriptInterpreterPythonImpl::ScriptedThreadPlanIsStale( in ScriptedThreadPlanIsStale()
1631 lldb::StateType ScriptInterpreterPythonImpl::ScriptedThreadPlanGetRunState( in ScriptedThreadPlanGetRunState()
1651 ScriptInterpreterPythonImpl::ScriptedThreadPlanGetStopDescription( in ScriptedThreadPlanGetStopDescription()
1669 ScriptInterpreterPythonImpl::CreateScriptedBreakpointResolver( in CreateScriptedBreakpointResolver()
1680 ScriptInterpreterPythonImpl *python_interpreter = in CreateScriptedBreakpointResolver()
1698 bool ScriptInterpreterPythonImpl::ScriptedBreakpointResolverSearchCallback( in ScriptedBreakpointResolverSearchCallback()
1716 ScriptInterpreterPythonImpl::ScriptedBreakpointResolverSearchDepth( in ScriptedBreakpointResolverSearchDepth()
1737 StructuredData::GenericSP ScriptInterpreterPythonImpl::CreateScriptedStopHook( in CreateScriptedStopHook()
1751 ScriptInterpreterPythonImpl *python_interpreter = in CreateScriptedStopHook()
1770 bool ScriptInterpreterPythonImpl::ScriptedStopHookHandleStop( in ScriptedStopHookHandleStop()
1788 ScriptInterpreterPythonImpl::LoadPluginModule(const FileSpec &file_spec, in LoadPluginModule()
1806 StructuredData::DictionarySP ScriptInterpreterPythonImpl::GetDynamicSettings( in GetDynamicSettings()
1835 ScriptInterpreterPythonImpl::CreateSyntheticScriptedProvider( in CreateSyntheticScriptedProvider()
1850 ScriptInterpreterPythonImpl *python_interpreter = in CreateSyntheticScriptedProvider()
1866 ScriptInterpreterPythonImpl::CreateScriptCommandObject(const char *class_name) { in CreateScriptCommandObject()
1887 bool ScriptInterpreterPythonImpl::GenerateTypeScriptFunction( in GenerateTypeScriptFunction()
1894 bool ScriptInterpreterPythonImpl::GenerateTypeSynthClass( in GenerateTypeSynthClass()
1901 Status ScriptInterpreterPythonImpl::GenerateBreakpointCommandCallbackData( in GenerateBreakpointCommandCallbackData()
1931 bool ScriptInterpreterPythonImpl::GenerateWatchpointCommandCallbackData( in GenerateWatchpointCommandCallbackData()
1953 bool ScriptInterpreterPythonImpl::GetScriptedSummary( in GetScriptedSummary()
2004 bool ScriptInterpreterPythonImpl::FormatterCallbackFunction( in FormatterCallbackFunction()
2012 bool ScriptInterpreterPythonImpl::BreakpointCallbackFunction( in BreakpointCallbackFunction()
2028 ScriptInterpreterPythonImpl *python_interpreter = in BreakpointCallbackFunction()
2077 bool ScriptInterpreterPythonImpl::WatchpointCallbackFunction( in WatchpointCallbackFunction()
2093 ScriptInterpreterPythonImpl *python_interpreter = in WatchpointCallbackFunction()
2123 size_t ScriptInterpreterPythonImpl::CalculateNumChildren( in CalculateNumChildren()
2145 lldb::ValueObjectSP ScriptInterpreterPythonImpl::GetChildAtIndex( in GetChildAtIndex()
2179 int ScriptInterpreterPythonImpl::GetIndexOfChildWithName( in GetIndexOfChildWithName()
2202 bool ScriptInterpreterPythonImpl::UpdateSynthProviderInstance( in UpdateSynthProviderInstance()
2226 bool ScriptInterpreterPythonImpl::MightHaveChildrenSynthProviderInstance( in MightHaveChildrenSynthProviderInstance()
2250 lldb::ValueObjectSP ScriptInterpreterPythonImpl::GetSyntheticValue( in GetSyntheticValue()
2285 ConstString ScriptInterpreterPythonImpl::GetSyntheticTypeName( in GetSyntheticTypeName()
2318 bool ScriptInterpreterPythonImpl::RunScriptFormatKeyword( in RunScriptFormatKeyword()
2343 bool ScriptInterpreterPythonImpl::RunScriptFormatKeyword( in RunScriptFormatKeyword()
2368 bool ScriptInterpreterPythonImpl::RunScriptFormatKeyword( in RunScriptFormatKeyword()
2393 bool ScriptInterpreterPythonImpl::RunScriptFormatKeyword( in RunScriptFormatKeyword()
2418 bool ScriptInterpreterPythonImpl::RunScriptFormatKeyword( in RunScriptFormatKeyword()
2454 bool ScriptInterpreterPythonImpl::LoadScriptingModule( in LoadScriptingModule()
2588 ScriptInterpreterPythonImpl::eScriptReturnTypeBool, &does_contain, exc_options); in LoadScriptingModule()
2638 bool ScriptInterpreterPythonImpl::IsReservedWord(const char *word) { in IsReservedWord()
2664 ScriptInterpreterPythonImpl::SynchronicityHandler::SynchronicityHandler( in SynchronicityHandler()
2674 ScriptInterpreterPythonImpl::SynchronicityHandler::~SynchronicityHandler() { in ~SynchronicityHandler()
2679 bool ScriptInterpreterPythonImpl::RunScriptBasedCommand( in RunScriptBasedCommand()
2724 bool ScriptInterpreterPythonImpl::RunScriptBasedCommand( in RunScriptBasedCommand()
2772 bool ScriptInterpreterPythonImpl::GetDocumentationForItem(const char *item, in GetDocumentationForItem()
2803 bool ScriptInterpreterPythonImpl::GetShortHelpForCommandObject( in GetShortHelpForCommandObject()
2838 uint32_t ScriptInterpreterPythonImpl::GetFlagsForCommandObject( in GetFlagsForCommandObject()
2887 bool ScriptInterpreterPythonImpl::GetLongHelpForCommandObject( in GetLongHelpForCommandObject()
2924 ScriptInterpreterPythonImpl::AcquireInterpreterLock() { in AcquireInterpreterLock()
2931 void ScriptInterpreterPythonImpl::Initialize() { in Initialize()
2982 void ScriptInterpreterPythonImpl::AddToSysPath(AddLocation location, in AddToSysPath()