Home | History | Annotate | Download | only in win

Lines Matching defs:QueryInterface

26     STDMETHOD(QueryInterface)(REFIID iid, void** object) = 0;
90 HRESULT QueryInterface(Query** p) {
93 // IUnknown already has a template version of QueryInterface
96 return ptr_->QueryInterface(p);
100 HRESULT QueryInterface(const IID& iid, void** obj) {
103 return ptr_->QueryInterface(iid, obj);
107 // error code from the other->QueryInterface operation.
110 return object->QueryInterface(Receive());
131 QueryInterface(my_identity.Receive());
134 other->QueryInterface(other_identity.Receive());
146 // and to get the benefit of the DCHECKs we add to QueryInterface.