Lines Matching refs:NULL
44 static SharedPtrCount* Create( nw::os::IAllocator* pAllocator = NULL )
53 return new SharedPtrCount( NULL );
190 /* ctor */ SharedPtr() : m_pObj( NULL ), m_pCnt( NULL ), m_pAllocator( NULL ) {} in SharedPtr()
199 …aredPtr(TObj* pObj, nw::os::IAllocator* pAllocator = NULL, SharedPtrCount<TLockObject>* pCnt = NUL…
204 if ( pObj == NULL ) in m_pObj()
206 m_pCnt = NULL; in m_pObj()
210 if ( m_pCnt == NULL ) in m_pObj()
266 m_pCnt = NULL; in SharedPtr()
267 m_pObj = NULL; in SharedPtr()
268 m_pAllocator = NULL; in SharedPtr()
335 …edPtr& Reset(TObj* pObj = NULL, nw::os::IAllocator* pAllocator = NULL, SharedPtrCount<TLoc…
367 operator bool () const { return NULL != m_pObj; }
377 if (m_pCnt == NULL) { return 0; } in RefCount()
451 /* ctor */ WeakPtr() : m_pObj( NULL ), m_pCnt( NULL ), m_pAllocator( NULL ) in WeakPtr()