Lines Matching full:ptr_
56 if (this->ptr_ != NULL) {
57 this->ptr_->Release();
58 this->ptr_ = NULL;
65 Interface* p = this->ptr_;
66 this->ptr_ = NULL;
72 DCHECK(!this->ptr_);
73 this->ptr_ = p;
81 DCHECK(!this->ptr_) << "Object leak. Pointer must be NULL";
82 return &this->ptr_;
93 DCHECK(this->ptr_ != NULL);
97 return this->ptr_->QueryInterface(p);
103 DCHECK(this->ptr_ != NULL);
104 return this->ptr_->QueryInterface(iid, obj);
117 DCHECK(!this->ptr_);
119 reinterpret_cast<void**>(&this->ptr_));
125 if (!other && !this->ptr_)
128 if (!other || !this->ptr_)
151 DCHECK(this->ptr_ != NULL);
152 return reinterpret_cast<BlockIUnknownMethods*>(this->ptr_);