Lines Matching refs:SBFileSpec
26 SBFileSpec::SBFileSpec() : m_opaque_ap(new lldb_private::FileSpec()) {} in SBFileSpec() function in SBFileSpec
28 SBFileSpec::SBFileSpec(const SBFileSpec &rhs) in SBFileSpec() function in SBFileSpec
31 SBFileSpec::SBFileSpec(const lldb_private::FileSpec &fspec) in SBFileSpec() function in SBFileSpec
35 SBFileSpec::SBFileSpec(const char *path) : m_opaque_ap(new FileSpec(path)) { in SBFileSpec() function in SBFileSpec
39 SBFileSpec::SBFileSpec(const char *path, bool resolve) in SBFileSpec() function in SBFileSpec
45 SBFileSpec::~SBFileSpec() {} in ~SBFileSpec()
47 const SBFileSpec &SBFileSpec::operator=(const SBFileSpec &rhs) { in operator =()
53 bool SBFileSpec::IsValid() const { return m_opaque_ap->operator bool(); } in IsValid()
55 bool SBFileSpec::Exists() const { in Exists()
68 bool SBFileSpec::ResolveExecutableLocation() { in ResolveExecutableLocation()
72 int SBFileSpec::ResolvePath(const char *src_path, char *dst_path, in ResolvePath()
80 const char *SBFileSpec::GetFilename() const { in GetFilename()
96 const char *SBFileSpec::GetDirectory() const { in GetDirectory()
112 void SBFileSpec::SetFilename(const char *filename) { in SetFilename()
119 void SBFileSpec::SetDirectory(const char *directory) { in SetDirectory()
126 uint32_t SBFileSpec::GetPath(char *dst_path, size_t dst_len) const { in GetPath()
142 const lldb_private::FileSpec *SBFileSpec::operator->() const { in operator ->()
146 const lldb_private::FileSpec *SBFileSpec::get() const { in get()
150 const lldb_private::FileSpec &SBFileSpec::operator*() const { in operator *()
154 const lldb_private::FileSpec &SBFileSpec::ref() const { return *m_opaque_ap; } in ref()
156 void SBFileSpec::SetFileSpec(const lldb_private::FileSpec &fs) { in SetFileSpec()
160 bool SBFileSpec::GetDescription(SBStream &description) const { in GetDescription()
168 void SBFileSpec::AppendPathComponent(const char *fn) { in AppendPathComponent()