Lines Matching refs:StgPage
39 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
94 class StgPage { class
97 StgPage *pNext1, *pLast1; // LRU chain
98 StgPage *pNext2, *pLast2; // ordered chain
104 StgPage( StgCache*, short );
105 ~StgPage();