Lines Matching refs:m_pInterface
47 T* m_pInterface; member in inprocserv::ComSmart
51 if ( m_pInterface ) in OwnRelease()
53 T* pInterface = m_pInterface; in OwnRelease()
54 m_pInterface = NULL; in OwnRelease()
61 : m_pInterface( NULL ) in ComSmart()
65 : m_pInterface( rObj.m_pInterface ) in ComSmart()
67 if ( m_pInterface != NULL ) in ComSmart()
68 m_pInterface->AddRef(); in ComSmart()
72 : m_pInterface( pInterface ) in ComSmart()
74 if ( m_pInterface != NULL ) in ComSmart()
75 m_pInterface->AddRef(); in ComSmart()
87 m_pInterface = rObj.m_pInterface; in operator =()
89 if ( m_pInterface != NULL ) in operator =()
90 m_pInterface->AddRef(); in operator =()
99 m_pInterface = pInterface; in operator =()
101 if ( m_pInterface != NULL ) in operator =()
102 m_pInterface->AddRef(); in operator =()
109 return m_pInterface; in operator T*()
114 return *m_pInterface; in operator *()
121 m_pInterface = NULL; in operator &()
123 return &m_pInterface; in operator &()
128 return m_pInterface; in operator ->()
133 return ( m_pInterface == rObj.m_pInterface ); in operator ==()
138 return ( m_pInterface != rObj.m_pInterface ); in operator !=()
143 return ( m_pInterface == pInterface ); in operator ==()
148 return ( m_pInterface != pInterface ); in operator !=()