Home
last modified time | relevance | path

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

/freebsd/contrib/sqlite3/
H A Dsqlite3.c18140 VTable **aVTrans; /* Virtual tables with open transactions */ member
21966 # define sqlite3VtabInSync(db) ((db)->nVTrans>0 && (db)->aVTrans==0)
158291 VTable **aVTrans;
158294 aVTrans = sqlite3DbRealloc(db, (void *)db->aVTrans, nBytes);
158295 if( !aVTrans ){
158298 memset(&aVTrans[db->nVTrans], 0, sizeof(sqlite3_vtab *)*ARRAY_INCR);
158299 db->aVTrans = aVTrans;
158311 db->aVTrans[db->nVTrans++] = pVTab;
158525 if( db->aVTrans ){
158526 VTable **aVTrans = db->aVTrans;
[all …]