Lines Matching refs:NULL
46 static SharedPtrCount* Create( nw::os::IAllocator* pAllocator = NULL )
55 return new SharedPtrCount( NULL );
192 /* ctor */ SharedPtr() : m_pObj( NULL ), m_pCnt( NULL ), m_pAllocator( NULL ) {} in SharedPtr()
201 …aredPtr(TObj* pObj, nw::os::IAllocator* pAllocator = NULL, SharedPtrCount<TLockObject>* pCnt = NUL…
206 if ( pObj == NULL ) in m_pObj()
208 m_pCnt = NULL; in m_pObj()
212 if ( m_pCnt == NULL ) in m_pObj()
268 m_pCnt = NULL; in SharedPtr()
269 m_pObj = NULL; in SharedPtr()
270 m_pAllocator = NULL; in SharedPtr()
337 …edPtr& Reset(TObj* pObj = NULL, nw::os::IAllocator* pAllocator = NULL, SharedPtrCount<TLoc…
369 operator bool () const { return NULL != m_pObj; }
379 if (m_pCnt == NULL) { return 0; } in RefCount()
453 /* ctor */ WeakPtr() : m_pObj( NULL ), m_pCnt( NULL ), m_pAllocator( NULL ) in WeakPtr()