Home
last modified time | relevance | path

Searched refs:GetFilePermissions (Results 1 – 12 of 12) sorted by relevance

/external/llvm-project/lldb/source/Target/
DRemoteAwarePlatform.cpp202 Status RemoteAwarePlatform::GetFilePermissions(const FileSpec &file_spec, in GetFilePermissions() function in RemoteAwarePlatform
205 return m_remote_platform_sp->GetFilePermissions(file_spec, in GetFilePermissions()
207 return Platform::GetFilePermissions(file_spec, file_permissions); in GetFilePermissions()
DPlatform.cpp779 Status Platform::GetFilePermissions(const FileSpec &file_spec, in GetFilePermissions() function in Platform
/external/llvm-project/lldb/bindings/interface/
DSBPlatform.i196 GetFilePermissions (const char *path);
/external/llvm-project/lldb/source/API/
DSBPlatform.cpp655 uint32_t SBPlatform::GetFilePermissions(const char *path) { in GetFilePermissions() function in SBPlatform
656 LLDB_RECORD_METHOD(uint32_t, SBPlatform, GetFilePermissions, (const char *), in GetFilePermissions()
662 platform_sp->GetFilePermissions(FileSpec(path), file_permissions); in GetFilePermissions()
791 LLDB_REGISTER_METHOD(uint32_t, SBPlatform, GetFilePermissions, in RegisterMethods()
/external/llvm-project/lldb/include/lldb/API/
DSBPlatform.h156 uint32_t GetFilePermissions(const char *path);
/external/llvm-project/lldb/include/lldb/Target/
DRemoteAwarePlatform.h54 Status GetFilePermissions(const FileSpec &file_spec,
DPlatform.h507 virtual Status GetFilePermissions(const FileSpec &file_spec,
/external/llvm-project/lldb/source/Plugins/Platform/gdb-server/
DPlatformRemoteGDBServer.h111 Status GetFilePermissions(const FileSpec &file_spec,
DPlatformRemoteGDBServer.cpp624 Status PlatformRemoteGDBServer::GetFilePermissions(const FileSpec &file_spec, in GetFilePermissions() function in PlatformRemoteGDBServer
626 Status error = m_gdb_client.GetFilePermissions(file_spec, file_permissions); in GetFilePermissions()
/external/llvm-project/lldb/source/Plugins/Process/gdb-remote/
DGDBRemoteCommunicationClient.h382 Status GetFilePermissions(const FileSpec &file_spec,
DGDBRemoteCommunicationClient.cpp3022 GDBRemoteCommunicationClient::GetFilePermissions(const FileSpec &file_spec, in GetFilePermissions() function in GDBRemoteCommunicationClient
/external/llvm-project/lldb/source/Plugins/Platform/POSIX/
DPlatformPOSIX.cpp215 error = GetFilePermissions(source, permissions); in GetFile()