Lines Matching refs:_contextToken
149 ULONG_PTR _contextToken; member in Agile
164 __abi_ThrowIfFailed(CoGetContextToken(&_contextToken)); in CaptureContext()
195 Agile() throw() : _object(nullptr), _contextToken(0) in Agile()
202 Agile(nullptr_t) throw() : _object(nullptr), _contextToken(0) in Agile()
209 explicit Agile(TypeT object) throw() : _object(nullptr), _contextToken(0) in Agile()
218 Agile(const Agile& object) throw() : _object(nullptr), _contextToken(0) in Agile()
227 Agile(Agile&& object) throw() : _object(nullptr), _contextToken(0) in Agile()
247 if (_contextToken == 0 || _contextCallback == nullptr || _object == nullptr) in Get()
256 if (currentContextToken == _contextToken) in Get()
289 pThis->_contextToken = 0; in Get()
367 std::swap(_contextToken, object._contextToken); in Swap()
385 … if (_contextToken == 0 || _contextCallback == nullptr || _contextToken == currentContextToken) in Release()
394 _contextToken = 0; in Release()
408 return _object == other._object && _contextToken == other._contextToken; in operator ==()
418 return _object == other._object && _contextToken < other._contextToken; in operator <()