Lines Matching defs:file_spec

78 Status RemoteAwarePlatform::MakeDirectory(const FileSpec &file_spec,
81 return m_remote_platform_sp->MakeDirectory(file_spec, file_permissions);
82 return Platform::MakeDirectory(file_spec, file_permissions);
85 Status RemoteAwarePlatform::GetFilePermissions(const FileSpec &file_spec,
88 return m_remote_platform_sp->GetFilePermissions(file_spec,
90 return Platform::GetFilePermissions(file_spec, file_permissions);
93 Status RemoteAwarePlatform::SetFilePermissions(const FileSpec &file_spec,
96 return m_remote_platform_sp->SetFilePermissions(file_spec,
98 return Platform::SetFilePermissions(file_spec, file_permissions);
101 lldb::user_id_t RemoteAwarePlatform::OpenFile(const FileSpec &file_spec,
105 return m_remote_platform_sp->OpenFile(file_spec, flags, mode, error);
106 return Platform::OpenFile(file_spec, flags, mode, error);
131 lldb::user_id_t RemoteAwarePlatform::GetFileSize(const FileSpec &file_spec) {
133 return m_remote_platform_sp->GetFileSize(file_spec);
134 return Platform::GetFileSize(file_spec);
144 bool RemoteAwarePlatform::GetFileExists(const FileSpec &file_spec) {
146 return m_remote_platform_sp->GetFileExists(file_spec);
147 return Platform::GetFileExists(file_spec);
150 Status RemoteAwarePlatform::Unlink(const FileSpec &file_spec) {
152 return m_remote_platform_sp->Unlink(file_spec);
153 return Platform::Unlink(file_spec);
157 RemoteAwarePlatform::CalculateMD5(const FileSpec &file_spec) {
159 return m_remote_platform_sp->CalculateMD5(file_spec);
160 return Platform::CalculateMD5(file_spec);