| /openbsd/src/gnu/llvm/lldb/source/Breakpoint/ |
| D | BreakpointName.cpp | 70 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/ |
| D | FileSystem.cpp | 123 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()
|
| D | File.cpp | 234 uint32_t File::GetPermissions(Status &error) const { in GetPermissions() function in File
|
| /openbsd/src/gnu/llvm/lldb/include/lldb/Breakpoint/ |
| D | Breakpoint.h | 567 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()
|
| D | BreakpointName.h | 170 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/ |
| D | FileSystem.h | 93 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;
|
| D | File.h | 332 uint32_t GetPermissions(Status &error) const;
|
| /openbsd/src/gnu/llvm/lldb/source/API/ |
| D | SBBreakpointName.cpp | 614 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()
|
| D | SBSection.cpp | 227 uint32_t SBSection::GetPermissions() const { in GetPermissions() function in SBSection 232 return section_sp->GetPermissions(); in GetPermissions()
|
| D | SBPlatform.cpp | 511 uint32_t permissions = FileSystem::Instance().GetPermissions(src.ref()); in Put()
|
| /openbsd/src/gnu/llvm/lldb/include/lldb/API/ |
| D | SBSection.h | 68 GetPermissions() const;
|
| /openbsd/src/gnu/llvm/lldb/bindings/interface/ |
| D | SBSection.i | 95 GetPermissions() const;
|
| /openbsd/src/gnu/llvm/lldb/include/lldb/Target/ |
| D | Memory.h | 83 uint32_t GetPermissions() const { return m_permissions; } in GetPermissions() function
|
| /openbsd/src/gnu/llvm/lldb/include/lldb/Core/ |
| D | Section.h | 191 uint32_t GetPermissions() const;
|
| /openbsd/src/gnu/llvm/lldb/source/Target/ |
| D | RemoteAwarePlatform.cpp | 61 const uint32_t permissions = FileSystem::Instance().GetPermissions( in ResolveExecutable()
|
| D | Platform.cpp | 577 uint32_t permissions = FileSystem::Instance().GetPermissions(src); in Install() 1196 uint32_t permissions = source_file.get()->GetPermissions(error); in PutFile()
|
| D | Target.cpp | 762 bp_name.GetPermissions().MergeInto(new_permissions); in ConfigureBreakpointName() 1835 auto permissions = Flags(section_sp->GetPermissions()); in ReadMemory()
|
| /openbsd/src/gnu/llvm/lldb/source/Core/ |
| D | Section.cpp | 354 uint32_t Section::GetPermissions() const { in GetPermissions() function in Section
|
| /openbsd/src/gnu/llvm/lldb/source/Commands/ |
| D | CommandObjectBreakpoint.cpp | 1676 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/ |
| D | ProcessMachCore.cpp | 213 uint32_t permissions = section->GetPermissions(); in CreateMemoryRegions()
|
| /openbsd/src/gnu/llvm/lldb/source/Plugins/ObjectFile/ELF/ |
| D | ObjectFileELF.cpp | 1703 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/ |
| D | ProcessMinidump.cpp | 434 to_add.back().SetLLDBPermissions(section_sp->GetPermissions()); in BuildMemoryRegions()
|
| /openbsd/src/gnu/llvm/lldb/tools/lldb-test/ |
| D | lldb-test.cpp | 959 Printer.formatLine("Permissions: {0}", GetPermissionsAsCString(S->GetPermissions())); in dumpSectionList()
|
| /openbsd/src/gnu/llvm/lldb/source/Plugins/Process/gdb-remote/ |
| D | GDBRemoteCommunicationServerCommon.cpp | 673 const uint32_t mode = FileSystem::Instance().GetPermissions(file_spec, ec); in Handle_vFile_Mode()
|
| /openbsd/src/gnu/llvm/lldb/source/Plugins/ObjectFile/PECOFF/ |
| D | ObjectFilePECOFF.cpp | 919 if (section_sp->GetPermissions() & ePermissionsExecutable) in AppendFromExportTable()
|