Searched refs:GetFilename (Results 1 - 25 of 66) sorted by relevance

123

/freebsd-11-stable/contrib/llvm-project/lldb/bindings/interface/
H A DSBFileSpec.i22 self.expect(lineEntry.GetFileSpec().GetFilename(), 'The line entry should have the correct filename',
60 GetFilename() const;
89 spec_file = self.GetFilename()
99 basename = property(GetFilename, None, doc='''A read only property that returns the path basename as a python string.''')
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/posix/
H A DHostProcessPosix.cpp70 if (file_spec.GetFilename().GetStringRef().endswith(" (deleted)")) {
71 const char *filename = file_spec.GetFilename().GetCString();
73 const size_t len = file_spec.GetFilename().GetLength();
74 file_spec.GetFilename().SetCStringWithLength(filename, len - deleted_len);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/
H A DAddressResolverFileLine.cpp68 m_file_spec.GetFilename().AsCString("<Unknown>"),
82 m_file_spec.GetFilename().AsCString("<Unknown>"), m_line_number);
H A DFileSpecList.cpp72 m_files[idx].GetFilename(), file_spec.GetFilename(),
H A DAddressRange.cpp186 s->Printf("%s", module_sp->GetFileSpec().GetFilename().AsCString(
H A DSearchFilter.cpp460 s->PutCString(m_module_spec.GetFilename().AsCString("<Unknown>"));
593 m_module_spec_list.GetFileSpecAtIndex(0).GetFilename().AsCString(
601 m_module_spec_list.GetFileSpecAtIndex(i).GetFilename().AsCString(
815 m_module_spec_list.GetFileSpecAtIndex(0).GetFilename().AsCString(
821 m_module_spec_list.GetFileSpecAtIndex(i).GetFilename().AsCString(
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/
H A DSBFileSpec.cpp113 const char *SBFileSpec::GetFilename() const { function in class:SBFileSpec
114 LLDB_RECORD_METHOD_CONST_NO_ARGS(const char *, SBFileSpec, GetFilename);
116 return m_opaque_up->GetFilename().AsCString();
123 directory.GetFilename().Clear();
131 m_opaque_up->GetFilename().SetCString(filename);
133 m_opaque_up->GetFilename().Clear();
212 LLDB_REGISTER_METHOD_CONST(const char *, SBFileSpec, GetFilename, ());
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/
H A DLocateSymbolFile.cpp79 ConstString filename = exec_fspec.GetFilename();
185 const char *fn = parent_dirs.GetFilename().AsCString();
215 exec_fspec ? exec_fspec->GetFilename().AsCString("<NULL>") : "<NULL>",
239 exec_fspec ? exec_fspec.GetFilename().AsCString("<NULL>") : "<NULL>",
331 if (symbol_file_spec.GetFilename()) {
333 symbol_file_spec.GetFilename().GetCString());
335 symbol_file_spec.GetFilename().GetCString());
341 symbol_file_spec.GetFilename().GetCString());
H A DDeclaration.cpp20 *s << m_file.GetFilename();
47 m_file.GetFilename().Dump(s);
H A DLineEntry.cpp56 file.GetFilename().Dump(s);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/
H A DInstrumentationRuntime.cpp58 if (runtime_regex.Execute(file_spec.GetFilename().GetCString()) ||
H A DSectionLoadList.cpp110 load_addr, module_sp->GetFileSpec().GetFilename().GetCString(),
112 curr_module_sp->GetFileSpec().GetFilename().GetCString(),
H A DPlatform.cpp562 if (!dst_dir.GetFilename())
563 dst_dir.GetFilename() = src.GetLastPathComponent();
593 if (!dst_file.GetFilename())
594 dst_file.GetFilename() = src.GetFilename();
615 if (!dst_file.GetFilename())
616 dst_file.GetFilename() = src.GetFilename();
642 if (!fixed_dst.GetFilename())
643 fixed_dst.GetFilename()
[all...]
H A DModuleCache.cpp196 JoinPath(module_spec_dir, target_file.GetFilename().AsCString());
229 module_spec_dir, module_spec.GetFileSpec().GetFilename().AsCString());
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/
H A DFileSpec.h234 ConstString &GetFilename();
240 ConstString GetFilename() const;
H A DReproducer.h159 : m_filename(filename.GetFilename().GetStringRef()),
163 const FileSpec &GetFilename() { return m_filename; } function in class:lldb_private::repro::AbstractRecorder
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/API/
H A DSBFileSpec.h43 const char *GetFilename() const;
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangUtilityFunction.cpp134 jit_file.GetFilename() = const_func_name;
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/
H A DCommandCompletions.cpp340 m_file_name = partial_spec.GetFilename().GetCString();
358 const char *sfile_file_name = sfile_spec.GetFilename().GetCString();
359 const char *sfile_dir_name = sfile_spec.GetFilename().GetCString();
374 context.comp_unit->GetPrimaryFile().GetFilename().GetCString();
401 m_matching_files.GetFileSpecAtIndex(i).GetFilename().GetCString());
473 m_file_name = partial_spec.GetFilename().GetCString();
485 context.module_sp->GetFileSpec().GetFilename().GetCString();
H A DCommandObjectSource.cpp171 ConstString module_file_name = module->GetFileSpec().GetFilename();
205 assert(file_spec.GetFilename().AsCString());
216 ConstString file_spec_name = file_spec.GetFilename();
217 ConstString module_file_name = module->GetFileSpec().GetFilename();
248 << cu->GetPrimaryFile().GetFilename() << " in `"
766 if (line_entry.file.GetFilename().GetCString() <
767 rhs.line_entry.file.GetFilename().GetCString())
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/
H A DProcessInfo.cpp42 return m_executable.GetFilename().GetCString();
46 return m_executable.GetFilename().GetStringRef();
120 s.Printf(" name = %s\n", m_executable.GetFilename().GetCString());
H A DFileSpec.cpp305 if (pattern.GetFilename())
341 ConstString &FileSpec::GetFilename() { return m_filename; } function in class:FileSpec
344 ConstString FileSpec::GetFilename() const { return m_filename; } function in class:FileSpec
507 StringRef file = F.GetFilename().GetStringRef();
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/common/
H A DFileSystem.cpp272 if (file_spec.GetFilename().IsEmpty())
321 ConstString filename = file_spec.GetFilename();
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/freebsd/
H A DHost.cpp82 NameMatches(process_info.GetExecutableFile().GetFilename().GetCString(),
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/openbsd/
H A DHost.cpp78 process_info.GetExecutableFile().GetFilename().GetCString(),

Completed in 235 milliseconds

123