Home
last modified time | relevance | path

Searched refs:xTruncate (Results 1 – 4 of 4) sorted by relevance

/external/sqlite/dist/
Dsqlite3.h624 int (*xTruncate)(sqlite3_file*, sqlite3_int64 size); member
5312 void (*xTruncate)(sqlite3_pcache*, unsigned iLimit); member
Dsqlite3.h.orig624 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);
Dsqlite3.c1148 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);
Dsqlite3.c.orig1148 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 …]