Lines Matching refs:other
65 FileMap::FileMap(FileMap&& other) noexcept in FileMap() argument
66 : mFileName(other.mFileName), in FileMap()
67 mBasePtr(other.mBasePtr), in FileMap()
68 mBaseLength(other.mBaseLength), in FileMap()
69 mDataOffset(other.mDataOffset), in FileMap()
70 mDataPtr(other.mDataPtr), in FileMap()
71 mDataLength(other.mDataLength) in FileMap()
74 mFileHandle(other.mFileHandle), in FileMap()
75 mFileMapping(other.mFileMapping) in FileMap()
78 other.mFileName = nullptr; in FileMap()
79 other.mBasePtr = nullptr; in FileMap()
80 other.mDataPtr = nullptr; in FileMap()
82 other.mFileHandle = INVALID_HANDLE_VALUE; in FileMap()
83 other.mFileMapping = NULL; in FileMap()
88 FileMap& FileMap::operator=(FileMap&& other) noexcept { in operator =() argument
89 mFileName = other.mFileName; in operator =()
90 mBasePtr = other.mBasePtr; in operator =()
91 mBaseLength = other.mBaseLength; in operator =()
92 mDataOffset = other.mDataOffset; in operator =()
93 mDataPtr = other.mDataPtr; in operator =()
94 mDataLength = other.mDataLength; in operator =()
95 other.mFileName = nullptr; in operator =()
96 other.mBasePtr = nullptr; in operator =()
97 other.mDataPtr = nullptr; in operator =()
99 mFileHandle = other.mFileHandle; in operator =()
100 mFileMapping = other.mFileMapping; in operator =()
101 other.mFileHandle = INVALID_HANDLE_VALUE; in operator =()
102 other.mFileMapping = NULL; in operator =()