HomeSort by relevance Sort by last modified time
    Searched refs:target_sp (Results 1 - 25 of 71) sorted by null

1 2 3

  /external/lldb/source/API/
SBTarget.cpp 496 SBTarget::SBTarget(const TargetSP& target_sp) :
497 m_opaque_sp (target_sp)
533 TargetSP target_sp(GetSP());
534 if (target_sp)
536 process_sp = target_sp->GetProcessSP();
544 target_sp.get(), process_sp.get());
554 TargetSP target_sp(GetSP());
555 if (target_sp)
556 debugger.reset (target_sp->GetDebugger().shared_from_this());
564 TargetSP target_sp(GetSP())
    [all...]
SBInstruction.cpp 79 TargetSP target_sp (target.GetSP());
80 if (target_sp)
82 api_locker.Lock (target_sp->GetAPIMutex());
83 target_sp->CalculateExecutionContext (exe_ctx);
84 exe_ctx.SetProcessSP(target_sp->GetProcessSP());
98 TargetSP target_sp (target.GetSP());
99 if (target_sp)
101 api_locker.Lock (target_sp->GetAPIMutex());
102 target_sp->CalculateExecutionContext (exe_ctx);
103 exe_ctx.SetProcessSP(target_sp->GetProcessSP())
    [all...]
SBSourceManager.cpp 36 SourceManagerImpl (const lldb::TargetSP &target_sp) :
38 m_target_wp (target_sp)
61 lldb::TargetSP target_sp (m_target_wp.lock());
62 if (target_sp)
64 return target_sp->GetSourceManager().DisplaySourceLinesWithLineNumbers (file,
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...]
SBFunction.cpp 136 TargetSP target_sp (target.GetSP());
137 if (target_sp)
139 api_locker.Lock (target_sp->GetAPIMutex());
140 target_sp->CalculateExecutionContext (exe_ctx);
141 exe_ctx.SetProcessSP(target_sp->GetProcessSP());
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...]
SBSymbol.cpp 130 TargetSP target_sp (target.GetSP());
131 if (target_sp)
133 api_locker.Lock (target_sp->GetAPIMutex());
134 target_sp->CalculateExecutionContext (exe_ctx);
SBAddress.cpp 121 TargetSP target_sp (target.GetSP());
122 if (target_sp)
126 Mutex::Locker api_locker (target_sp->GetAPIMutex());
127 addr = m_opaque_ap->GetLoadAddress (target_sp.get());
134 log->Printf ("SBAddress::GetLoadAddress (SBTarget(%p)) => LLDB_INVALID_ADDRESS", target_sp.get());
136 log->Printf ("SBAddress::GetLoadAddress (SBTarget(%p)) => 0x%" PRIx64, target_sp.get(), addr);
SBCommandInterpreter.cpp 228 TargetSP target_sp(m_opaque_ptr->GetDebugger().GetSelectedTarget());
229 if (target_sp)
231 Mutex::Locker api_locker(target_sp->GetAPIMutex());
232 process_sp = target_sp->GetProcessSP();
287 TargetSP target_sp(m_opaque_ptr->GetDebugger().GetSelectedTarget());
289 if (target_sp)
290 api_locker.Lock(target_sp->GetAPIMutex());
312 TargetSP target_sp(m_opaque_ptr->GetDebugger().GetSelectedTarget());
314 if (target_sp)
315 api_locker.Lock(target_sp->GetAPIMutex())
    [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...]
ThreadPlanStepUntil.cpp 55 TargetSP target_sp (m_thread.CalculateTarget());
71 Breakpoint *return_bp = target_sp->CreateBreakpoint (m_return_addr, true).get();
85 Breakpoint *until_bp = target_sp->CreateBreakpoint (address_list[i], true).get();
108 TargetSP target_sp (m_thread.CalculateTarget());
109 if (target_sp)
113 target_sp->RemoveBreakpointByID(m_return_bp_id);
120 target_sp->RemoveBreakpointByID((*pos).second);
348 TargetSP target_sp (m_thread.CalculateTarget());
349 if (target_sp)
351 Breakpoint *return_bp = target_sp->GetBreakpointByID(m_return_bp_id).get()
    [all...]
ExecutionContext.cpp 37 ExecutionContext::ExecutionContext (const lldb::TargetSP &target_sp, bool get_process) :
43 if (target_sp)
44 SetContext (target_sp, get_process);
83 lldb::TargetSP target_sp(target_wp.lock());
84 if (target_sp)
85 SetContext (target_sp, get_process);
325 ExecutionContext::SetTargetSP (const lldb::TargetSP &target_sp)
327 m_target_sp = target_sp;
385 ExecutionContext::SetContext (const lldb::TargetSP &target_sp, bool get_process)
387 m_target_sp = target_sp;
    [all...]
