Lines Matching defs:file_spec
540 Status PlatformRemoteGDBServer::MakeDirectory(const FileSpec &file_spec,
544 Status error = m_gdb_client_up->MakeDirectory(file_spec, mode);
549 file_spec.GetPath().c_str(), mode, error.GetError(),
554 Status PlatformRemoteGDBServer::GetFilePermissions(const FileSpec &file_spec,
559 m_gdb_client_up->GetFilePermissions(file_spec, file_permissions);
564 file_spec.GetPath().c_str(), file_permissions, error.GetError(),
569 Status PlatformRemoteGDBServer::SetFilePermissions(const FileSpec &file_spec,
574 m_gdb_client_up->SetFilePermissions(file_spec, file_permissions);
579 file_spec.GetPath().c_str(), file_permissions, error.GetError(),
584 lldb::user_id_t PlatformRemoteGDBServer::OpenFile(const FileSpec &file_spec,
589 return m_gdb_client_up->OpenFile(file_spec, flags, mode, error);
601 PlatformRemoteGDBServer::GetFileSize(const FileSpec &file_spec) {
603 return m_gdb_client_up->GetFileSize(file_spec);
653 Status PlatformRemoteGDBServer::Unlink(const FileSpec &file_spec) {
656 Status error = m_gdb_client_up->Unlink(file_spec);
659 file_spec.GetPath().c_str(), error.GetError(), error.AsCString());
663 bool PlatformRemoteGDBServer::GetFileExists(const FileSpec &file_spec) {
665 return m_gdb_client_up->GetFileExists(file_spec);
686 PlatformRemoteGDBServer::CalculateMD5(const FileSpec &file_spec) {
690 return m_gdb_client_up->CalculateMD5(file_spec);