Searched refs:pCache (Results 1 - 25 of 27) sorted by relevance

12

/external/chromium_org/third_party/sqlite/src/src/
H A Dpcache.c29 sqlite3_pcache *pCache; /* Pluggable cache module */ member in struct:PCache
49 ** Check that the pCache->pSynced variable is set correctly. If it
53 ** expensive_assert( pcacheCheckSynced(pCache) );
55 static int pcacheCheckSynced(PCache *pCache){ argument
57 for(p=pCache->pDirtyTail; p!=pCache->pSynced; p=p->pDirtyPrev){
68 PCache *p = pPage->pCache;
105 PCache *p = pPage->pCache;
129 PCache *pCache = p->pCache; local
191 sqlite3PcacheSetPageSize(PCache *pCache, int szPage) argument
204 sqlite3PcacheFetch( PCache *pCache, Pgno pgno, int createFlag, PgHdr **ppPage ) argument
299 PCache *pCache = p->pCache; local
325 PCache *pCache; local
368 sqlite3PcacheCleanAll(PCache *pCache) argument
378 sqlite3PcacheClearSyncFlags(PCache *pCache) argument
390 PCache *pCache = p->pCache; local
410 sqlite3PcacheTruncate(PCache *pCache, Pgno pgno) argument
437 sqlite3PcacheClose(PCache *pCache) argument
446 sqlite3PcacheClear(PCache *pCache) argument
523 sqlite3PcacheDirtyList(PCache *pCache) argument
534 sqlite3PcacheRefCount(PCache *pCache) argument
548 sqlite3PcachePagecount(PCache *pCache) argument
560 sqlite3PcacheGetCachesize(PCache *pCache) argument
568 sqlite3PcacheSetCachesize(PCache *pCache, int mxPage) argument
581 sqlite3PcacheIterateDirty(PCache *pCache, void (*xIter)(PgHdr *)) argument
[all...]
H A Dpcache1.c92 ** structure. A buffer of PgHdr1.pCache->szPage bytes is allocated
99 PCache1 *pCache; /* Cache that currently owns this page */ member in struct:PgHdr1
156 ** assert( PGHDR1_TO_PAGE(PAGE_TO_PGHDR1(pCache, X))==X );
158 #define PGHDR1_TO_PAGE(p) (void*)(((char*)p) - p->pCache->szPage)
287 ** Allocate a new page object initially associated with cache pCache.
289 static PgHdr1 *pcache1AllocPage(PCache1 *pCache){ argument
290 int nByte = sizeof(PgHdr1) + pCache->szPage;
294 p = PAGE_TO_PGHDR1(pCache, pPg);
295 if( pCache->bPurgeable ){
296 pCache
313 PCache1 *pCache = p->pCache; local
354 pcache1UnderMemoryPressure(PCache1 *pCache) argument
418 PCache1 *pCache; local
453 PCache1 *pCache = pPage->pCache; local
486 pcache1TruncateUnsafe( PCache1 *pCache, unsigned int iLimit ) argument
547 PCache1 *pCache; /* The newly created page cache */ local
603 PCache1 *pCache = (PCache1 *)p; local
621 PCache1 *pCache = (PCache1*)p; local
684 PCache1 *pCache = (PCache1 *)p; local
792 PCache1 *pCache = (PCache1 *)p; local
833 PCache1 *pCache = (PCache1 *)p; local
868 PCache1 *pCache = (PCache1 *)p; local
883 PCache1 *pCache = (PCache1 *)p; local
[all...]
H A Dtest_pcache.c161 static void testpcacheCachesize(sqlite3_pcache *pCache, int newSize){ argument
162 testpcache *p = (testpcache*)pCache;
173 static int testpcachePagecount(sqlite3_pcache *pCache){ argument
174 testpcache *p = (testpcache*)pCache;
185 sqlite3_pcache *pCache,
189 testpcache *p = (testpcache*)pCache;
282 sqlite3_pcache *pCache,
286 testpcache *p = (testpcache*)pCache;
327 sqlite3_pcache *pCache,
332 testpcache *p = (testpcache*)pCache;
184 testpcacheFetch( sqlite3_pcache *pCache, unsigned key, int createFlag ) argument
281 testpcacheUnpin( sqlite3_pcache *pCache, void *pOldPage, int discard ) argument
326 testpcacheRekey( sqlite3_pcache *pCache, void *pOldPage, unsigned oldKey, unsigned newKey ) argument
374 testpcacheTruncate(sqlite3_pcache *pCache, unsigned iLimit) argument
396 testpcacheDestroy(sqlite3_pcache *pCache) argument
[all...]
H A Dpcache.h41 PCache *pCache; /* Cache that owns this page */ member in struct:PgHdr
130 void sqlite3PcacheIterateDirty(PCache *pCache, void (*xIter)(PgHdr *));
/external/pdfium/core/src/fxcodec/codec/
H A Dfx_codec_icc.cpp386 CFX_IccProfileCache* pCache = NULL; local
415 if (!m_MapProfile.Lookup(ProfileKey, (FX_LPVOID&)pCache)) {
416 pCache = FX_NEW CFX_IccProfileCache;
417 if (pCache == NULL) {
422 pCache->m_pProfile = cmsOpenProfileFromMem(pIccParam->pProfileData, pIccParam->dwProfileSize);
427 pCache->m_pProfile = cmsCreate_sRGBProfile();
430 pCache->m_pProfile = CreateProfile_Gray(pIccParam->Gamma);
439 m_MapProfile.SetAt(ProfileKey, pCache);
441 pCache->m_dwRate++;
443 return pCache
[all...]
/external/pdfium/core/src/fxge/apple/
H A Dfx_apple_platform.cpp45 CFX_FontCache* pCache,
106 CFX_FontCache * pCache,
157 FX_BOOL ret = _CGDrawGlyphRun(ctx, nChars, pCharPos, pFont, pCache, pObject2Device, font_size, argb, alpha_flag, pIccTransform);
41 _CGDrawGlyphRun(CGContextRef pContext, int nChars, const FXTEXT_CHARPOS* pCharPos, CFX_Font* pFont, CFX_FontCache* pCache, const CFX_AffineMatrix* pObject2Device, FX_FLOAT font_size, FX_DWORD argb, int alpha_flag, void* pIccTransform) argument
103 DrawDeviceText(int nChars, const FXTEXT_CHARPOS * pCharPos, CFX_Font * pFont, CFX_FontCache * pCache, const CFX_AffineMatrix * pObject2Device, FX_FLOAT font_size, FX_DWORD argb, int alpha_flag, void* pIccTransform) argument
H A Dapple_int.h155 CFX_FontCache* pCache, const CFX_AffineMatrix* pObject2Device, FX_FLOAT font_size, FX_DWORD color,
166 CFX_FontCache* pCache,
H A Dfx_quartz_device.cpp805 CFX_FontCache* pCache,
882 CFX_FontCache* pCache,
905 ret = CG_DrawGlypRun(i, pCharPos, pFont, pCache, NULL, pObject2Device, font_size, color, alpha_flag, pIccTransform);
922 ret = CG_DrawGlypRun(1, char_pos, pFont, pCache, &glphy_matrix, pObject2Device, font_size, color, alpha_flag, pIccTransform);
936 ret = CG_DrawGlypRun(i, pCharPos, pFont, pCache, NULL, pObject2Device, font_size, color, alpha_flag, pIccTransform);
802 CG_DrawGlypRun(int nChars, const FXTEXT_CHARPOS* pCharPos, CFX_Font* pFont, CFX_FontCache* pCache, const CFX_AffineMatrix* pGlyphMatrix, const CFX_AffineMatrix* pObject2Device, FX_FLOAT font_size, FX_DWORD argb, int alpha_flag, void* pIccTransform) argument
879 DrawDeviceText(int nChars, const FXTEXT_CHARPOS* pCharPos, CFX_Font* pFont, CFX_FontCache* pCache, const CFX_AffineMatrix* pObject2Device, FX_FLOAT font_size, FX_DWORD color, int alpha_flag , void* pIccTransform) argument
/external/pdfium/core/src/fpdfapi/fpdf_render/
H A Dfpdf_render_text.cpp468 CPDF_Type3Cache* pCache = GetCachedType3(pType3Font); local
470 CFX_GlyphBitmap* pBitmap = pCache->LoadGlyph(charcode, &matrix, sa, sd);
599 CFX_FontCache* pCache = pFont->m_pDocument ? pFont->m_pDocument->GetRenderData()->GetFontCache() : NULL; local
603 &pFont->m_Font, pCache, font_size, pText2User, pUser2Device,
668 CFX_FontCache* pCache = pFont->m_pDocument ? pFont->m_pDocument->GetRenderData()->GetFontCache() : NULL; local
698 return pDevice->DrawNormalText(CharPosList.m_nChars, CharPosList.m_pCharPos, &pFont->m_Font, pCache, font_size, pText2Device, fill_argb, FXGE_flags);
720 CFX_FontCache* pCache; local
722 pCache = pFont->m_pDocument->GetRenderData()->GetFontCache();
724 pCache = CFX_GEModule::Get()->GetFontCache();
726 CFX_FaceCache* pFaceCache = pCache
[all...]
H A Dfpdf_render.cpp69 CPDF_CountedObject<CPDF_Type3Cache*>* pCache; local
70 if (!m_Type3FaceMap.Lookup(pFont, pCache)) {
72 pCache = FX_NEW CPDF_CountedObject<CPDF_Type3Cache*>;
73 pCache->m_Obj = pType3;
74 pCache->m_nCount = 1;
75 m_Type3FaceMap.SetAt(pFont, pCache);
77 pCache->m_nCount++;
78 return pCache->m_Obj;
82 CPDF_CountedObject<CPDF_Type3Cache*>* pCache; local
83 if (!m_Type3FaceMap.Lookup(pFont, pCache)) {
132 DestroyPageCache(CPDF_PageRenderCache* pCache) argument
[all...]
H A Dfpdf_render_cache.cpp384 CFX_FontCache* pCache = m_pDocRender->GetFontCache(); local
385 if (pCache) {
386 pCache->FreeCache(FALSE);
H A Dfpdf_render_loadimage.cpp1436 FX_BOOL CPDF_ProgressiveImageLoaderHandle::Start(CPDF_ImageLoader* pImageLoader, const CPDF_ImageObject* pImage, CPDF_PageRenderCache* pCache, FX_BOOL bStdCS, FX_DWORD GroupFamily, FX_BOOL bLoadMask, CPDF_RenderStatus* pRenderStatus, FX_INT32 nDownsampleWidth, FX_INT32 nDownsampleHeight) argument
1439 m_pCache = pCache;
1444 if (pCache) {
1445 ret = pCache->StartGetCachedBitmap(pImage->m_pImage->GetStream(), bStdCS, GroupFamily, bLoadMask, pRenderStatus, m_nDownsampleWidth, m_nDownsampleHeight);
1448 m_pImageLoader->m_pBitmap = pCache->m_pCurImageCache->DetachBitmap();
1449 m_pImageLoader->m_pMask = pCache->m_pCurImageCache->DetachMask();
1450 m_pImageLoader->m_MatteColor = pCache->m_pCurImageCache->m_MatteColor;
1485 FX_BOOL CPDF_ImageLoader::Load(const CPDF_ImageObject* pImage, CPDF_PageRenderCache* pCache, FX_BOOL bStdCS, FX_DWORD GroupFamily, FX_BOOL bLoadMask, CPDF_RenderStatus* pRenderStatus) argument
1490 if (pCache) {
1491 pCache
1499 StartLoadImage(const CPDF_ImageObject* pImage, CPDF_PageRenderCache* pCache, FX_LPVOID& LoadHandle, FX_BOOL bStdCS, FX_DWORD GroupFamily, FX_BOOL bLoadMask, CPDF_RenderStatus* pRenderStatus, FX_INT32 nDownsampleWidth, FX_INT32 nDownsampleHeight) argument
[all...]
H A Drender_int.h192 FX_BOOL Load(const CPDF_ImageObject* pImage, CPDF_PageRenderCache* pCache, FX_BOOL bStdCS = FALSE, FX_DWORD GroupFamily = 0, FX_BOOL bLoadMask = FALSE, CPDF_RenderStatus* pRenderStatus = NULL);
194 FX_BOOL StartLoadImage(const CPDF_ImageObject* pImage, CPDF_PageRenderCache* pCache, FX_LPVOID& LoadHandle, FX_BOOL bStdCS = FALSE, FX_DWORD GroupFamily = 0, FX_BOOL bLoadMask = FALSE, CPDF_RenderStatus* pRenderStatus = NULL, FX_INT32 nDownsampleWidth = 0, FX_INT32 nDownsampleHeight = 0);
211 FX_BOOL Start(CPDF_ImageLoader* pImageLoader, const CPDF_ImageObject* pImage, CPDF_PageRenderCache* pCache, FX_BOOL bStdCS = FALSE, FX_DWORD GroupFamily = 0, FX_BOOL bLoadMask = FALSE, CPDF_RenderStatus* pRenderStatus = NULL, FX_INT32 nDownsampleWidth = 0, FX_INT32 nDownsampleHeight = 0);
/external/pdfium/core/include/fxge/
H A Dfx_ge.h438 CFX_Font* pFont, CFX_FontCache* pCache,
444 CFX_Font* pFont, CFX_FontCache* pCache,
619 CFX_FontCache* pCache, const CFX_AffineMatrix* pObject2Device, FX_FLOAT font_size, FX_DWORD color,
697 FX_BOOL DrawText(int nChars, const FXTEXT_CHARPOS* pCharPos, CFX_Font* pFont, CFX_FontCache* pCache,
618 DrawDeviceText(int nChars, const FXTEXT_CHARPOS* pCharPos, CFX_Font* pFont, CFX_FontCache* pCache, const CFX_AffineMatrix* pObject2Device, FX_FLOAT font_size, FX_DWORD color, int alpha_flag = 0, void* pIccTransform = NULL) argument
/external/pdfium/core/src/fxge/agg/include/
H A Dfx_agg_driver.h93 CFX_FontCache* pCache, const CFX_AffineMatrix* pObject2Device, FX_FLOAT font_size, FX_DWORD color,
/external/pdfium/core/src/fxge/ge/
H A Dfx_ge_text.cpp150 CFX_Font* pFont, CFX_FontCache* pCache,
164 if (m_pDeviceDriver->DrawDeviceText(nChars, pCharPos, pFont, pCache, pText2Device, font_size, fill_color, alpha_flag, pIccTransform)) {
179 if (m_pDeviceDriver->DrawDeviceText(nChars, pCharPos, pFont, pCache, pText2Device, font_size, fill_color, alpha_flag, pIccTransform)) {
194 return DrawTextPath(nChars, pCharPos, pFont, pCache, font_size, pText2Device, NULL, NULL, fill_color, 0, NULL, nPathFlags, alpha_flag, pIccTransform);
222 if (pCache == NULL) {
223 pCache = CFX_GEModule::Get()->GetFontCache();
225 CFX_FaceCache* pFaceCache = pCache->GetCachedFace(pFont);
226 FX_FONTCACHE_DEFINE(pCache, pFont);
945 CFX_Font* pFont, CFX_FontCache* pCache,
951 if (pCache
149 DrawNormalText(int nChars, const FXTEXT_CHARPOS* pCharPos, CFX_Font* pFont, CFX_FontCache* pCache, FX_FLOAT font_size, const CFX_AffineMatrix* pText2Device, FX_DWORD fill_color, FX_DWORD text_flags, int alpha_flag, void* pIccTransform) argument
944 DrawTextPath(int nChars, const FXTEXT_CHARPOS* pCharPos, CFX_Font* pFont, CFX_FontCache* pCache, FX_FLOAT font_size, const CFX_AffineMatrix* pText2User, const CFX_AffineMatrix* pUser2Device, const CFX_GraphStateData* pGraphState, FX_DWORD fill_color, FX_ARGB stroke_color, CFX_PathData* pClippingPath, int nFlag, int alpha_flag, void* pIccTransform, int blend_type) argument
[all...]
H A Dfx_ge_ps.cpp605 CFX_FontCache* pCache, const CFX_AffineMatrix* pObject2Device,
622 if (pCache == NULL) {
623 pCache = CFX_GEModule::Get()->GetFontCache();
625 CFX_FaceCache* pFaceCache = pCache->GetCachedFace(pFont);
626 FX_FONTCACHE_DEFINE(pCache, pFont);
604 DrawText(int nChars, const FXTEXT_CHARPOS* pCharPos, CFX_Font* pFont, CFX_FontCache* pCache, const CFX_AffineMatrix* pObject2Device, FX_FLOAT font_size, FX_DWORD color, int alpha_flag, void* pIccTransform) argument
H A Dfx_ge_linux.cpp22 CFX_FontCache* pCache, const CFX_AffineMatrix* pObject2Device,
21 DrawDeviceText(int nChars, const FXTEXT_CHARPOS* pCharPos, CFX_Font* pFont, CFX_FontCache* pCache, const CFX_AffineMatrix* pObject2Device, FX_FLOAT font_size, FX_DWORD argb) argument
/external/chromium_org/third_party/sqlite/src/test/
H A Dthreadtest3.c412 Statement *pCache; /* Linked list of cached statements */ member in struct:Sqlite
533 for(pIter=pDb->pCache; pIter; pIter=pNext){
567 for(pRet=pDb->pCache; pRet; pRet=pRet->pNext){
581 pRet->pNext = pDb->pCache;
582 pDb->pCache = pRet;
/external/pdfium/core/src/fxge/win32/
H A Dfx_win32_print.cpp421 CFX_FontCache* pCache, const CFX_AffineMatrix* pObject2Device, FX_FLOAT font_size, FX_DWORD color,
424 return m_PSRenderer.DrawText(nChars, pCharPos, pFont, pCache, pObject2Device, font_size, color, alpha_flag, pIccTransform);
420 DrawDeviceText(int nChars, const FXTEXT_CHARPOS* pCharPos, CFX_Font* pFont, CFX_FontCache* pCache, const CFX_AffineMatrix* pObject2Device, FX_FLOAT font_size, FX_DWORD color, int alpha_flag, void* pIccTransform) argument
H A Dwin32_int.h225 CFX_FontCache* pCache, const CFX_AffineMatrix* pObject2Device, FX_FLOAT font_size, FX_DWORD color,
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c8518 PCache *pCache; /* Cache that owns this page */ member in struct:PgHdr
8607 SQLITE_PRIVATE void sqlite3PcacheIterateDirty(PCache *pCache, void (*xIter)(PgHdr *));
34354 sqlite3_pcache *pCache; /* Pluggable cache module */ member in struct:PCache
34380 pcacheCheckSynced(PCache *pCache) argument
34454 PCache *pCache = p->pCache; local
34516 sqlite3PcacheSetPageSize(PCache *pCache, int szPage) argument
34529 sqlite3PcacheFetch( PCache *pCache, Pgno pgno, int createFlag, PgHdr **ppPage ) argument
34624 PCache *pCache = p->pCache; local
34650 PCache *pCache; local
34693 sqlite3PcacheCleanAll(PCache *pCache) argument
34703 sqlite3PcacheClearSyncFlags(PCache *pCache) argument
34715 PCache *pCache = p->pCache; local
34735 sqlite3PcacheTruncate(PCache *pCache, Pgno pgno) argument
34762 sqlite3PcacheClose(PCache *pCache) argument
34771 sqlite3PcacheClear(PCache *pCache) argument
34848 sqlite3PcacheDirtyList(PCache *pCache) argument
34859 sqlite3PcacheRefCount(PCache *pCache) argument
34873 sqlite3PcachePagecount(PCache *pCache) argument
34885 sqlite3PcacheGetCachesize(PCache *pCache) argument
34893 sqlite3PcacheSetCachesize(PCache *pCache, int mxPage) argument
34906 sqlite3PcacheIterateDirty(PCache *pCache, void (*xIter)(PgHdr *)) argument
35013 PCache1 *pCache; /* Cache that currently owns this page */ member in struct:PgHdr1
35203 pcache1AllocPage(PCache1 *pCache) argument
35227 PCache1 *pCache = p->pCache; local
35268 pcache1UnderMemoryPressure(PCache1 *pCache) argument
35332 PCache1 *pCache; local
35367 PCache1 *pCache = pPage->pCache; local
35400 pcache1TruncateUnsafe( PCache1 *pCache, unsigned int iLimit ) argument
35461 PCache1 *pCache; /* The newly created page cache */ local
35517 PCache1 *pCache = (PCache1 *)p; local
35535 PCache1 *pCache = (PCache1*)p; local
35598 PCache1 *pCache = (PCache1 *)p; local
35706 PCache1 *pCache = (PCache1 *)p; local
35747 PCache1 *pCache = (PCache1 *)p; local
35782 PCache1 *pCache = (PCache1 *)p; local
35797 PCache1 *pCache = (PCache1 *)p; local
[all...]
/external/sqlite/dist/orig/
H A Dsqlite3.c9836 PCache *pCache; /* Cache that owns this page */ member in struct:PgHdr
9927 SQLITE_PRIVATE void sqlite3PcacheIterateDirty(PCache *pCache, void (*xIter)(PgHdr *));
37954 sqlite3_pcache *pCache; /* Pluggable cache module */ member in struct:PCache
37980 pcacheCheckSynced(PCache *pCache) argument
38061 PCache *pCache = p->pCache; local
38124 sqlite3PcacheSetPageSize(PCache *pCache, int szPage) argument
38148 sqlite3PcacheFetch( PCache *pCache, Pgno pgno, int createFlag, PgHdr **ppPage ) argument
38263 PCache *pCache = p->pCache; local
38289 PCache *pCache; local
38332 sqlite3PcacheCleanAll(PCache *pCache) argument
38342 sqlite3PcacheClearSyncFlags(PCache *pCache) argument
38354 PCache *pCache = p->pCache; local
38374 sqlite3PcacheTruncate(PCache *pCache, Pgno pgno) argument
38401 sqlite3PcacheClose(PCache *pCache) argument
38410 sqlite3PcacheClear(PCache *pCache) argument
38487 sqlite3PcacheDirtyList(PCache *pCache) argument
38498 sqlite3PcacheRefCount(PCache *pCache) argument
38512 sqlite3PcachePagecount(PCache *pCache) argument
38524 sqlite3PcacheGetCachesize(PCache *pCache) argument
38532 sqlite3PcacheSetCachesize(PCache *pCache, int mxPage) argument
38543 sqlite3PcacheShrink(PCache *pCache) argument
38555 sqlite3PcacheIterateDirty(PCache *pCache, void (*xIter)(PgHdr *)) argument
38664 PCache1 *pCache; /* Cache that currently owns this page */ member in struct:PgHdr1
38844 pcache1AllocPage(PCache1 *pCache) argument
38887 PCache1 *pCache = p->pCache; local
38932 pcache1UnderMemoryPressure(PCache1 *pCache) argument
38993 PCache1 *pCache; local
39028 PCache1 *pCache = pPage->pCache; local
39062 pcache1TruncateUnsafe( PCache1 *pCache, unsigned int iLimit ) argument
39123 PCache1 *pCache; /* The newly created page cache */ local
39178 PCache1 *pCache = (PCache1 *)p; local
39197 PCache1 *pCache = (PCache1*)p; local
39215 PCache1 *pCache = (PCache1*)p; local
39282 PCache1 *pCache = (PCache1 *)p; local
39406 PCache1 *pCache = (PCache1 *)p; local
39449 PCache1 *pCache = (PCache1 *)p; local
39484 PCache1 *pCache = (PCache1 *)p; local
39499 PCache1 *pCache = (PCache1 *)p; local
[all...]
/external/sqlite/dist/
H A Dsqlite3.c9836 PCache *pCache; /* Cache that owns this page */ member in struct:PgHdr
9927 SQLITE_PRIVATE void sqlite3PcacheIterateDirty(PCache *pCache, void (*xIter)(PgHdr *));
37974 sqlite3_pcache *pCache; /* Pluggable cache module */ member in struct:PCache
38000 pcacheCheckSynced(PCache *pCache) argument
38081 PCache *pCache = p->pCache; local
38144 sqlite3PcacheSetPageSize(PCache *pCache, int szPage) argument
38168 sqlite3PcacheFetch( PCache *pCache, Pgno pgno, int createFlag, PgHdr **ppPage ) argument
38283 PCache *pCache = p->pCache; local
38309 PCache *pCache; local
38352 sqlite3PcacheCleanAll(PCache *pCache) argument
38362 sqlite3PcacheClearSyncFlags(PCache *pCache) argument
38374 PCache *pCache = p->pCache; local
38394 sqlite3PcacheTruncate(PCache *pCache, Pgno pgno) argument
38421 sqlite3PcacheClose(PCache *pCache) argument
38430 sqlite3PcacheClear(PCache *pCache) argument
38507 sqlite3PcacheDirtyList(PCache *pCache) argument
38518 sqlite3PcacheRefCount(PCache *pCache) argument
38532 sqlite3PcachePagecount(PCache *pCache) argument
38544 sqlite3PcacheGetCachesize(PCache *pCache) argument
38552 sqlite3PcacheSetCachesize(PCache *pCache, int mxPage) argument
38563 sqlite3PcacheShrink(PCache *pCache) argument
38575 sqlite3PcacheIterateDirty(PCache *pCache, void (*xIter)(PgHdr *)) argument
38684 PCache1 *pCache; /* Cache that currently owns this page */ member in struct:PgHdr1
38864 pcache1AllocPage(PCache1 *pCache) argument
38907 PCache1 *pCache = p->pCache; local
38952 pcache1UnderMemoryPressure(PCache1 *pCache) argument
39013 PCache1 *pCache; local
39048 PCache1 *pCache = pPage->pCache; local
39082 pcache1TruncateUnsafe( PCache1 *pCache, unsigned int iLimit ) argument
39143 PCache1 *pCache; /* The newly created page cache */ local
39198 PCache1 *pCache = (PCache1 *)p; local
39217 PCache1 *pCache = (PCache1*)p; local
39235 PCache1 *pCache = (PCache1*)p; local
39302 PCache1 *pCache = (PCache1 *)p; local
39426 PCache1 *pCache = (PCache1 *)p; local
39469 PCache1 *pCache = (PCache1 *)p; local
39504 PCache1 *pCache = (PCache1 *)p; local
39519 PCache1 *pCache = (PCache1 *)p; local
[all...]
/external/pdfium/core/src/fpdfapi/fpdf_parser/
H A Dfpdf_parser_document.cpp10 extern void PDFPreviewClearCache(FX_LPVOID pCache);

Completed in 4753 milliseconds

12