Lines Matching defs:file_spec
1865 int GDBRemoteCommunicationClient::SetSTDIN(const FileSpec &file_spec) {
1866 if (file_spec) {
1867 std::string path{file_spec.GetPath(false)};
1885 int GDBRemoteCommunicationClient::SetSTDOUT(const FileSpec &file_spec) {
1886 if (file_spec) {
1887 std::string path{file_spec.GetPath(false)};
1905 int GDBRemoteCommunicationClient::SetSTDERR(const FileSpec &file_spec) {
1906 if (file_spec) {
1907 std::string path{file_spec.GetPath(false)};
3011 Status GDBRemoteCommunicationClient::MakeDirectory(const FileSpec &file_spec,
3013 std::string path{file_spec.GetPath(false)};
3032 GDBRemoteCommunicationClient::SetFilePermissions(const FileSpec &file_spec,
3034 std::string path{file_spec.GetPath(false)};
3082 GDBRemoteCommunicationClient::OpenFile(const lldb_private::FileSpec &file_spec,
3085 std::string path(file_spec.GetPath(false));
3140 GDBRemoteCommunicationClient::Stat(const lldb_private::FileSpec &file_spec) {
3142 lldb::user_id_t fd = OpenFile(file_spec, File::eOpenOptionReadOnly, 0, error);
3152 const lldb_private::FileSpec &file_spec) {
3154 std::string path(file_spec.GetPath(false));
3173 std::optional<GDBRemoteFStatData> st = Stat(file_spec);
3203 GDBRemoteCommunicationClient::GetFilePermissions(const FileSpec &file_spec,
3206 std::string path{file_spec.GetPath(false)};
3244 if (std::optional<GDBRemoteFStatData> st = Stat(file_spec)) {
3357 Status GDBRemoteCommunicationClient::Unlink(const FileSpec &file_spec) {
3358 std::string path{file_spec.GetPath(false)};
3390 const lldb_private::FileSpec &file_spec) {
3392 std::string path(file_spec.GetPath(false));
3413 lldb::user_id_t fd = OpenFile(file_spec, File::eOpenOptionReadOnly, 0, error);
3421 const lldb_private::FileSpec &file_spec) {
3422 std::string path(file_spec.GetPath(false));