/external/chromium_org/third_party/sqlite/src/src/ |
test_init.c | 145 wrapped.pcache.xTruncate(p, a);
|
os.c | 72 return id->pMethods->xTruncate(id, size);
|
test_multiplex.c | 575 /* Pass xTruncate requests thru to the original VFS after 586 rc = ( !pSubOpen ) ? SQLITE_IOERR_TRUNCATE : pSubOpen->pMethods->xTruncate(pSubOpen, size); 616 rc2 = pSubOpen->pMethods->xTruncate(pSubOpen, size % pGroup->nChunkSize); 939 gMultiplex.sIoMethodsV1.xTruncate = multiplexTruncate; [all...] |
pcache.c | 430 sqlite3GlobalConfig.pcache.xTruncate(pCache->pCache, pgno+1);
|
sqlite.h.in | 670 int (*xTruncate)(sqlite3_file*, sqlite3_int64 size); [all...] |
test_quota.c | 431 /* Pass xTruncate requests thru to the original VFS. If the 437 int rc = pSubOpen->pMethods->xTruncate(pSubOpen, size); 595 gQuota.sIoMethodsV1.xTruncate = quotaTruncate;
|
test_vfstrace.c | 251 vfstrace_printf(pInfo, "%s.xTruncate(%s,%lld)", pInfo->zVfsName, p->zFName, 253 rc = p->pReal->pMethods->xTruncate(p->pReal, size); 507 pNew->xTruncate = vfstraceTruncate;
|
test_osinst.c | 201 vfslogTruncate, /* xTruncate */ 311 rc = p->pReal->pMethods->xTruncate(p->pReal, size); 767 case OS_TRUNCATE: zEvent = "xTruncate"; break; [all...] |
/external/chromium_org/third_party/sqlite/amalgamation/ |
sqlite3.h | 675 int (*xTruncate)(sqlite3_file*, sqlite3_int64 size); [all...] |
sqlite3.c | [all...] |
/external/chromium_org/sql/ |
connection.cc | 467 rc = file->pMethods->xTruncate(file, 0); [all...] |
/external/chromium_org/third_party/sqlite/src/ext/async/ |
sqlite3async.c | [all...] |