| /freebsd-12-stable/contrib/llvm-project/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()
|
| /freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/Breakpoint/ |
| D | Breakpoint.h | 556 const BreakpointName::Permissions &GetPermissions() const { in GetPermissions() function 560 BreakpointName::Permissions &GetPermissions() { in GetPermissions() function 565 return GetPermissions().GetAllowList(); in AllowList() 568 return GetPermissions().GetAllowDisable(); in AllowDisable() 571 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
|
| /freebsd-12-stable/contrib/llvm-project/lldb/source/Host/common/ |
| D | FileSystem.cpp | 142 uint32_t FileSystem::GetPermissions(const FileSpec &file_spec) const { in GetPermissions() function in FileSystem 143 return GetPermissions(file_spec.GetPath()); in GetPermissions() 146 uint32_t FileSystem::GetPermissions(const FileSpec &file_spec, in GetPermissions() function in FileSystem 150 return GetPermissions(file_spec.GetPath(), ec); in GetPermissions() 153 uint32_t FileSystem::GetPermissions(const Twine &path) const { in GetPermissions() function in FileSystem 155 return GetPermissions(path, ec); in GetPermissions() 158 uint32_t FileSystem::GetPermissions(const Twine &path, in GetPermissions() function in FileSystem 175 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
|
| /freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/Host/ |
| D | FileSystem.h | 103 uint32_t GetPermissions(const FileSpec &file_spec) const; 104 uint32_t GetPermissions(const llvm::Twine &path) const; 105 uint32_t GetPermissions(const FileSpec &file_spec, std::error_code &ec) const; 106 uint32_t GetPermissions(const llvm::Twine &path, std::error_code &ec) const;
|
| D | File.h | 325 uint32_t GetPermissions(Status &error) const;
|
| /freebsd-12-stable/contrib/llvm-project/lldb/source/API/ |
| D | SBSection.cpp | 235 uint32_t SBSection::GetPermissions() const { in GetPermissions() function in SBSection 236 LLDB_RECORD_METHOD_CONST_NO_ARGS(uint32_t, SBSection, GetPermissions); in GetPermissions() 240 return section_sp->GetPermissions(); in GetPermissions() 320 LLDB_REGISTER_METHOD_CONST(uint32_t, SBSection, GetPermissions, ()); in RegisterMethods()
|
| D | SBBreakpointName.cpp | 639 return bp_name->GetPermissions().GetAllowList(); in GetAllowList() 649 bp_name->GetPermissions().SetAllowList(value); in SetAllowList() 658 return bp_name->GetPermissions().GetAllowDelete(); in GetAllowDelete() 668 bp_name->GetPermissions().SetAllowDelete(value); in SetAllowDelete() 677 return bp_name->GetPermissions().GetAllowDisable(); in GetAllowDisable() 686 bp_name->GetPermissions().SetAllowDisable(value); in SetAllowDisable()
|
| D | SBPlatform.cpp | 547 FileSystem::Instance().GetPermissions(src.ref()); in Put()
|
| /freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/API/ |
| D | SBSection.h | 68 GetPermissions() const;
|
| /freebsd-12-stable/contrib/llvm-project/lldb/bindings/interface/ |
| D | SBSection.i | 95 GetPermissions() const;
|
| /freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/Target/ |
| D | Memory.h | 83 uint32_t GetPermissions() const { return m_permissions; } in GetPermissions() function
|
| /freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/Core/ |
| D | Section.h | 185 uint32_t GetPermissions() const;
|
| /freebsd-12-stable/contrib/llvm-project/lldb/source/Target/ |
| D | RemoteAwarePlatform.cpp | 61 const uint32_t permissions = FileSystem::Instance().GetPermissions( in ResolveExecutable()
|
| D | Platform.cpp | 707 uint32_t permissions = FileSystem::Instance().GetPermissions(src); in Install() 1238 uint32_t permissions = source_file.get()->GetPermissions(error); in PutFile()
|
| D | Target.cpp | 741 bp_name.GetPermissions().MergeInto(new_permissions); in ConfigureBreakpointName() 1767 auto permissions = Flags(section_sp->GetPermissions()); in ReadMemory()
|
| /freebsd-12-stable/contrib/llvm-project/lldb/source/Core/ |
| D | Section.cpp | 368 uint32_t Section::GetPermissions() const { in GetPermissions() function in Section
|
| /freebsd-12-stable/contrib/llvm-project/lldb/source/Commands/ |
| D | CommandObjectBreakpoint.cpp | 1670 const BreakpointName::Permissions &GetPermissions() const { in GetPermissions() function in BreakpointAccessOptionGroup 1757 m_access_options.GetPermissions()); in DoExecute() 1761 m_access_options.GetPermissions()); in DoExecute()
|
| /freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/ObjectFile/ELF/ |
| D | ObjectFileELF.cpp | 1656 static Permissions GetPermissions(const ELFSectionHeader &H) { in GetPermissions() function 1667 static Permissions GetPermissions(const ELFProgramHeader &H) { in GetPermissions() function 1806 Segment->SetPermissions(GetPermissions(PHdr)); in CreateSections() 1854 section_sp->SetPermissions(GetPermissions(header)); in CreateSections()
|
| /freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/Process/minidump/ |
| D | ProcessMinidump.cpp | 438 to_add.back().SetLLDBPermissions(section_sp->GetPermissions()); in BuildMemoryRegions()
|
| /freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/ |
| D | GDBRemoteCommunicationServerCommon.cpp | 660 const uint32_t mode = FileSystem::Instance().GetPermissions(file_spec, ec); in Handle_vFile_Mode()
|
| /freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/ |
| D | SymbolFileDWARF.cpp | 2191 if (section_sp->GetPermissions() & ePermissionsExecutable) { in ResolveFunction()
|
| /freebsd-12-stable/lib/clang/liblldb/ |
| D | LLDBWrapLua.cpp | 43065 result = (uint32_t)((lldb::SBSection const *)arg1)->GetPermissions(); in _wrap_SBSection_GetPermissions()
|