Searched refs:xFetch (Results 1 - 4 of 4) sorted by relevance

/netbsd-current/external/gpl3/gcc.old/dist/libphobos/src/etc/c/
H A Dsqlite3.d311 int function (sqlite3_file*, sqlite3_int64 iOfst, int iAmt, void **pp) xFetch;
1756 sqlite3_pcache_page * function(sqlite3_pcache*, uint key, int createFlag) xFetch;
1773 void* function (sqlite3_pcache*, uint key, int createFlag) xFetch;
/netbsd-current/external/public-domain/sqlite/dist/
H A Dsqlite3.h855 int (*xFetch)(sqlite3_file*, sqlite3_int64 iOfst, int iAmt, void **pp); member in struct:sqlite3_io_methods
8994 ** [[the xFetch() page cache methods]]
8995 ** The xFetch() method locates a page in the cache and returns a pointer to
9004 ** is 1. After it has been retrieved using xFetch, the page is considered
9022 ** ^(SQLite will normally invoke xFetch() with a createFlag of 0 or 1. SQLite
9024 ** failed.)^ In between the xFetch() calls, SQLite may
9039 ** to xFetch().
9076 sqlite3_pcache_page *(*xFetch)(sqlite3_pcache*, unsigned key, int createFlag); member in struct:sqlite3_pcache_methods2
9098 void *(*xFetch)(sqlite3_pcache*, unsigned key, int createFlag); member in struct:sqlite3_pcache_methods
H A Dshell.c2724 fprintf(pcachetraceOut, "PCACHETRACE: xFetch(%p,%u,%d)\n", p, key, crFg);
2726 pRes = pcacheBase.xFetch(p, key, crFg);
2728 fprintf(pcachetraceOut, "PCACHETRACE: xFetch(%p,%u,%d) -> %p\n",
2795 if( pcacheBase.xFetch==0 ){
2808 if( pcacheBase.xFetch!=0 ){
8841 apndFetch, /* xFetch */
9043 return pFile->pMethods->xFetch(pFile, iOfst+p->iPgOne, iAmt, pp);
H A Dsqlite3.c1168 int (*xFetch)(sqlite3_file*, sqlite3_int64 iOfst, int iAmt, void **pp); member in struct:sqlite3_io_methods
9307 ** [[the xFetch() page cache methods]]
9308 ** The xFetch() method locates a page in the cache and returns a pointer to
9317 ** is 1. After it has been retrieved using xFetch, the page is considered
9335 ** ^(SQLite will normally invoke xFetch() with a createFlag of 0 or 1. SQLite
9337 ** failed.)^ In between the xFetch() calls, SQLite may
9352 ** to xFetch().
9389 sqlite3_pcache_page *(*xFetch)(sqlite3_pcache*, unsigned key, int createFlag); member in struct:sqlite3_pcache_methods2
9411 void *(*xFetch)(sqlite3_pcache*, unsigned key, int createFlag); member in struct:sqlite3_pcache_methods
[all...]

Completed in 705 milliseconds