Home
last modified time | relevance | path

Searched refs:fspec (Results 1 – 9 of 9) sorted by relevance

/external/lldb/include/lldb/Core/
DModuleSpec.h386 const FileSpec &fspec = match_module_spec.GetFileSpec(); in Matches() local
387 if (!FileSpec::Equal(fspec, GetFileSpec(), fspec.GetDirectory().IsEmpty() == false)) in Matches()
392 const FileSpec &fspec = match_module_spec.GetPlatformFileSpec(); in Matches() local
393 … if (!FileSpec::Equal(fspec, GetPlatformFileSpec(), fspec.GetDirectory().IsEmpty() == false)) in Matches()
399 const FileSpec &fspec = match_module_spec.GetSymbolFileSpec(); in Matches() local
400 … if (!FileSpec::Equal(fspec, GetSymbolFileSpec(), fspec.GetDirectory().IsEmpty() == false)) in Matches()
/external/selinux/policycoreutils/gui/
DfcontextPage.py174 fspec=store.get_value(iter, SPEC_COL)
177 … (rc, out) = commands.getstatusoutput("semanage fcontext -d -f '%s' '%s'" % (ftype, fspec))
189 fspec=self.fcontextEntry.get_text().strip()
195 …etstatusoutput("semanage fcontext -a -t %s -r %s -f '%s' '%s'" % (type, mls, ftype[active], fspec))
202 self.store.set_value(iter, SPEC_COL, fspec)
207 fspec=self.fcontextEntry.get_text().strip()
214 …mmands.getstatusoutput("semanage fcontext -m -t %s -r %s -f '%s' '%s'" % (type, mls, ftype, fspec))
221 self.store.set_value(iter, SPEC_COL, fspec)
/external/lldb/scripts/Python/interface/
DSBModuleSpec.i42 SetFileSpec (const lldb::SBFileSpec &fspec);
63 SetPlatformFileSpec (const lldb::SBFileSpec &fspec);
69 SetSymbolFileSpec (const lldb::SBFileSpec &fspec);
/external/lldb/include/lldb/API/
DSBModuleSpec.h51 SetFileSpec (const lldb::SBFileSpec &fspec);
72 SetPlatformFileSpec (const lldb::SBFileSpec &fspec);
78 SetSymbolFileSpec (const lldb::SBFileSpec &fspec);
DSBFileSpec.h73 SBFileSpec (const lldb_private::FileSpec& fspec);
76 SetFileSpec (const lldb_private::FileSpec& fspec);
/external/lldb/source/Plugins/SymbolVendor/ELF/
DSymbolVendorELF.cpp121 const FileSpec fspec = file_spec_list.GetFileSpecAtIndex (idx); in CreateInstance() local
125 module_spec.GetSymbolFileSpec() = fspec; in CreateInstance()
/external/lldb/source/API/
DSBFileSpec.cpp33 SBFileSpec::SBFileSpec (const lldb_private::FileSpec& fspec) : in SBFileSpec() argument
34 m_opaque_ap(new lldb_private::FileSpec(fspec)) in SBFileSpec()
/external/lldb/tools/lldb-perf/lib/
DXcode.cpp49 auto fspec = module.GetFileSpec(); in FetchModules() local
51 fspec.GetPath(&path[0],1024); in FetchModules()
/external/lldb/source/Symbol/
DCompileUnit.cpp37 CompileUnit::CompileUnit (const lldb::ModuleSP &module_sp, void *user_data, const FileSpec &fspec, … in CompileUnit() argument
39 FileSpec (fspec), in CompileUnit()