| /external/lldb/test/python_api/target/ |
| TestTargetAPI.py | 151 if m.GetFileSpec().GetDirectory() == os.getcwd() and m.GetFileSpec().GetFilename() == exe_name: 169 self.assertTrue(sc.GetModule().GetFileSpec().GetFilename() == exe_name)
|
| /external/lldb/include/lldb/API/ |
| SBModule.h | 56 GetFileSpec () const; 63 /// debugging this is always the same as Module::GetFileSpec(). But
|
| /external/lldb/include/lldb/Core/ |
| SourceManager.h | 62 GetFileSpec ()
|
| /external/lldb/source/Symbol/ |
| UnwindTable.cpp | 138 s.Printf("UnwindTable for '%s':\n", m_object_file.GetFileSpec().GetPath().c_str());
|
| SymbolContext.cpp | 138 *s << module_sp->GetFileSpec(); 140 *s << module_sp->GetFileSpec().GetFilename(); 239 module_sp->GetFileSpec().Dump(s); 334 module_sp->GetFileSpec().Dump(s); 522 objfile->GetFileSpec().GetPath().c_str()); 788 if (!FileSpec::Equal (module_file_spec, sc.module_sp->GetFileSpec(), false)) 899 m_module_sp->GetFileSpec().GetPath (path_str, PATH_MAX); [all...] |
| ObjectFile.cpp | 44 module_sp->GetFileSpec().GetPath().c_str(), 86 module_sp->GetFileSpec().GetPath(path_with_object, sizeof(path_with_object)); 165 module_sp->GetFileSpec().GetPath().c_str(),
|
| /external/lldb/test/lang/cpp/stl/ |
| TestStdCXXDisassembly.py | 60 fs = module.GetFileSpec()
|
| /external/lldb/test/python_api/frame/inlines/ |
| TestInlinedFrame.py | 75 filename = frame0.GetLineEntry().GetFileSpec().GetFilename()
|
| /external/lldb/include/lldb/Symbol/ |
| ObjectFile.h | 313 GetFileSpec() { return m_file; } 323 GetFileSpec() const { return m_file; }
|
| /external/lldb/scripts/Python/interface/ |
| SBModule.i | 125 ") GetFileSpec; 127 GetFileSpec () const; 135 /// debugging this is always the same as Module::GetFileSpec(). But 490 __swig_getmethods__["file"] = GetFileSpec 491 if _newclass: file = property(GetFileSpec, None, doc='''A read only property that returns an lldb object that represents the file (lldb.SBFileSpec) for this object file for this module as it is represented where it is being debugged.''')
|
| /external/lldb/test/functionalities/inline-stepping/ |
| TestInlineStepping.py | 80 stop_at_right_place = (stop_line_entry.GetFileSpec() == destination_line_entry.GetFileSpec() and stop_line_entry.GetLine() == destination_line_entry.GetLine())
|
| /external/lldb/examples/python/ |
| symbolication.py | 96 self.symbolication += str(module.GetFileSpec()) + '`' 98 self.symbolication += module.GetFileSpec().GetFilename() + '`' 132 if line_entry.GetFileSpec(): 135 self.symbolication += ' at %s' % line_entry.GetFileSpec() 137 self.symbolication += ' at %s' % line_entry.GetFileSpec().GetFilename()
|
| /external/lldb/source/Core/ |
| SearchFilter.cpp | 354 if (module_sp && FileSpec::Equal(module_sp->GetFileSpec(), m_module_spec, false)) 413 if (FileSpec::Equal (m_module_spec, module->GetFileSpec(), full_match)) 501 if (module_sp && m_module_spec_list.FindFileIndex(0, module_sp->GetFileSpec(), false) != UINT32_MAX) 563 if (m_module_spec_list.FindFileIndex(0, module->GetFileSpec(), false) != UINT32_MAX) 733 if (no_modules_in_filter || m_module_spec_list.FindFileIndex(0, module_sp->GetFileSpec(), false) != UINT32_MAX)
|
| SourceManager.cpp | 88 if (!file_sp || !file_sp->GetFileSpec().Exists()) 270 file_spec = m_last_file_sp->GetFileSpec(); 309 file_spec = m_last_file_sp->GetFileSpec();
|
| AddressRange.cpp | 182 s->Printf("%s", module_sp->GetFileSpec().GetFilename().AsCString());
|
| ModuleList.cpp | 106 ModuleSpec equivalent_module_spec (module_sp->GetFileSpec(), module_sp->GetArchitecture()); 718 const FileSpec &module_file_spec = module->GetFileSpec(); 878 const FileSpec &module_file_spec = module_spec.GetFileSpec(); 992 platform_module_spec.GetFileSpec() = file_spec; [all...] |
| Module.cpp | 132 m_mod_time (module_spec.GetFileSpec().GetModificationTime()), 135 m_file (module_spec.GetFileSpec()), 886 std::string spec(GetFileSpec().GetPath()); [all...] |
| /external/lldb/include/lldb/Host/ |
| File.h | 193 GetFileSpec (FileSpec &file_spec) const;
|
| /external/lldb/source/API/ |
| SBCompileUnit.cpp | 54 SBCompileUnit::GetFileSpec () const
|
| SBDeclaration.cpp | 74 SBDeclaration::GetFileSpec () const 86 log->Printf ("SBLineEntry(%p)::GetFileSpec () => SBFileSpec(%p): %s", m_opaque_ap.get(),
|
| SBModule.cpp | 103 SBModule::GetFileSpec () const 110 file_spec.SetFileSpec(module_sp->GetFileSpec()); 114 log->Printf ("SBModule(%p)::GetFileSpec () => SBFileSpec(%p)",
|
| /external/lldb/utils/vim-lldb/python-vim-lldb/ |
| vim_ui.py | 73 path = os.path.join(le.GetFileSpec().GetDirectory(), le.GetFileSpec().GetFilename())
|
| /external/lldb/source/Target/ |
| Target.cpp | 135 s->PutCString (exe_module->GetFileSpec().GetFilename().GetCString()); [all...] |
| /external/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/ |
| DynamicLoaderDarwinKernel.cpp | 795 if (module_spec.GetFileSpec().Exists()) 797 m_module_sp.reset(new Module (module_spec.GetFileSpec(), target.GetArchitecture())); 820 kext_bundle_module_spec.GetFileSpec() = kext_filespec; [all...] |
| /external/lldb/source/Commands/ |
| CommandObjectProcess.cpp | 210 exe_module->GetFileSpec().GetPath (filename, sizeof(filename)); 664 new_exec_module_sp->GetFileSpec().GetPath(new_path, PATH_MAX); 668 else if (old_exec_module_sp->GetFileSpec() != new_exec_module_sp->GetFileSpec()) 672 old_exec_module_sp->GetFileSpec().GetPath (old_path, PATH_MAX); 673 new_exec_module_sp->GetFileSpec().GetPath (new_path, PATH_MAX); [all...] |