HomeSort by relevance Sort by last modified time
    Searched defs:target_sp (Results 1 - 18 of 18) sorted by null

  /external/lldb/include/lldb/Symbol/
SymbolContext.h 84 SymbolContext (const lldb::TargetSP &target_sp,
342 lldb::TargetSP target_sp; ///< The Target for a given query member in class:lldb_private::SymbolContext
368 SymbolContextSpecifier (const lldb::TargetSP& target_sp);
  /external/lldb/source/Expression/
ClangExpressionParser.cpp 208 lldb::TargetSP target_sp; local
210 target_sp = exe_scope->CalculateTarget();
217 if (target_sp && target_sp->GetArchitecture().IsValid())
219 std::string triple = target_sp->GetArchitecture().GetTriple().str();
240 if (target_sp->GetArchitecture().GetMachine() == llvm::Triple::x86 ||
241 target_sp->GetArchitecture().GetMachine() == llvm::Triple::x86_64)
IRMemoryMap.cpp 21 IRMemoryMap::IRMemoryMap (lldb::TargetSP target_sp) :
22 m_target_wp(target_sp)
24 if (target_sp)
25 m_process_wp = target_sp->GetProcessSP();
52 lldb::TargetSP target_sp = m_target_wp.lock(); local
73 switch (target_sp->GetArchitecture().GetAddressByteSize())
163 lldb::TargetSP target_sp = m_target_wp.lock();
165 if (target_sp)
166 return target_sp->GetArchitecture().GetByteOrder();
179 lldb::TargetSP target_sp = m_target_wp.lock()
561 lldb::TargetSP target_sp = m_target_wp.lock(); local
    [all...]
ClangUserExpression.cpp 346 lldb::TargetSP &target_sp,
357 target_sp = exe_ctx.GetTargetSP();
365 return (0 == Address::CompareLoadAddress(m_address, frame_sp->GetFrameCodeAddress(), target_sp.get()));
374 lldb::TargetSP target_sp; local
378 return LockAndCheckContext(exe_ctx, target_sp, process_sp, frame_sp);
    [all...]
Materializer.cpp 807 lldb::TargetSP target_sp = exe_scope->CalculateTarget(); local
809 if (!target_sp)
815 ConstString name = target_sp->GetPersistentVariables().GetNextPersistentVariableName();
819 ret = target_sp->GetPersistentVariables().CreateVariable(exe_scope,
1013 lldb::TargetSP target_sp; local
    [all...]
  /external/lldb/source/Commands/
CommandCompletions.cpp 113 lldb::TargetSP target_sp = interpreter.GetDebugger().GetSelectedTarget(); local
114 SearchFilter null_searcher (target_sp);
362 lldb::TargetSP target_sp = interpreter.GetDebugger().GetSelectedTarget(); local
363 SearchFilter null_searcher (target_sp);
393 lldb::TargetSP target_sp = interpreter.GetDebugger().GetSelectedTarget(); local
394 SearchFilter null_searcher (target_sp);
CommandObjectProcess.cpp 1793 TargetSP target_sp = m_interpreter.GetDebugger().GetSelectedTarget(); local
    [all...]
CommandObjectTarget.cpp 129 TargetSP target_sp (target_list.GetTargetAtIndex (i));
130 if (target_sp)
132 bool is_selected = target_sp.get() == selected_target_sp.get();
134 target_sp.get(),
246 TargetSP target_sp; local
255 target_sp));
257 if (target_sp)
261 ModuleSP module_sp (target_sp->GetExecutableModule());
269 target_sp->SetArg0(remote_path.c_str());
275 debugger.GetTargetList().SetSelectedTarget(target_sp.get())
514 TargetSP target_sp; local
    [all...]
  /external/lldb/source/Target/
