Lines Matching refs:rPage

527     storeError loadPageAt (PageHolder & rPage, storeError (*pfnVerify)(PageHolder const &))  in loadPageAt()  argument
529 return (pfnVerify)(rPage); in loadPageAt()
539 storeError loadAt (PageHolder & rPage, sal_uInt32 nOffset) in loadAt() argument
541 (void)rPage; // NYI in loadAt()
545 storeError saveAt (PageHolder const & rPage, sal_uInt32 nOffset) in saveAt() argument
547 (void)rPage; // NYI in saveAt()
561 storeError lookupAt (PageHolder & rPage, sal_uInt32 nOffset) in lookupAt() argument
563 (void)rPage; // NYI in lookupAt()
567 storeError replaceAt (PageHolder const & rPage, sal_uInt32 nOffset) in replaceAt() argument
569 (void)rPage; // NYI in replaceAt()
637 static storeError verify (PageHolder const & rPage) in verify() argument
639 return PageHolderObject< TestData >::verify (rPage); in verify()
732 BIOS::load (PageObject & rPage, sal_uInt32 nOffset)
734 result = m_xCache->readPageAt (rPage.get(), nOffset);
737 result = m_xLockBytes->readPageAt (rPage.get(), nOffset);
741 result = rPage.verify();
745 result = m_xCache->writePageAt (rPage.get(), nOffset);
749 BIOS::save (PageObject & rPage, sal_uInt32 nOffset)
751 rPage.guard();
752 result = m_xLockBytes->writePageAt (rPage.get(), nOffset);
756 return m_xCache->writePageAt (rPage.get(), nOffset);
794 storeError readPageAt (PageObject & rPage, sal_uInt32 nOffset);
795 storeError writePageAt (PageObject const & rPage, sal_uInt32 nOffset);
809 storeError readPageAt (PageHolder & rPage, sal_uInt32 nOffset) in readPageAt() argument
811 return readPageAt_Impl (rPage, nOffset); in readPageAt()
813 storeError writePageAt (PageHolder const & rPage, sal_uInt32 nOffset) in writePageAt() argument
816 PageData const * pagedata = rPage.get(); in writePageAt()
830 return writePageAt_Impl (rPage, nOffset); in writePageAt()
881 virtual storeError readPageAt_Impl (PageHolder & rPage, sal_uInt32 nOffset) = 0;
882 virtual storeError writePageAt_Impl (PageHolder const & rPage, sal_uInt32 nOffset) = 0;
1032 virtual storeError readPageAt_Impl (PageHolder & rPage, sal_uInt32 nOffset);
1033 virtual storeError writePageAt_Impl (PageHolder const & rPage, sal_uInt32 nOffset);
1063 storeError FilePageAccess::readPageAt_Impl (PageHolder & rPage, sal_uInt32 nOffset) in readPageAt_Impl() argument
1069 swap<PageHolder>(page, rPage); in readPageAt_Impl()
1070 return peekAt (nOffset, rPage.get(), 0/*size*/); in readPageAt_Impl()
1072 storeError FilePageAccess::writePageAt_Impl (PageHolder const & rPage, sal_uInt32 nOffset) in writePageAt_Impl() argument
1074 return pokeAt (nOffset, rPage.get(), 0/*size*/); in writePageAt_Impl()
1201 virtual storeError readPageAt_Impl (PageHolder & rPage, sal_uInt32 nOffset);
1202 virtual storeError writePageAt_Impl (PageHolder const & rPage, sal_uInt32 nOffset);
1236 storeError MemoryPageAccess::readPageAt_Impl (PageHolder & rPage, sal_uInt32 nOffset) in readPageAt_Impl() argument
1240 swap<PageHolder>(page, rPage); in readPageAt_Impl()
1243 storeError MemoryPageAccess::writePageAt_Impl (PageHolder const & rPage, sal_uInt32 nOffset) in writePageAt_Impl() argument
1245 PageData const * pagedata = rPage.get(); in writePageAt_Impl()
1253 offset = rPage.location(); // Descr.m_nAddr; in writePageAt_Impl()
1362 virtual storeError writePageAt (PageHolder const & rPage, sal_uInt32 nOffset);