Lines Matching refs:pStatLst
74 if ( pStatLst ) in DECLARE_LIST()
75 pOldStat = pStatLst->GetObject( nCurPos ); in DECLARE_LIST()
227 if ( pStatLst ) in ImpSortedInsert()
228 pStatLst->Insert( (FileStat*)pNewStat, pLst->GetCurPos() ); in ImpSortedInsert()
234 if ( pStatLst ) in ImpSortedInsert()
235 pStatLst->Insert( (FileStat*)pNewStat, APPEND ); in ImpSortedInsert()
253 pStatLst = NULL; in Construct()
322 if ( pStatLst ) in Reset()
325 FileStat* pEntry = pStatLst->First(); in Reset()
328 FileStat* pNext = pStatLst->Next(); in Reset()
332 pStatLst->Clear(); in Reset()
333 delete pStatLst; in Reset()
345 pStatLst = new FileStatList(); in Reset()
346 } while ( !pStatLst && pSortLst->Next() ); in Reset()
468 pStatLst = NULL; in Dir()
518 if ( pStatLst ) in ~Dir()
520 FileStat* pEntry = pStatLst->First(); in ~Dir()
523 FileStat* pNext = pStatLst->Next(); in ~Dir()
527 pStatLst->Clear(); in ~Dir()
528 delete pStatLst; in ~Dir()
621 if ( !pStatLst && pSortLst ) in ImpSetSort()
633 } while ( !pStatLst && pSortLst->Next() ); in ImpSetSort()
641 if ( pStatLst ) { in ImpSetSort()
642 pOldStatLst = pStatLst; in ImpSetSort()
643 pStatLst = new FileStatList(); //neue StatListe (zu Sortieren) in ImpSetSort()
736 if ( rDir.pStatLst ) in operator +=()
737 stat = new FileStat( *rDir.pStatLst->GetObject(nNr) ); in operator +=()