Home
last modified time | relevance | path

Searched refs:StgPage (Results 1 – 5 of 5) sorted by relevance

/AOO41X/main/sot/source/sdstor/
H A Dstgcache.hxx39 class StgPage;
44 StgPage* pCur; // top of LRU list
45 StgPage* pElem1; // top of ordered list
53 void Erase( StgPage* ); // delete a cache element
54 void InsertToLRU( StgPage* ); // insert into LRU list
55 void InsertToOrdered( StgPage* ); // insert into ordered list
56 StgPage* Create( sal_Int32 ); // create a cached page
86 StgPage* Find( sal_Int32 ); // find a cached page
87 StgPage* Get( sal_Int32, sal_Bool ); // get a cached page
88 StgPage* Copy( sal_Int32, sal_Int32=STG_FREE ); // copy a page
[all …]
H A Dstgcache.cxx52 StgPage *,
68 StgPage::StgPage( StgCache* p, short n ) in StgPage() function in StgPage
83 StgPage::~StgPage() in ~StgPage()
88 void StgPage::SetPage( short nOff, sal_Int32 nVal ) in SetPage()
148 StgPage* StgCache::Create( sal_Int32 nPg ) in Create()
150 StgPage* pElem = new StgPage( this, nPageSize ); in Create()
175 StgPage* p = pElem1; in Create()
194 void StgCache::Erase( StgPage* pElem ) in Erase()
220 StgPage* pElem = pCur; in Clear()
223 StgPage* pDelete = pElem; in Clear()
[all …]
H A Dstgstrms.cxx61 StgPage* StgFAT::GetPhysPage( sal_Int32 nByteOff ) in GetPhysPage()
63 StgPage* pPg = NULL; in GetPhysPage()
82 StgPage* pPg = GetPhysPage( nPg << 2 ); in GetNextPage()
101 StgPage* pPg = NULL; in FindBlock()
177 StgPage* pPg = GetPhysPage( nPos ); in MakeChain()
233 StgPage* pPg = GetPhysPage( nLast << 2 ); in AllocPages()
274 StgPage* pPg = NULL; in InitNew()
296 StgPage* pPg = GetPhysPage( nStart << 2 ); in FreePages()
399 StgPage* StgStrm::GetPhysPage( sal_Int32 nBytePos, sal_Bool bForce ) in GetPhysPage()
512 StgPage* StgFATStrm::GetPhysPage( sal_Int32 nBytePos, sal_Bool bForce ) in GetPhysPage()
[all …]
H A Dstgstrms.hxx33 class StgPage;
49 StgPage* GetPhysPage( sal_Int32 nPage );
94 virtual StgPage* GetPhysPage( sal_Int32 nBytePos, sal_Bool bForce = sal_False );
111 virtual StgPage* GetPhysPage( sal_Int32 nBytePos, sal_Bool bForce = sal_False );
H A Dstgio.cxx180 StgPage *pPage = NULL; in EasyFat()