Searched refs:xTruncate (Results 1 – 4 of 4) sorted by relevance
/external/sqlite/dist/ |
D | sqlite3.h | 624 int (*xTruncate)(sqlite3_file*, sqlite3_int64 size); member 5312 void (*xTruncate)(sqlite3_pcache*, unsigned iLimit); member
|
D | sqlite3.h.orig | 624 int (*xTruncate)(sqlite3_file*, sqlite3_int64 size); 5289 ** ^When SQLite calls the xTruncate() method, the cache must discard all 5291 ** to the value of the iLimit parameter passed to xTruncate(). ^If any 5312 void (*xTruncate)(sqlite3_pcache*, unsigned iLimit);
|
D | sqlite3.c | 1148 int (*xTruncate)(sqlite3_file*, sqlite3_int64 size); member 5836 void (*xTruncate)(sqlite3_pcache*, unsigned iLimit); member 12120 return id->pMethods->xTruncate(id, size); in sqlite3OsTruncate() 30072 sqlite3GlobalConfig.pcache.xTruncate(pCache->pCache, pgno+1);
|
D | sqlite3.c.orig | 1148 int (*xTruncate)(sqlite3_file*, sqlite3_int64 size); 5813 ** ^When SQLite calls the xTruncate() method, the cache must discard all 5815 ** to the value of the iLimit parameter passed to xTruncate(). ^If any 5836 void (*xTruncate)(sqlite3_pcache*, unsigned iLimit); 12115 return id->pMethods->xTruncate(id, size); 24776 unixTruncate, /* xTruncate */ \ 30067 sqlite3GlobalConfig.pcache.xTruncate(pCache->pCache, pgno+1); 30275 unsigned int iMaxKey; /* Largest key seen since xTruncate() */ 30902 ** Implementation of the sqlite3_pcache.xTruncate method. 30951 pcache1Truncate, /* xTruncate */ [all …]
|