Lines Matching refs:ImpDbgStackTree
35 struct ImpDbgStackTree struct
37 ImpDbgStackTree* pLeft_; argument
38 ImpDbgStackTree* pRight_; argument
39 ImpDbgStackTree* pCaller_; argument
40 ImpDbgStackTree* pSub_; argument
51 ImpDbgStackTree( ImpDbgStackTree* pSub, sal_uIntPtr nIP ); argument
52 ~ImpDbgStackTree();
54 ImpDbgStackTree* Add( sal_uIntPtr nAlloc, sal_uIntPtr* pBP, sal_uIntPtr nIP );
59 static ImpDbgStackTree* pImpDbgStackTreeRoot = NULL;
66 ImpDbgStackTree::ImpDbgStackTree( ImpDbgStackTree* pSub, sal_uIntPtr nIP ) in ImpDbgStackTree() function in ImpDbgStackTree
77 ImpDbgStackTree::~ImpDbgStackTree() in ~ImpDbgStackTree()
89 void ImpDbgStackTree::Print( int nLevel, sal_uIntPtr nCount, sal_uIntPtr nCountLeak ) in Print()
127 void ImpDbgStackTree::Print( int nLevel ) in Print()
136 ImpDbgStackTree* ImpDbgStackTree::Add( sal_uIntPtr nAlloc, sal_uIntPtr *pBP, sal_uIntPtr nIP ) in Add()
141 pLeft_ = new ImpDbgStackTree( pSub_, nIP ); in Add()
147 pRight_ = new ImpDbgStackTree( pSub_, nIP ); in Add()
173 pCaller_ = new ImpDbgStackTree( this, nIP ); in Add()
239 ImpDbgStackTree* pReturn = NULL; in DbgGetStackTree()
250 pImpDbgStackTreeRoot = new ImpDbgStackTree( NULL, nIP ); in DbgGetStackTree()
262 ImpDbgStackTree* p = (ImpDbgStackTree*)pVoid; in DbgFreeStackTree()
290 ImpDbgStackTree* p = (ImpDbgStackTree*)pVoid; in DbgPrintStackTree()