Lines Matching refs:com_ptr_
66 com_ptr_(NULL) in COMReference()
71 com_ptr_(comptr) in COMReference()
78 com_ptr_(comptr) in COMReference()
85 com_ptr_(other.com_ptr_) in COMReference()
92 if (other.com_ptr_) in operator =()
93 other.com_ptr_->AddRef(); in operator =()
95 com_ptr_ = other.com_ptr_; in operator =()
102 com_ptr_ = comptr; in operator =()
117 if (com_ptr_) in QueryInterface()
118 hr = com_ptr_->QueryInterface(iid, reinterpret_cast<LPVOID*>(&ip)); in QueryInterface()
128 return com_ptr_; in operator ->()
133 return *com_ptr_; in operator *()
141 com_ptr_ = NULL; in operator &()
142 return &com_ptr_; in operator &()
147 return com_ptr_; in get()
153 com_ptr_ = NULL; in clear()
159 return (com_ptr_ != NULL); in is()
166 if (com_ptr_) in addRef()
167 cnt = com_ptr_->AddRef(); in addRef()
174 if (com_ptr_) in release()
175 cnt = com_ptr_->Release(); in release()
180 T* com_ptr_; member in sal::systools::COMReference