Home
last modified time | relevance | path

Searched refs:obj_or_err (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Target/
H A DThreadPlanPython.cpp85 auto obj_or_err = m_interface->CreatePluginObject( in DidPush() local
87 if (!obj_or_err) { in DidPush()
88 m_error_str = llvm::toString(obj_or_err.takeError()); in DidPush()
91 m_implementation_sp = *obj_or_err; in DidPush()
/freebsd/contrib/llvm-project/lldb/source/Plugins/OperatingSystem/Python/
H A DOperatingSystemPython.cpp119 auto obj_or_err = operating_system_interface->CreatePluginObject( in OperatingSystemPython() local
122 if (!obj_or_err) { in OperatingSystemPython()
123 llvm::consumeError(obj_or_err.takeError()); in OperatingSystemPython()
127 StructuredData::GenericSP owned_script_object_sp = *obj_or_err; in OperatingSystemPython()