HomeSort by: relevance | last modified time | path
    Searched defs:xFetch (Results 1 - 2 of 2) sorted by relevancy

  /src/external/public-domain/sqlite/dist/
sqlite3.h 874 int (*xFetch)(sqlite3_file*, sqlite3_int64 iOfst, int iAmt, void **pp);
9427 ** [[the xFetch() page cache methods]]
9428 ** The xFetch() method locates a page in the cache and returns a pointer to
9437 ** is 1. After it has been retrieved using xFetch, the page is considered
9455 ** ^(SQLite will normally invoke xFetch() with a createFlag of 0 or 1. SQLite
9457 ** failed.)^ In between the xFetch() calls, SQLite may
9472 ** to xFetch().
9509 sqlite3_pcache_page *(*xFetch)(sqlite3_pcache*, unsigned key, int createFlag);
9531 void *(*xFetch)(sqlite3_pcache*, unsigned key, int createFlag);
sqlite3.c 1195 int (*xFetch)(sqlite3_file*, sqlite3_int64 iOfst, int iAmt, void **pp);
9748 ** [[the xFetch() page cache methods]]
9749 ** The xFetch() method locates a page in the cache and returns a pointer to
9758 ** is 1. After it has been retrieved using xFetch, the page is considered
9776 ** ^(SQLite will normally invoke xFetch() with a createFlag of 0 or 1. SQLite
9778 ** failed.)^ In between the xFetch() calls, SQLite may
9793 ** to xFetch().
9830 sqlite3_pcache_page *(*xFetch)(sqlite3_pcache*, unsigned key, int createFlag);
9852 void *(*xFetch)(sqlite3_pcache*, unsigned key, int createFlag);
    [all...]

Completed in 145 milliseconds