Lines Matching defs:RecoverTable
16508 typedef struct RecoverTable RecoverTable;
16541 ** All RecoverTable objects used by the recovery operation are allocated
16547 struct RecoverTable {
16554 RecoverTable *pNext;
16559 ** stored in the RecoverTable.aCol[] array of the associated table.
16630 RecoverTable *pTab; /* Table currently being written */
16701 RecoverTable *pTblList; /* List of tables recovered from schema */
17502 ** for the schema of said table, and creates a RecoverTable object to
17503 ** store the schema in memory. The new RecoverTable object is linked into
17521 RecoverTable *pNew = 0;
17529 nByte += sizeof(RecoverTable) + nCol*sizeof(RecoverColumn) + nName+1;
17758 RecoverTable *pTab,
17826 ** Search the list of RecoverTable objects at p->pTblList for one that
17830 static RecoverTable *recoverFindTable(sqlite3_recover *p, u32 iRoot){
17831 RecoverTable *pRet = 0;
18130 RecoverTable *pTbl = 0;
18234 RecoverTable *pTab = p1->pTab;
18482 RecoverTable *pTab = 0;
18483 RecoverTable *pNext = 0;