Lines Matching refs:swap
92 Endpoint(Endpoint&& other) noexcept { swap(other); } in Endpoint()
94 swap(other);
141 void swap(Endpoint &other) noexcept { in swap() function
142 using std::swap; in swap()
143 swap(mThread, other.mThread); in swap()
144 swap(mCloseThread, other.mCloseThread); in swap()
145 swap(mClearPeerProxy, other.mClearPeerProxy); in swap()
146 swap(mHandle, other.mHandle); in swap()
147 swap(mTrack, other.mTrack); in swap()
150 friend void swap(Endpoint &a, Endpoint &b) noexcept { in swap() function
151 a.swap(b); in swap()
176 Patch(Patch&& other) noexcept { swap(other); } in Patch()
178 swap(other);
182 void swap(Patch &other) noexcept { in swap() function
183 using std::swap; in swap()
184 swap(mAudioPatch, other.mAudioPatch); in swap()
185 swap(mHalHandle, other.mHalHandle); in swap()
186 swap(mPlayback, other.mPlayback); in swap()
187 swap(mRecord, other.mRecord); in swap()
188 swap(mThread, other.mThread); in swap()
189 swap(mIsEndpointPatch, other.mIsEndpointPatch); in swap()
192 friend void swap(Patch &a, Patch &b) noexcept { in swap() function
193 a.swap(b); in swap()