Searched refs:GetFileSpec (Results 1 - 25 of 95) sorted by relevance

1234

/external/lldb/test/python_api/default-constructor/
H A Dsb_lineentry.py11 obj.GetFileSpec()
H A Dsb_compileunit.py9 obj.GetFileSpec()
H A Dsb_module.py9 obj.GetFileSpec()
/external/lldb/scripts/Python/interface/
H A 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 object that represents the file (lldb.SBFileSpec) for this line entry.''')
H A DSBCompileUnit.i24 print 'line entry: %s:%d' % (str(lineEntry.GetFileSpec()),
61 GetFileSpec () const;
119 __swig_getmethods__["file"] = GetFileSpec
120 if _newclass: file = property(GetFileSpec, None, doc='''A read only property that returns the same result an lldb object that represents the source file (lldb.SBFileSpec) for the compile unit.''')
H A DSBLineEntry.i17 print 'line entry: %s:%d' % (str(lineEntry.GetFileSpec()),
60 GetFileSpec () const;
87 __swig_getmethods__["file"] = GetFileSpec
88 if _newclass: file = property(GetFileSpec, None, doc='''A read only property that returns an lldb object that represents the file (lldb.SBFileSpec) for this line entry.''')
H A DSBModuleSpec.i39 GetFileSpec ();
49 /// debugging this is always the same as Module::GetFileSpec(). But
/external/lldb/source/Plugins/SymbolVendor/ELF/
H A DSymbolVendorELF.cpp116 module_sp->GetFileSpec().GetPath().c_str());
123 module_spec.GetFileSpec() = obj_file->GetFileSpec();
124 module_spec.GetFileSpec().ResolvePath();
/external/lldb/source/Plugins/SymbolVendor/MacOSX/
H A DSymbolVendorMacOSX.cpp60 ofile->GetFileSpec().Dump(feedback_strm);
75 module->GetFileSpec().Dump(feedback_strm);
79 ofile->GetFileSpec().Dump(feedback_strm);
140 module_sp->GetFileSpec().GetPath().c_str());
150 module_sp->GetFileSpec().GetPath().c_str());
161 FileSpec file_spec = obj_file->GetFileSpec();
163 file_spec = module_sp->GetFileSpec();
/external/lldb/source/Host/common/
H A DSymbols.cpp44 const ConstString &file_dir = module_spec.GetFileSpec().GetDirectory();
66 std::string module_filename = module_spec.GetFileSpec().GetPath();
90 if (file_spec == module_spec.GetFileSpec())
126 // Fill in the module_spec.GetFileSpec() for the object file and/or the
158 // Fill in the module_spec.GetFileSpec() for the object file and/or the
/external/lldb/include/lldb/API/
H A DSBDeclaration.h35 GetFileSpec () const;
H A DSBCompileUnit.h35 GetFileSpec () const;
H A DSBLineEntry.h42 GetFileSpec () const;
H A DSBModuleSpec.h48 GetFileSpec ();
58 /// debugging this is always the same as Module::GetFileSpec(). But
/external/lldb/examples/python/
H A 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())
H A Djump.py32 breakpoint = target.BreakpointCreateByLocation (line_entry.GetFileSpec(), line_number)
44 breakpoint = target.BreakpointCreateByLocation(line_entry.GetFileSpec(), (line_entry.GetLine() + line_number))
56 breakpoint = target.BreakpointCreateByLocation(line_entry.GetFileSpec(), (line_entry.GetLine() - line_number))
/external/lldb/source/Target/
H A DSectionLoadList.cpp66 const FileSpec &module_file_spec (section->GetModule()->GetFileSpec());
115 module_sp->GetFileSpec().GetFilename().GetCString(),
117 curr_module_sp->GetFileSpec().GetFilename().GetCString(),
141 const FileSpec &module_file_spec (section_sp->GetModule()->GetFileSpec());
173 const FileSpec &module_file_spec (section_sp->GetModule()->GetFileSpec());
H A DTargetList.cpp93 module_spec.GetFileSpec().SetFile(user_exe_path, true);
96 const size_t num_specs = ObjectFile::GetModuleSpecifications (module_spec.GetFileSpec(), file_offset, file_size, module_specs);
112 module_spec.GetFileSpec().GetPath().c_str());
295 exe_module_sp->GetFileSpec().GetPath(resolved_bundle_exe_path, sizeof(resolved_bundle_exe_path));
375 if (FileSpec::Equal (exe_file_spec, exe_module->GetFileSpec(), full_match))
/external/lldb/source/API/
H A DSBModuleSpec.cpp57 SBModuleSpec::GetFileSpec () function in class:SBModuleSpec
59 SBFileSpec sb_spec(m_opaque_ap->GetFileSpec());
66 m_opaque_ap->GetFileSpec() = *sb_spec;
/external/lldb/test/python_api/symbol-context/
H A DTestSymbolContext.py86 self.expect(lineEntry.GetFileSpec().GetDirectory(), "The line entry should have the correct directory",
89 self.expect(lineEntry.GetFileSpec().GetFilename(), "The line entry should have the correct filename",
/external/lldb/test/functionalities/fat_archives/
H A DTestFatArchives.py55 self.assertTrue(line_entry.GetFileSpec(), "Verify breakpoint in fat BSD archive has source file information")
/external/lldb/test/lang/c/stepping/
H A DTestStepAndBreakpoints.py107 current_file = frame.GetLineEntry().GetFileSpec()
119 self.assertTrue (current_file == frame.GetLineEntry().GetFileSpec(), "The file stayed the same after expression.")
138 self.assertTrue (current_file == frame.GetLineEntry().GetFileSpec(), "The file stayed the same after expression.")
163 current_file = frame.GetLineEntry().GetFileSpec()
184 self.assertTrue (thread.GetFrameAtIndex(0).GetLineEntry().GetFileSpec() == current_file)
/external/lldb/include/lldb/Core/
H A DModuleSpec.h111 GetFileSpec () function in class:lldb_private::ModuleSpec
116 GetFileSpec () const function in class:lldb_private::ModuleSpec
386 const FileSpec &fspec = match_module_spec.GetFileSpec();
387 if (!FileSpec::Equal(fspec, GetFileSpec(), fspec.GetDirectory().IsEmpty() == false))
/external/lldb/source/Plugins/Platform/MacOSX/
H A DPlatformDarwin.cpp66 FileSpec module_spec = module.GetFileSpec();
79 FileSpec symfile_spec (objfile->GetFileSpec());
306 const FileSpec &platform_file = module_spec.GetFileSpec();
317 new_module_spec.GetFileSpec() = bundle_directory;
318 if (Host::ResolveExecutableInBundle (new_module_spec.GetFileSpec()))
348 new_module_spec.GetFileSpec() = new_file_spec;
368 module_sp->SetPlatformFileSpec(module_spec.GetFileSpec());
/external/lldb/source/Commands/
H A DCommandObjectTarget.cpp69 exe_valid = exe_module->GetFileSpec().GetPath (exe_path, sizeof(exe_path));
739 sc.module_sp->GetFileSpec().GetPath().c_str());
744 sc.module_sp->GetFileSpec().GetPath().c_str());
1380 << module->GetFileSpec().GetFilename() << "\n";
1609 DumpFullpath (strm, &module->GetFileSpec(), 0);
1699 DumpFullpath (strm, &module->GetFileSpec(), 0);
1730 DumpFullpath (strm, &module->GetFileSpec(), 0);
1785 DumpFullpath (strm, &sym_ctx.module_sp->GetFileSpec(), 0);
1835 DumpFullpath (strm, &module->GetFileSpec(), 0);
2641 if (module_spec.GetFileSpec())
[all...]

Completed in 9584 milliseconds

1234