Home
last modified time | relevance | path

Searched refs:GetFileSpec (Results 1 – 25 of 97) sorted by relevance

1234

/external/lldb/source/Plugins/SymbolVendor/MacOSX/
DSymbolVendorMacOSX.cpp60 ofile->GetFileSpec().Dump(feedback_strm); in UUIDsMatch()
75 module->GetFileSpec().Dump(feedback_strm); in UUIDsMatch()
79 ofile->GetFileSpec().Dump(feedback_strm); in UUIDsMatch()
140 module_sp->GetFileSpec().GetPath().c_str()); in CreateInstance()
150 module_sp->GetFileSpec().GetPath().c_str()); in CreateInstance()
161 FileSpec file_spec = obj_file->GetFileSpec(); in CreateInstance()
163 file_spec = module_sp->GetFileSpec(); in CreateInstance()
/external/lldb/scripts/Python/interface/
DSBDeclaration.i29 GetFileSpec () const;
56 __swig_getmethods__["file"] = GetFileSpec
57 …if _newclass: file = property(GetFileSpec, None, doc='''A read only property that returns an lldb …
DSBLineEntry.i60 GetFileSpec () const;
87 __swig_getmethods__["file"] = GetFileSpec
88 …if _newclass: file = property(GetFileSpec, None, doc='''A read only property that returns an lldb …
DSBCompileUnit.i61 GetFileSpec () const;
119 __swig_getmethods__["file"] = GetFileSpec
120 …if _newclass: file = property(GetFileSpec, None, doc='''A read only property that returns the same…
DSBModule.i125 ") GetFileSpec;
127 GetFileSpec () const;
490 __swig_getmethods__["file"] = GetFileSpec
491 …if _newclass: file = property(GetFileSpec, None, doc='''A read only property that returns an lldb …
/external/lldb/source/Plugins/SymbolVendor/ELF/
DSymbolVendorELF.cpp116 module_sp->GetFileSpec().GetPath().c_str()); in CreateInstance()
123 module_spec.GetFileSpec() = obj_file->GetFileSpec(); in CreateInstance()
124 module_spec.GetFileSpec().ResolvePath(); in CreateInstance()
/external/lldb/source/Target/
DSectionLoadList.cpp66 const FileSpec &module_file_spec (section->GetModule()->GetFileSpec()); in SetSectionLoadAddress()
115 module_sp->GetFileSpec().GetFilename().GetCString(), in SetSectionLoadAddress()
117 … curr_module_sp->GetFileSpec().GetFilename().GetCString(), in SetSectionLoadAddress()
141 const FileSpec &module_file_spec (section_sp->GetModule()->GetFileSpec()); in SetSectionUnloaded()
173 const FileSpec &module_file_spec (section_sp->GetModule()->GetFileSpec()); in SetSectionUnloaded()
DTargetList.cpp93 module_spec.GetFileSpec().SetFile(user_exe_path, true); in CreateTarget()
96 …const size_t num_specs = ObjectFile::GetModuleSpecifications (module_spec.GetFileSpec(), file_offs… in CreateTarget()
112 … module_spec.GetFileSpec().GetPath().c_str()); in CreateTarget()
295 … exe_module_sp->GetFileSpec().GetPath(resolved_bundle_exe_path, sizeof(resolved_bundle_exe_path)); in CreateTarget()
375 if (FileSpec::Equal (exe_file_spec, exe_module->GetFileSpec(), full_match)) in FindTargetWithExecutableAndArchitecture()
/external/lldb/examples/python/
Ddiagnose_unwind.py32 if sbaddr.GetModule().GetFileSpec():
33 module_filename = sbaddr.GetModule().GetFileSpec().GetFilename()
208 if module != None and module.GetFileSpec().GetFilename() != None:
209 if not module.GetFileSpec().GetFilename() in modules_already_seen:
210 debugger.HandleCommand('image list %s' % module.GetFileSpec().GetFilename())
211 modules_already_seen.add(module.GetFileSpec().GetFilename())
Djump.py32 breakpoint = target.BreakpointCreateByLocation (line_entry.GetFileSpec(), line_number)
44 …breakpoint = target.BreakpointCreateByLocation(line_entry.GetFileSpec(), (line_entry.GetLine() + l…
56 …breakpoint = target.BreakpointCreateByLocation(line_entry.GetFileSpec(), (line_entry.GetLine() - l…
Dsymbolication.py96 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/Host/common/
DSymbols.cpp44 const ConstString &file_dir = module_spec.GetFileSpec().GetDirectory(); in LocateExecutableSymbolFile()
66 std::string module_filename = module_spec.GetFileSpec().GetPath(); in LocateExecutableSymbolFile()
90 if (file_spec == module_spec.GetFileSpec()) in LocateExecutableSymbolFile()
/external/lldb/test/lang/c/stepping/
DTestStepAndBreakpoints.py107 current_file = frame.GetLineEntry().GetFileSpec()
119 …self.assertTrue (current_file == frame.GetLineEntry().GetFileSpec(), "The file stayed the same aft…
138 …self.assertTrue (current_file == frame.GetLineEntry().GetFileSpec(), "The file stayed the same aft…
163 current_file = frame.GetLineEntry().GetFileSpec()
184 self.assertTrue (thread.GetFrameAtIndex(0).GetLineEntry().GetFileSpec() == current_file)
/external/lldb/source/API/
DSBModuleSpec.cpp57 SBModuleSpec::GetFileSpec () in GetFileSpec() function in SBModuleSpec
59 SBFileSpec sb_spec(m_opaque_ap->GetFileSpec()); in GetFileSpec()
66 m_opaque_ap->GetFileSpec() = *sb_spec; in SetFileSpec()
/external/lldb/source/Commands/
DCommandObjectTarget.cpp69 exe_valid = exe_module->GetFileSpec().GetPath (exe_path, sizeof(exe_path)); in DumpTargetInfo()
739 sc.module_sp->GetFileSpec().GetPath().c_str()); in DumpGlobalVariableList()
744 sc.module_sp->GetFileSpec().GetPath().c_str()); in DumpGlobalVariableList()
1380 << module->GetFileSpec().GetFilename() << "\n"; in DumpCompileUnitLineTable()
1609 DumpFullpath (strm, &module->GetFileSpec(), 0); in LookupSymbolInModule()
1699 DumpFullpath (strm, &module->GetFileSpec(), 0); in LookupFunctionInModule()
1730 DumpFullpath (strm, &module->GetFileSpec(), 0); in LookupTypeInModule()
1785 DumpFullpath (strm, &sym_ctx.module_sp->GetFileSpec(), 0); in LookupTypeHere()
1835 DumpFullpath (strm, &module->GetFileSpec(), 0); in LookupFileAndLineInModule()
2641 if (module_spec.GetFileSpec()) in DoExecute()
[all …]
/external/lldb/source/Plugins/Platform/MacOSX/
DPlatformDarwin.cpp66 FileSpec module_spec = module.GetFileSpec(); in LocateExecutableScriptingResources()
79 FileSpec symfile_spec (objfile->GetFileSpec()); in LocateExecutableScriptingResources()
306 const FileSpec &platform_file = module_spec.GetFileSpec(); in GetSharedModule()
317 new_module_spec.GetFileSpec() = bundle_directory; in GetSharedModule()
318 if (Host::ResolveExecutableInBundle (new_module_spec.GetFileSpec())) in GetSharedModule()
348 new_module_spec.GetFileSpec() = new_file_spec; in GetSharedModule()
368 module_sp->SetPlatformFileSpec(module_spec.GetFileSpec()); in GetSharedModule()
/external/lldb/include/lldb/Core/
DModuleSpec.h111 GetFileSpec () in GetFileSpec() function
116 GetFileSpec () const in GetFileSpec() function
386 const FileSpec &fspec = match_module_spec.GetFileSpec(); in Matches()
387 if (!FileSpec::Equal(fspec, GetFileSpec(), fspec.GetDirectory().IsEmpty() == false)) in Matches()
/external/lldb/test/python_api/symbol-context/
DTestSymbolContext.py86 …self.expect(lineEntry.GetFileSpec().GetDirectory(), "The line entry should have the correct direct…
89 …self.expect(lineEntry.GetFileSpec().GetFilename(), "The line entry should have the correct filenam…
/external/lldb/source/Core/
DSearchFilter.cpp354 if (module_sp && FileSpec::Equal(module_sp->GetFileSpec(), m_module_spec, false)) in ModulePasses()
413 if (FileSpec::Equal (m_module_spec, module->GetFileSpec(), full_match)) in Search()
501 …if (module_sp && m_module_spec_list.FindFileIndex(0, module_sp->GetFileSpec(), false) != UINT32_MA… in ModulePasses()
563 if (m_module_spec_list.FindFileIndex(0, module->GetFileSpec(), false) != UINT32_MAX) in Search()
733 …if (no_modules_in_filter || m_module_spec_list.FindFileIndex(0, module_sp->GetFileSpec(), false) !… in Search()
/external/lldb/test/python_api/default-constructor/
Dsb_lineentry.py11 obj.GetFileSpec()
Dsb_compileunit.py9 obj.GetFileSpec()
Dsb_module.py9 obj.GetFileSpec()
/external/lldb/test/python_api/target/
DTestTargetAPI.py151 … if m.GetFileSpec().GetDirectory() == os.getcwd() and m.GetFileSpec().GetFilename() == exe_name:
169 self.assertTrue(sc.GetModule().GetFileSpec().GetFilename() == exe_name)
/external/lldb/source/Symbol/
DSymbolContext.cpp138 *s << module_sp->GetFileSpec(); in DumpStopContext()
140 *s << module_sp->GetFileSpec().GetFilename(); in DumpStopContext()
239 module_sp->GetFileSpec().Dump(s); in GetDescription()
334 module_sp->GetFileSpec().Dump(s); in Dump()
522 objfile->GetFileSpec().GetPath().c_str()); in GetParentOfInlinedScope()
788 if (!FileSpec::Equal (module_file_spec, sc.module_sp->GetFileSpec(), false)) in SymbolContextMatches()
899 m_module_sp->GetFileSpec().GetPath (path_str, PATH_MAX); in GetDescription()
/external/lldb/include/lldb/API/
DSBDeclaration.h35 GetFileSpec () const;

1234