Home
last modified time | relevance | path

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

/freebsd/contrib/sqlite3/
H A Dsqlite3.c57498 struct RowSetChunk *pChunk; /* List of all chunk allocations */ member
57523 p->pChunk = 0;
57543 struct RowSetChunk *pChunk, *pNextChunk; local
57544 for(pChunk=p->pChunk; pChunk; pChunk = pNextChunk){
57545 pNextChunk = pChunk->pNextChunk;
57546 sqlite3DbFree(p->db, pChunk);
57548 p->pChunk = 0;
57584 pNew->pNextChunk = p->pChunk;
57585 p->pChunk = pNew;
107388 FileChunk *pChunk; /* Specific chunk into which cursor points */
[all …]