ThreadPlanTracer.cpp 62 TargetSP target_sp (m_thread.CalculateTarget());
63 if (target_sp)
64 return &target_sp->GetDebugger().GetOutputStream();
132 TargetSP target_sp (m_thread.CalculateTarget());
133 if (target_sp)
135 Module *exe_module = target_sp->GetExecutableModulePointer();
139 m_intptr_type = TypeFromUser(exe_module->GetClangASTContext().GetBuiltinTypeForEncodingAndBitSize(eEncodingUint, target_sp->GetArchitecture().GetAddressByteSize() * 8));
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...]
  /external/lldb/include/lldb/Target/
TargetList.h 92 /// @param[out] target_sp
105 lldb::TargetSP &target_sp);
119 lldb::TargetSP &target_sp);
128 /// @param[in] target_sp
135 /// in \a target_sp which can then be properly released.
138 DeleteTarget (lldb::TargetSP &target_sp);
147 GetIndexOfTarget (lldb::TargetSP target_sp) const;
ExecutionContext.h 168 /// referenced in \a target_sp.
170 /// If \a target_sp is valid this object will create a weak
182 SetTargetSP (const lldb::TargetSP &target_sp);
393 ExecutionContext (const lldb::TargetSP &target_sp, bool get_process);
631 SetTargetSP (const lldb::TargetSP &target_sp);
682 // If "target_sp" is valid, sets the target context to match and
687 SetContext (const lldb::TargetSP &target_sp, bool get_process);
    [all...]
  /external/lldb/source/Commands/
CommandObjectQuit.cpp 59 TargetSP target_sp(target_list.GetTargetAtIndex(target_idx));
60 if (!target_sp)
62 ProcessSP process_sp(target_sp->GetProcessSP());
  /external/lldb/source/DataFormatters/
TypeSynthetic.cpp 77 TargetSP target_sp = backend.GetTargetSP();
79 if (!target_sp)
82 m_interpreter = target_sp->GetDebugger().GetCommandInterpreter().GetScriptInterpreter();
TypeSummary.cpp 211 TargetSP target_sp(valobj->GetTargetSP());
213 if (!target_sp)
219 ScriptInterpreter *script_interpreter = target_sp->GetDebugger().GetCommandInterpreter().GetScriptInterpreter();
  /external/lldb/source/Expression/
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...]
  /external/lldb/source/Breakpoint/
BreakpointResolverFileRegex.cpp 55 if (!context.target_sp)
63 context.target_sp->GetSourceManager().FindLinesMatchingRegex(cu_file_spec, m_regex, 1, UINT32_MAX, line_matches);
  /external/lldb/source/Core/
SourceManager.cpp 41 SourceManager::SourceManager(const TargetSP &target_sp) :
46 m_target_wp (target_sp),
47 m_debugger_wp(target_sp->GetDebugger().shared_from_this())
80 TargetSP target_sp (m_target_wp.lock());
84 if (target_sp && file_sp && file_sp->GetSourceMapModificationID() != target_sp->GetSourcePathMap().GetModificationID())
90 file_sp.reset (new File (file_spec, target_sp.get()));
276 TargetSP target_sp (m_target_wp.lock());
278 if (target_sp)
283 Module *executable_ptr = target_sp->GetExecutableModulePointer()
    [all...]
SearchFilter.cpp 45 SearchFilter::SearchFilter(const TargetSP &target_sp) :
46 m_target_sp (target_sp)
134 empty_sc.target_sp = m_target_sp;
149 empty_sc.target_sp = m_target_sp;
317 SearchFilterByModule::SearchFilterByModule (const lldb::TargetSP &target_sp, const FileSpec &module) :
318 SearchFilter (target_sp),
397 empty_sc.target_sp = m_target_sp;
461 SearchFilterByModuleList::SearchFilterByModuleList (const lldb::TargetSP &target_sp, const FileSpecList &module_list) :
462 SearchFilter (target_sp),
548 empty_sc.target_sp = m_target_sp
    [all...]
  /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/Symbol/
SymbolContext.cpp 30 target_sp (),
41 target_sp (),
54 target_sp (t),
67 target_sp (rhs.target_sp),
79 target_sp (),
99 target_sp = rhs.target_sp;
114 target_sp.reset();
312 if (target_sp) resolved_mask |= eSymbolContextTarget
    [all...]

Completed in 644 milliseconds

1 2 3