TargetList.cpp 68 TargetSP &target_sp)
183 target_sp);
193 TargetSP &target_sp)
292 target_sp.reset(new Target(debugger, arch, platform_sp));
293 target_sp->SetExecutableModule (exe_module_sp, get_dependent_files);
302 target_sp.reset(new Target(debugger, arch, platform_sp));
305 if (target_sp)
315 target_sp->SetArg0 (resolved_bundle_exe_path);
320 target_sp->SetArg0 (file.GetPath().c_str());
327 target_sp->GetExecutableSearchPaths ().Append (file_dir)
365 TargetSP target_sp; local
394 TargetSP target_sp; local
412 TargetSP target_sp; local
432 TargetSP target_sp; local
530 TargetSP target_sp; local
    [all...]
StackFrame.cpp 101 if (reg_context_sp && !m_sc.target_sp)
103 m_sc.target_sp = reg_context_sp->CalculateTarget();
104 if (m_sc.target_sp)
136 if (m_sc.target_sp.get() == NULL && reg_context_sp)
138 m_sc.target_sp = reg_context_sp->CalculateTarget();
139 if (m_sc.target_sp)
231 TargetSP target_sp (thread_sp->CalculateTarget());
232 if (target_sp)
234 if (m_frame_code_addr.SetOpcodeLoadAddress (m_frame_code_addr.GetOffset(), target_sp.get()))
328 if (!m_sc.target_sp)
1237 TargetSP target_sp; local
    [all...]
Thread.cpp 1568 TargetSP target_sp; local
    [all...]
Target.cpp 2821 TargetSP target_sp; local
    [all...]
  /external/lldb/source/Interpreter/
Options.cpp 961 lldb::TargetSP target_sp = m_interpreter.GetDebugger().GetSelectedTarget(); local
963 if (target_sp)
964 filter_ap.reset (new SearchFilterByModule (target_sp, module_spec));
    [all...]
  /external/lldb/source/API/
SBProcess.cpp 308 TargetSP target_sp; local
312 target_sp = process_sp->GetTarget().shared_from_this();
313 sb_target.SetSP (target_sp);
317 log->Printf ("SBProcess(%p)::GetTarget () => SBTarget(%p)", process_sp.get(), target_sp.get());
    [all...]
SBDebugger.cpp 331 TargetSP target_sp (m_opaque_sp->GetSelectedTarget());
333 if (target_sp)
334 api_locker.Lock(target_sp->GetAPIMutex());
386 TargetSP target_sp (process.GetTarget().GetSP());
387 if (!target_sp)
394 Mutex::Locker api_locker (target_sp->GetAPIMutex());
526 TargetSP target_sp; local
538 target_sp);
541 sb_target.SetSP (target_sp);
558 target_sp.get())
569 TargetSP target_sp; local
598 TargetSP target_sp; local
631 TargetSP target_sp; local
703 lldb::TargetSP target_sp = target.GetSP(); local
769 TargetSP target_sp; local
    [all...]
SBValue.cpp 834 TargetSP target_sp; local
836 target_sp = m_opaque_sp->GetTargetSP();
838 if (target_sp)
839 use_dynamic = target_sp->GetPreferDynamicValue();
902 TargetSP target_sp; local
904 target_sp = m_opaque_sp->GetTargetSP();
906 if (target_sp)
907 use_dynamic_value = target_sp->GetPreferDynamicValue();
1194 TargetSP target_sp; local
    [all...]
  /external/lldb/source/Core/
DataExtractor.cpp 1384 TargetSP target_sp; local
1747 TargetSP target_sp; local
    [all...]
Debugger.cpp 177 TargetSP target_sp; local
181 target_sp = exe_ctx->GetTargetSP();
182 load_script_old_value = target_sp->TargetProperties::GetLoadScriptFromSymbolFile();
202 else if (is_load_script && target_sp && load_script_old_value == eLoadScriptFromSymFileWarn)
204 if (target_sp->TargetProperties::GetLoadScriptFromSymbolFile() == eLoadScriptFromSymFileTrue)
208 if (!target_sp->LoadScriptingResources(errors,&feedback_stream))
587 TargetSP target_sp; local
595 target_sp = (*pos)->GetTargetList().FindTargetWithProcessID (pid);
596 if (target_sp)
600 return target_sp;
606 TargetSP target_sp; local
    [all...]

Completed in 591 milliseconds