Searched refs:pIncrblob (Results 1 - 1 of 1) sorted by relevance

/freebsd-13-stable/contrib/sqlite3/tea/generic/
H A Dtclsqlite3.c184 IncrblobChannel *pIncrblob;/* Linked list of open incrblob channels */ member in struct:SqliteDb
223 for(p=pDb->pIncrblob; p; p=pNext){
245 /* Remove the channel from the SqliteDb.pIncrblob list. */
252 if( p->pDb->pIncrblob==p ){
253 p->pDb->pIncrblob = p->pNext;
428 /* Link the new channel into the SqliteDb.pIncrblob list. */
429 p->pNext = pDb->pIncrblob;
434 pDb->pIncrblob = p;

Completed in 103 milliseconds