Searched refs:pnSize (Results 1 – 9 of 9) sorted by relevance
/aoo42x/main/store/source/ |
H A D | storbase.cxx | 119 virtual void allocate_Impl (void ** ppPage, sal_uInt16 * pnSize); 154 void PageData::Allocator_Impl::allocate_Impl (void ** ppPage, sal_uInt16 * pnSize) in allocate_Impl() argument 156 OSL_PRECOND((ppPage != 0) && (pnSize != 0), "contract violation"); in allocate_Impl() 157 if ((ppPage != 0) && (pnSize != 0)) in allocate_Impl() 158 *ppPage = rtl_cache_alloc(m_page_cache), *pnSize = m_page_size; in allocate_Impl()
|
H A D | store.cxx | 239 sal_uInt32 *pnSize in store_getFileSize() argument 247 if (!pnSize) in store_getFileSize() 250 return xManager->size (*pnSize); in store_getFileSize() 520 sal_uInt32 *pnSize in store_getStreamSize() argument 528 if (!pnSize) in store_getStreamSize() 531 return xLockBytes->stat (*pnSize); in store_getStreamSize()
|
H A D | lockbyte.cxx | 535 virtual void allocate_Impl (void ** ppPage, sal_uInt16 * pnSize); 596 void MappedLockBytes::allocate_Impl (void ** ppPage, sal_uInt16 * pnSize) in allocate_Impl() argument 598 OSL_PRECOND((ppPage != 0) && (pnSize != 0), "contract violation"); in allocate_Impl() 599 if ((ppPage != 0) && (pnSize != 0)) in allocate_Impl() 600 *ppPage = 0, *pnSize = m_nPageSize; in allocate_Impl()
|
H A D | storbase.hxx | 494 bool allocate (void ** ppPage, sal_uInt16 * pnSize) in allocate() argument 496 allocate_Impl (ppPage, pnSize); in allocate() 497 return ((*ppPage != 0) && (*pnSize != 0)); in allocate() 512 virtual void allocate_Impl (void ** ppPage, sal_uInt16 * pnSize) = 0;
|
/aoo42x/main/sal/osl/unx/ |
H A D | file.cxx | 160 void allocate (sal_uInt8 ** ppBuffer, size_t * pnSize); 209 void FileHandle_Impl::Allocator::allocate (sal_uInt8 ** ppBuffer, size_t * pnSize) in allocate() argument 211 …OSL_PRECOND((0 != ppBuffer) && (0 != pnSize), "FileHandle_Impl::Allocator::allocate(): contract vi… in allocate() 212 if ((0 != ppBuffer) && (0 != pnSize)) in allocate() 213 *ppBuffer = static_cast< sal_uInt8* >(rtl_cache_alloc(m_cache)), *pnSize = m_bufsiz; in allocate()
|
/aoo42x/main/store/inc/store/ |
H A D | store.h | 133 sal_uInt32 *pnSize 294 sal_uInt32 *pnSize
|
/aoo42x/main/sal/osl/w32/ |
H A D | file.cxx | 152 void allocate (sal_uInt8 ** ppBuffer, SIZE_T * pnSize); 195 void FileHandle_Impl::Allocator::allocate (sal_uInt8 ** ppBuffer, SIZE_T * pnSize) in allocate() argument 197 …OSL_PRECOND((0 != ppBuffer) && (0 != pnSize), "FileHandle_Impl::Allocator::allocate(): contract vi… in allocate() 198 *ppBuffer = static_cast< sal_uInt8* >(rtl_cache_alloc(m_cache)), *pnSize = m_bufsiz; in allocate()
|
/aoo42x/main/sal/osl/os2/ |
H A D | file.cxx | 255 void allocate (sal_uInt8 ** ppBuffer, size_t * pnSize); 287 void FileHandle_Impl::Allocator::allocate (sal_uInt8 ** ppBuffer, size_t * pnSize) in allocate() argument 289 …OSL_PRECOND((0 != ppBuffer) && (0 != pnSize), "FileHandle_Impl::Allocator::allocate(): contract vi… in allocate() 290 *ppBuffer = static_cast< sal_uInt8* >(rtl_cache_alloc(m_cache)), *pnSize = m_bufsiz; in allocate()
|
/aoo42x/main/store/workben/ |
H A D | t_page.cxx | 209 virtual bool allocate (void ** ppPage, sal_uInt16 * pnSize) = 0;
|
Completed in 79 milliseconds