Lines Matching refs:SBFileSpec
26 SBFileSpec::SBFileSpec() : m_opaque_up(new lldb_private::FileSpec()) { in SBFileSpec() function in SBFileSpec
30 SBFileSpec::SBFileSpec(const SBFileSpec &rhs) { in SBFileSpec() function in SBFileSpec
36 SBFileSpec::SBFileSpec(const lldb_private::FileSpec &fspec) in SBFileSpec() function in SBFileSpec
40 SBFileSpec::SBFileSpec(const char *path) : m_opaque_up(new FileSpec(path)) { in SBFileSpec() function in SBFileSpec
46 SBFileSpec::SBFileSpec(const char *path, bool resolve) in SBFileSpec() function in SBFileSpec
54 SBFileSpec::~SBFileSpec() = default;
56 const SBFileSpec &SBFileSpec::operator=(const SBFileSpec &rhs) { in operator =()
64 bool SBFileSpec::operator==(const SBFileSpec &rhs) const { in operator ==()
70 bool SBFileSpec::operator!=(const SBFileSpec &rhs) const { in operator !=()
76 bool SBFileSpec::IsValid() const { in IsValid()
80 SBFileSpec::operator bool() const { in operator bool()
86 bool SBFileSpec::Exists() const { in Exists()
92 bool SBFileSpec::ResolveExecutableLocation() { in ResolveExecutableLocation()
98 int SBFileSpec::ResolvePath(const char *src_path, char *dst_path, in ResolvePath()
108 const char *SBFileSpec::GetFilename() const { in GetFilename()
114 const char *SBFileSpec::GetDirectory() const { in GetDirectory()
122 void SBFileSpec::SetFilename(const char *filename) { in SetFilename()
131 void SBFileSpec::SetDirectory(const char *directory) { in SetDirectory()
140 uint32_t SBFileSpec::GetPath(char *dst_path, size_t dst_len) const { in GetPath()
150 const lldb_private::FileSpec *SBFileSpec::operator->() const { in operator ->()
154 const lldb_private::FileSpec *SBFileSpec::get() const { in get()
158 const lldb_private::FileSpec &SBFileSpec::operator*() const { in operator *()
162 const lldb_private::FileSpec &SBFileSpec::ref() const { return *m_opaque_up; } in ref()
164 void SBFileSpec::SetFileSpec(const lldb_private::FileSpec &fs) { in SetFileSpec()
168 bool SBFileSpec::GetDescription(SBStream &description) const { in GetDescription()
178 void SBFileSpec::AppendPathComponent(const char *fn) { in AppendPathComponent()