Lines Matching refs:RecoverTable
12648 typedef struct RecoverTable RecoverTable;
12681 ** All RecoverTable objects used by the recovery operation are allocated
12687 struct RecoverTable {
12694 RecoverTable *pNext;
12699 ** stored in the RecoverTable.aCol[] array of the associated table.
12770 RecoverTable *pTab; /* Table currently being written */
12841 RecoverTable *pTblList; /* List of tables recovered from schema */
13639 ** for the schema of said table, and creates a RecoverTable object to
13640 ** store the schema in memory. The new RecoverTable object is linked into
13658 RecoverTable *pNew = 0;
13666 nByte += sizeof(RecoverTable) + nCol*sizeof(RecoverColumn) + nName+1;
13895 RecoverTable *pTab,
13963 ** Search the list of RecoverTable objects at p->pTblList for one that
13967 static RecoverTable *recoverFindTable(sqlite3_recover *p, u32 iRoot){
13968 RecoverTable *pRet = 0;
14267 RecoverTable *pTbl = 0;
14371 RecoverTable *pTab = p1->pTab;
14619 RecoverTable *pTab = 0;
14620 RecoverTable *pNext = 0;