Searched refs:target_sp (Results 101 - 110 of 110) sorted by relevance

12345

/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPython.cpp209 const lldb::TargetSP &target_sp);
2077 TargetSP target_sp(target->shared_from_this());
2080 generic->GetValue(), setting_name, target_sp);
2665 TargetSP target_sp(target->shared_from_this());
2669 impl_function, m_dictionary_name.c_str(), target_sp, output);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectThread.cpp487 TargetSP target_sp = variable
489 if (target_sp && target_sp->GetNonStopModeEnabled())
H A DCommandObjectType.cpp2842 TargetSP target_sp = GetDebugger().GetSelectedTarget(); variable
2853 lldb::ExpressionResults expr_result = target_sp->EvaluateExpression(
2858 target_sp->GetPreferDynamicValue(),
2859 target_sp->GetEnableSyntheticValue());
H A DCommandObjectProcess.cpp1376 Target *target_sp = &GetSelectedTarget(); variable
1378 ProcessSP process_sp = target_sp->GetProcessSP();
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/
H A DSBProcess.cpp248 TargetSP target_sp; local
251 target_sp = process_sp->GetTarget().shared_from_this();
252 sb_target.SetSP(target_sp);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DProcessGDBRemote.cpp218 ProcessGDBRemote::CreateInstance(lldb::TargetSP target_sp, argument
223 process_sp = std::make_shared<ProcessGDBRemote>(target_sp, listener_sp);
227 bool ProcessGDBRemote::CanDebug(lldb::TargetSP target_sp, argument
233 Module *exe_module = target_sp->GetExecutableModulePointer();
259 ProcessGDBRemote::ProcessGDBRemote(lldb::TargetSP target_sp, argument
261 : Process(target_sp, listener_sp),
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangExpressionDeclMap.cpp102 m_parser_vars->m_sym_ctx.target_sp = exe_ctx.GetTargetSP();
105 m_parser_vars->m_sym_ctx.target_sp = exe_ctx.GetTargetSP();
H A DIRForTarget.cpp313 lldb::TargetSP target_sp(m_execution_unit.GetTarget());
314 lldb_private::ExecutionContext exe_ctx(target_sp, true);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/
H A DModule.cpp903 void Module::FindAddressesForLine(const lldb::TargetSP target_sp, argument
908 SearchFilterByModule filter(target_sp, m_file);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/
H A DClangASTContext.cpp9268 TargetSP target_sp = m_target_wp.lock();
9269 if (!target_sp)
9272 return new ClangUserExpression(*target_sp.get(), expr, prefix, language,
9279 TargetSP target_sp = m_target_wp.lock();
9280 if (!target_sp)
9283 Process *process = target_sp->GetProcessSP().get();
9294 TargetSP target_sp = m_target_wp.lock();
9295 if (!target_sp)
9298 return new ClangUtilityFunction(*target_sp.get(), text, name);

Completed in 283 milliseconds

12345