Lines Matching refs:other
491 MappedFile::MappedFile(MappedFile&& other) noexcept
492 : data_(other.data_), rStart_(other.rStart_), rEnd_(other.rEnd_), isMapped_(other.isMapped_),
493 isNormed_(other.isNormed_), isNewFile_(other.isNewFile_), path_(std::move(other.path_)), size_(other.size_),
494 offset_(other.offset_), mode_(other.mode_), fd_(other.fd_), mapProt_(other.mapProt_), mapFlag_(other.mapFlag_),
495 openFlag_(other.openFlag_), hint_(other.hint_)
497 other.Reset();
500 MappedFile& MappedFile::operator=(MappedFile&& other) noexcept
504 data_ = other.data_;
505 rStart_ = other.rStart_;
506 rEnd_ = other.rEnd_;
507 isMapped_ = other.isMapped_;
508 isNormed_ = other.isNormed_;
509 isNewFile_ = other.isNewFile_;
510 path_ = other.path_;
511 size_ = other.size_;
512 offset_ = other.offset_;
513 mode_ = other.mode_;
514 fd_ = other.fd_;
515 mapProt_ = other.mapProt_;
516 mapFlag_ = other.mapFlag_;
517 openFlag_ = other.openFlag_;
518 hint_ = other.hint_;
520 other.Reset();