Home
last modified time | relevance | path

Searched refs:GetPermissions (Results 1 – 25 of 25) sorted by relevance

/llvm-project-15.0.7/lldb/source/Breakpoint/
H A DBreakpointName.cpp70 if (GetPermissions().AnySet()) in GetDescription()
75 GetPermissions().GetDescription(s, level); in GetDescription()
85 bp_sp->GetPermissions().MergeInto(GetPermissions()); in ConfigureBreakpoint()
/llvm-project-15.0.7/lldb/source/Host/common/
H A DFileSystem.cpp122 uint32_t FileSystem::GetPermissions(const FileSpec &file_spec) const { in GetPermissions() function in FileSystem
123 return GetPermissions(file_spec.GetPath()); in GetPermissions()
126 uint32_t FileSystem::GetPermissions(const FileSpec &file_spec, in GetPermissions() function in FileSystem
130 return GetPermissions(file_spec.GetPath(), ec); in GetPermissions()
133 uint32_t FileSystem::GetPermissions(const Twine &path) const { in GetPermissions() function in FileSystem
135 return GetPermissions(path, ec); in GetPermissions()
138 uint32_t FileSystem::GetPermissions(const Twine &path, in GetPermissions() function in FileSystem
155 return GetPermissions(path) & sys::fs::perms::all_read; in Readable()
H A DFile.cpp233 uint32_t File::GetPermissions(Status &error) const { in GetPermissions() function in File
/llvm-project-15.0.7/lldb/include/lldb/Breakpoint/
H A DBreakpoint.h561 const BreakpointName::Permissions &GetPermissions() const { in GetPermissions() function
565 BreakpointName::Permissions &GetPermissions() { in GetPermissions() function
570 return GetPermissions().GetAllowList(); in AllowList()
573 return GetPermissions().GetAllowDisable(); in AllowDisable()
576 return GetPermissions().GetAllowDelete(); in AllowDelete()
H A DBreakpointName.h170 Permissions &GetPermissions() { return m_permissions; } in GetPermissions() function
171 const Permissions &GetPermissions() const { return m_permissions; } in GetPermissions() function
/llvm-project-15.0.7/lldb/include/lldb/Host/
H A DFileSystem.h93 uint32_t GetPermissions(const FileSpec &file_spec) const;
94 uint32_t GetPermissions(const llvm::Twine &path) const;
95 uint32_t GetPermissions(const FileSpec &file_spec, std::error_code &ec) const;
96 uint32_t GetPermissions(const llvm::Twine &path, std::error_code &ec) const;
H A DFile.h331 uint32_t GetPermissions(Status &error) const;
/llvm-project-15.0.7/lldb/source/API/
H A DSBBreakpointName.cpp614 return bp_name->GetPermissions().GetAllowList(); in GetAllowList()
623 bp_name->GetPermissions().SetAllowList(value); in SetAllowList()
632 return bp_name->GetPermissions().GetAllowDelete(); in GetAllowDelete()
641 bp_name->GetPermissions().SetAllowDelete(value); in SetAllowDelete()
650 return bp_name->GetPermissions().GetAllowDisable(); in GetAllowDisable()
659 bp_name->GetPermissions().SetAllowDisable(value); in SetAllowDisable()
H A DSBSection.cpp227 uint32_t SBSection::GetPermissions() const { in GetPermissions() function in SBSection
232 return section_sp->GetPermissions(); in GetPermissions()
H A DSBPlatform.cpp511 uint32_t permissions = FileSystem::Instance().GetPermissions(src.ref()); in Put()
/llvm-project-15.0.7/lldb/unittests/Host/
H A DFileSystemTest.cpp211 TEST(FileSystemTest, GetPermissions) { in TEST() argument
214 EXPECT_EQ(sys::fs::all_all, fs.GetPermissions("/foo")); in TEST()
216 fs.GetPermissions(FileSpec("/foo", FileSpec::Style::posix))); in TEST()
326 EXPECT_EQ(llvm::sys::fs::perms::perms_not_known, fs.GetPermissions(spec)); in TEST()
/llvm-project-15.0.7/lldb/include/lldb/API/
H A DSBSection.h68 GetPermissions() const;
/llvm-project-15.0.7/lldb/bindings/interface/
H A DSBSection.i95 GetPermissions() const;
/llvm-project-15.0.7/lldb/include/lldb/Target/
H A DMemory.h83 uint32_t GetPermissions() const { return m_permissions; } in GetPermissions() function
/llvm-project-15.0.7/lldb/include/lldb/Core/
H A DSection.h191 uint32_t GetPermissions() const;
/llvm-project-15.0.7/lldb/source/Target/
H A DRemoteAwarePlatform.cpp60 const uint32_t permissions = FileSystem::Instance().GetPermissions( in ResolveExecutable()
H A DPlatform.cpp575 uint32_t permissions = FileSystem::Instance().GetPermissions(src); in Install()
1195 uint32_t permissions = source_file.get()->GetPermissions(error); in PutFile()
H A DTarget.cpp756 bp_name.GetPermissions().MergeInto(new_permissions); in ConfigureBreakpointName()
1789 auto permissions = Flags(section_sp->GetPermissions()); in ReadMemory()
/llvm-project-15.0.7/lldb/source/Core/
H A DSection.cpp354 uint32_t Section::GetPermissions() const { in GetPermissions() function in Section
/llvm-project-15.0.7/lldb/source/Commands/
H A DCommandObjectBreakpoint.cpp1675 const BreakpointName::Permissions &GetPermissions() const { in GetPermissions() function in BreakpointAccessOptionGroup
1761 m_access_options.GetPermissions()); in DoExecute()
1765 m_access_options.GetPermissions()); in DoExecute()
/llvm-project-15.0.7/lldb/source/Plugins/Process/mach-core/
H A DProcessMachCore.cpp333 uint32_t permissions = section->GetPermissions(); in DoLoadCore()
/llvm-project-15.0.7/lldb/source/Plugins/ObjectFile/ELF/
H A DObjectFileELF.cpp1686 static Permissions GetPermissions(const ELFSectionHeader &H) { in GetPermissions() function
1697 static Permissions GetPermissions(const ELFProgramHeader &H) { in GetPermissions() function
1836 Segment->SetPermissions(GetPermissions(PHdr)); in CreateSections()
1884 section_sp->SetPermissions(GetPermissions(header)); in CreateSections()
/llvm-project-15.0.7/lldb/source/Plugins/Process/minidump/
H A DProcessMinidump.cpp432 to_add.back().SetLLDBPermissions(section_sp->GetPermissions()); in BuildMemoryRegions()
/llvm-project-15.0.7/lldb/tools/lldb-test/
H A Dlldb-test.cpp861 Printer.formatLine("Permissions: {0}", GetPermissionsAsCString(S->GetPermissions())); in dumpSectionList()
/llvm-project-15.0.7/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServerCommon.cpp674 const uint32_t mode = FileSystem::Instance().GetPermissions(file_spec, ec); in Handle_vFile_Mode()