Home
last modified time | relevance | path

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

/openbsd/src/gnu/llvm/lldb/source/Breakpoint/
DBreakpointName.cpp70 if (GetPermissions().AnySet()) in GetDescription()
75 GetPermissions().GetDescription(s, level); in GetDescription()
85 bp_sp->GetPermissions().MergeInto(GetPermissions()); in ConfigureBreakpoint()
/openbsd/src/gnu/llvm/lldb/source/Host/common/
DFileSystem.cpp123 uint32_t FileSystem::GetPermissions(const FileSpec &file_spec) const { in GetPermissions() function in FileSystem
124 return GetPermissions(file_spec.GetPath()); in GetPermissions()
127 uint32_t FileSystem::GetPermissions(const FileSpec &file_spec, in GetPermissions() function in FileSystem
131 return GetPermissions(file_spec.GetPath(), ec); in GetPermissions()
134 uint32_t FileSystem::GetPermissions(const Twine &path) const { in GetPermissions() function in FileSystem
136 return GetPermissions(path, ec); in GetPermissions()
139 uint32_t FileSystem::GetPermissions(const Twine &path, in GetPermissions() function in FileSystem
156 return GetPermissions(path) & sys::fs::perms::all_read; in Readable()
DFile.cpp234 uint32_t File::GetPermissions(Status &error) const { in GetPermissions() function in File
/openbsd/src/gnu/llvm/lldb/include/lldb/Breakpoint/
DBreakpoint.h567 const BreakpointName::Permissions &GetPermissions() const { in GetPermissions() function
571 BreakpointName::Permissions &GetPermissions() { in GetPermissions() function
576 return GetPermissions().GetAllowList(); in AllowList()
579 return GetPermissions().GetAllowDisable(); in AllowDisable()
582 return GetPermissions().GetAllowDelete(); in AllowDelete()
DBreakpointName.h170 Permissions &GetPermissions() { return m_permissions; } in GetPermissions() function
171 const Permissions &GetPermissions() const { return m_permissions; } in GetPermissions() function
/openbsd/src/gnu/llvm/lldb/include/lldb/Host/
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;
DFile.h332 uint32_t GetPermissions(Status &error) const;
/openbsd/src/gnu/llvm/lldb/source/API/
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()
DSBSection.cpp227 uint32_t SBSection::GetPermissions() const { in GetPermissions() function in SBSection
232 return section_sp->GetPermissions(); in GetPermissions()
DSBPlatform.cpp511 uint32_t permissions = FileSystem::Instance().GetPermissions(src.ref()); in Put()
/openbsd/src/gnu/llvm/lldb/include/lldb/API/
DSBSection.h68 GetPermissions() const;
/openbsd/src/gnu/llvm/lldb/bindings/interface/
DSBSection.i95 GetPermissions() const;
/openbsd/src/gnu/llvm/lldb/include/lldb/Target/
DMemory.h83 uint32_t GetPermissions() const { return m_permissions; } in GetPermissions() function
/openbsd/src/gnu/llvm/lldb/include/lldb/Core/
DSection.h191 uint32_t GetPermissions() const;
/openbsd/src/gnu/llvm/lldb/source/Target/
DRemoteAwarePlatform.cpp61 const uint32_t permissions = FileSystem::Instance().GetPermissions( in ResolveExecutable()
DPlatform.cpp577 uint32_t permissions = FileSystem::Instance().GetPermissions(src); in Install()
1196 uint32_t permissions = source_file.get()->GetPermissions(error); in PutFile()
DTarget.cpp762 bp_name.GetPermissions().MergeInto(new_permissions); in ConfigureBreakpointName()
1835 auto permissions = Flags(section_sp->GetPermissions()); in ReadMemory()
/openbsd/src/gnu/llvm/lldb/source/Core/
DSection.cpp354 uint32_t Section::GetPermissions() const { in GetPermissions() function in Section
/openbsd/src/gnu/llvm/lldb/source/Commands/
DCommandObjectBreakpoint.cpp1676 const BreakpointName::Permissions &GetPermissions() const { in GetPermissions() function in BreakpointAccessOptionGroup
1762 m_access_options.GetPermissions()); in DoExecute()
1766 m_access_options.GetPermissions()); in DoExecute()
/openbsd/src/gnu/llvm/lldb/source/Plugins/Process/mach-core/
DProcessMachCore.cpp213 uint32_t permissions = section->GetPermissions(); in CreateMemoryRegions()
/openbsd/src/gnu/llvm/lldb/source/Plugins/ObjectFile/ELF/
DObjectFileELF.cpp1703 static Permissions GetPermissions(const ELFSectionHeader &H) { in GetPermissions() function
1714 static Permissions GetPermissions(const ELFProgramHeader &H) { in GetPermissions() function
1853 Segment->SetPermissions(GetPermissions(PHdr)); in CreateSections()
1901 section_sp->SetPermissions(GetPermissions(header)); in CreateSections()
/openbsd/src/gnu/llvm/lldb/source/Plugins/Process/minidump/
DProcessMinidump.cpp434 to_add.back().SetLLDBPermissions(section_sp->GetPermissions()); in BuildMemoryRegions()
/openbsd/src/gnu/llvm/lldb/tools/lldb-test/
Dlldb-test.cpp959 Printer.formatLine("Permissions: {0}", GetPermissionsAsCString(S->GetPermissions())); in dumpSectionList()
/openbsd/src/gnu/llvm/lldb/source/Plugins/Process/gdb-remote/
DGDBRemoteCommunicationServerCommon.cpp673 const uint32_t mode = FileSystem::Instance().GetPermissions(file_spec, ec); in Handle_vFile_Mode()
/openbsd/src/gnu/llvm/lldb/source/Plugins/ObjectFile/PECOFF/
DObjectFilePECOFF.cpp919 if (section_sp->GetPermissions() & ePermissionsExecutable) in AppendFromExportTable()