Lines Matching refs:pCache

203 	TypeDescriptionList_Impl *	pCache;  member
264 if( pCache ) in ~TypeDescriptor_Init_Impl()
266 TypeDescriptionList_Impl::const_iterator aIt = pCache->begin(); in ~TypeDescriptor_Init_Impl()
267 while( aIt != pCache->end() ) in ~TypeDescriptor_Init_Impl()
272 delete pCache; in ~TypeDescriptor_Init_Impl()
273 pCache = 0; in ~TypeDescriptor_Init_Impl()
530 if( !rInit.pCache ) in complete()
531 rInit.pCache = new TypeDescriptionList_Impl; in complete()
532 if( (sal_Int32)rInit.pCache->size() >= nCacheSize ) in complete()
534 typelib_typedescription_release( rInit.pCache->front() ); in complete()
535 rInit.pCache->pop_front(); in complete()
539 rInit.pCache->push_back( pTD ); in complete()
2236 if( !rInit.pCache ) in typelib_typedescription_getByName()
2237 rInit.pCache = new TypeDescriptionList_Impl; in typelib_typedescription_getByName()
2238 if( (sal_Int32)rInit.pCache->size() >= nCacheSize ) in typelib_typedescription_getByName()
2240 typelib_typedescription_release( rInit.pCache->front() ); in typelib_typedescription_getByName()
2241 rInit.pCache->pop_front(); in typelib_typedescription_getByName()
2245 rInit.pCache->push_back( *ppRet ); in typelib_typedescription_getByName()
2298 if( !rInit.pCache ) in typelib_typedescriptionreference_new()
2299 rInit.pCache = new TypeDescriptionList_Impl; in typelib_typedescriptionreference_new()
2300 if( (sal_Int32)rInit.pCache->size() >= nCacheSize ) in typelib_typedescriptionreference_new()
2302 typelib_typedescription_release( rInit.pCache->front() ); in typelib_typedescriptionreference_new()
2303 rInit.pCache->pop_front(); in typelib_typedescriptionreference_new()
2305 rInit.pCache->push_back( pRet ); in typelib_typedescriptionreference_new()
2523 if ((nNewSize < nCacheSize) && rInit.pCache) in typelib_setCacheSize()
2525 while ((sal_Int32)rInit.pCache->size() != nNewSize) in typelib_setCacheSize()
2527 typelib_typedescription_release( rInit.pCache->front() ); in typelib_setCacheSize()
2528 rInit.pCache->pop_front(); in typelib_setCacheSize()