Searched defs:pTab (Results 1 - 25 of 27) sorted by relevance

12

/external/chromium_org/third_party/sqlite/src/src/
H A Dauth.c141 Table *pTab = 0; /* The table being read */ local
157 pTab = pParse->pTriggerTab;
162 pTab = pTabList->a[iSrc].pTab;
168 if( NEVER(pTab==0) ) return;
171 assert( iCol<pTab->nCol );
172 zCol = pTab->aCol[iCol].zName;
173 }else if( pTab->iPKey>=0 ){
174 assert( pTab->iPKey<pTab
[all...]
H A Dvdbeblob.c155 Table *pTab; local
176 pTab = sqlite3LocateTable(pParse, 0, zTable, zDb);
177 if( pTab && IsVirtual(pTab) ){
178 pTab = 0;
182 if( pTab && pTab->pSelect ){
183 pTab = 0;
187 if( !pTab ){
198 /* Now search pTab fo
[all...]
H A Dcallback.c424 Table *pTab = sqliteHashData(pElem); local
425 sqlite3DeleteTable(0, pTab);
H A Ddelete.c27 ** pSrc->a[0].pTab Pointer to the Table object
33 Table *pTab; local
35 pTab = sqlite3LocateTable(pParse, 0, pItem->zName, pItem->zDatabase);
36 sqlite3DeleteTable(pParse->db, pItem->pTab);
37 pItem->pTab = pTab;
38 if( pTab ){
39 pTab->nRef++;
42 pTab = 0;
44 return pTab;
52 sqlite3IsReadOnly(Parse *pParse, Table *pTab, int viewOk) argument
229 Table *pTab; /* The table from which records will be deleted */ local
478 sqlite3GenerateRowDelete( Parse *pParse, Table *pTab, int iCur, int iRowid, int count, Trigger *pTrigger, int onconf ) argument
584 sqlite3GenerateRowIndexDelete( Parse *pParse, Table *pTab, int iCur, int *aRegIdx ) argument
621 Table *pTab = pIdx->pTable; local
[all...]
H A Dupdate.c22 Table *pTab, /* The virtual table */
25 int *aXRef, /* Mapping from columns of pTab to entries in pChanges */
32 ** i-th column of table pTab. This routine sets the P4 parameter of the
60 void sqlite3ColumnDefault(Vdbe *v, Table *pTab, int i, int iReg){ argument
61 assert( pTab!=0 );
62 if( !pTab->pSelect ){
65 Column *pCol = &pTab->aCol[i];
66 VdbeComment((v, "%s.%s", pTab->zName, pCol->zName));
67 assert( i<pTab->nCol );
74 if( iReg>=0 && pTab
96 Table *pTab; /* The table to be updated */ local
593 updateVirtualTable( Parse *pParse, SrcList *pSrc, Table *pTab, ExprList *pChanges, Expr *pRowid, int *aXRef, Expr *pWhere ) argument
[all...]
H A Dalter.c278 ** tables that have foreign key constraints that refer to table pTab (i.e.
279 ** constraints for which pTab is the parent table) from the sqlite_master
282 static char *whereForeignKeys(Parse *pParse, Table *pTab){ argument
285 for(p=sqlite3FkReferences(pTab); p; p=p->pNextTo){
294 ** temporary triggers on table pTab from the sqlite_temp_master table. If
295 ** table pTab has no temporary triggers, or is itself stored in the
298 static char *whereTempTriggers(Parse *pParse, Table *pTab){ argument
308 if( pTab->pSchema!=pTempSchema ){
310 for(pTrig=sqlite3TriggerList(pParse, pTab); pTrig; pTrig=pTrig->pNext){
326 ** pTab fro
332 reloadTableSchema(Parse *pParse, Table *pTab, const char *zName) argument
400 Table *pTab; /* Table being renamed */ local
625 Table *pTab; /* Table being altered */ local
749 Table *pTab; local
[all...]
H A Danalyze.c106 Table *pTab, /* Table whose indices are to be analyzed */
119 int iDb; /* Index of database containing pTab */
138 if( v==0 || NEVER(pTab==0) ){
141 if( pTab->tnum==0 ){
145 if( sqlite3_strnicmp(pTab->zName, "sqlite_", 7)==0 ){
150 iDb = sqlite3SchemaToIndex(db, pTab->pSchema);
154 if( sqlite3AuthCheck(pParse, SQLITE_ANALYZE, pTab->zName, 0,
161 sqlite3TableLock(pParse, iDb, pTab->tnum, 0, pTab->zName);
164 sqlite3VdbeAddOp4(v, OP_String8, 0, regTabname, 0, pTab
104 analyzeOneTable( Parse *pParse, Table *pTab, Index *pOnlyIdx, int iStatCur, int iMem ) argument
396 Table *pTab = (Table*)sqliteHashData(k); local
407 analyzeTable(Parse *pParse, Table *pTab, Index *pOnlyIdx) argument
443 Table *pTab; local
[all...]
H A Dprepare.c138 Table *pTab; local
203 pTab = sqlite3FindTable(db, zMasterName, db->aDb[iDb].zName);
204 if( ALWAYS(pTab) ){
205 pTab->tabFlags |= TF_Readonly;
H A Dresolve.c111 ** pExpr->pTab Points to the Table structure of X.Y (even if
152 pExpr->pTab = 0;
162 Table *pTab; local
166 pTab = pItem->pTab;
167 assert( pTab!=0 && pTab->zName!=0 );
168 iDb = sqlite3SchemaToIndex(db, pTab->pSchema);
169 assert( pTab->nCol>0 );
175 char *zTabName = pTab
232 Table *pTab = 0; local
[all...]
H A Dfkey.c316 int iDb, /* Index of database housing pTab */
317 Table *pTab, /* Parent table of FK pFKey */
318 Index *pIdx, /* Unique index on parent key columns in pTab */
323 int isIgnore /* If true, pretend pTab contains all NULL values */
348 ** column of the parent table (table pTab). */
364 if( pTab==pFKey->pFrom && nIncr==1 ){
368 sqlite3OpenTable(pParse, iCur, iDb, pTab, OP_OpenRead);
390 if( pTab==pFKey->pFrom && nIncr==1 ){
460 Table *pTab,
475 assert( !pIdx || pIdx->pTable==pTab );
314 fkLookupParent( Parse *pParse, int iDb, Table *pTab, Index *pIdx, FKey *pFKey, int *aiCol, int regData, int nIncr, int isIgnore ) argument
457 fkScanChildren( Parse *pParse, SrcList *pSrc, Table *pTab, Index *pIdx, FKey *pFKey, int *aiCol, int regData, int nIncr ) argument
581 sqlite3FkReferences(Table *pTab) argument
622 sqlite3FkDropTable(Parse *pParse, SrcList *pName, Table *pTab) argument
683 sqlite3FkCheck( Parse *pParse, Table *pTab, int regOld, int regNew ) argument
865 sqlite3FkRequired( Parse *pParse, Table *pTab, int *aChange, int chngRowid ) argument
940 fkActionTrigger( Parse *pParse, Table *pTab, FKey *pFKey, ExprList *pChanges ) argument
1125 sqlite3FkActions( Parse *pParse, Table *pTab, ExprList *pChanges, int regOld ) argument
1153 sqlite3FkDelete(sqlite3 *db, Table *pTab) argument
[all...]
H A Dpragma.c864 Table *pTab; local
866 pTab = sqlite3FindTable(db, zRight, zDb);
867 if( pTab ){
879 sqlite3ViewGetColumnNames(pParse, pTab);
880 for(i=0, pCol=pTab->aCol; i<pTab->nCol; i++, pCol++){
903 Table *pTab; local
908 pTab = pIdx->pTable;
918 assert( pTab->nCol>cnum );
919 sqlite3VdbeAddOp4(v, OP_String8, 0, 3, 0, pTab
927 Table *pTab; local
990 Table *pTab; local
1118 Table *pTab = sqliteHashData(x); local
1148 Table *pTab = sqliteHashData(x); local
[all...]
H A Dtest_stat.c148 StatTable *pTab; local
150 pTab = (StatTable *)sqlite3_malloc(sizeof(StatTable));
151 memset(pTab, 0, sizeof(StatTable));
152 pTab->db = db;
155 *ppVtab = &pTab->base;
199 StatTable *pTab = (StatTable *)pVTab; local
207 rc = sqlite3_prepare_v2(pTab->db,
369 StatTable *pTab = (StatTable *)pCursor->pVtab; local
370 Btree *pBt = pTab->db->aDb[0].pBt;
H A Dtrigger.c34 ** Given table pTab, return a list of all the triggers attached to
37 ** All of the triggers on pTab that are in the same database as pTab
38 ** are already attached to pTab->pTrigger. But there might be additional
39 ** triggers on pTab in the TEMP schema. This routine prepends all
40 ** TEMP triggers on pTab to the beginning of the pTab->pTrigger list
44 ** that fire off of pTab. The list will include any TEMP triggers on
45 ** pTab as well as the triggers lised in pTab
47 sqlite3TriggerList(Parse *pParse, Table *pTab) argument
93 Table *pTab; /* Table that the trigger fires off of */ local
317 Table *pTab; local
597 Table *pTab = tableOfTrigger(pTrigger); local
631 sqlite3TriggersExist( Parse *pParse, Table *pTab, int op, ExprList *pChanges, int *pMask ) argument
802 codeRowTrigger( Parse *pParse, Trigger *pTrigger, Table *pTab, int orconf ) argument
914 getRowTrigger( Parse *pParse, Trigger *pTrigger, Table *pTab, int orconf ) argument
948 sqlite3CodeRowTriggerDirect( Parse *pParse, Trigger *p, Table *pTab, int reg, int orconf, int ignoreJump ) argument
1020 sqlite3CodeRowTrigger( Parse *pParse, Trigger *pTrigger, int op, ExprList *pChanges, int tr_tm, Table *pTab, int reg, int orconf, int ignoreJump ) argument
1082 sqlite3TriggerColmask( Parse *pParse, Trigger *pTrigger, ExprList *pChanges, int isNew, int tr_tm, Table *pTab, int orconf ) argument
[all...]
H A Dvtab.c100 ** pTab is a pointer to a Table structure representing a virtual-table.
104 VTable *sqlite3GetVTable(sqlite3 *db, Table *pTab){ argument
106 assert( IsVirtual(pTab) );
107 for(pVtab=pTab->pVTable; pVtab && pVtab->db!=db; pVtab=pVtab->pNext);
323 Table *pTab = pParse->pNewTable; /* The table being constructed */ local
326 if( pTab==0 ) return;
329 if( pTab->nModuleArg<1 ) return;
357 iDb = sqlite3SchemaToIndex(db, pTab->pSchema);
363 pTab->zName,
364 pTab
430 vtabCallConstructor( sqlite3 *db, Table *pTab, Module *pMod, int (*xConstruct)(sqlite3*,void*,int,const char*const*,sqlite3_vtab**,char**), char **pzErr ) argument
536 sqlite3VtabCallConnect(Parse *pParse, Table *pTab) argument
601 Table *pTab; local
641 Table *pTab; local
703 Table *pTab; local
861 Table *pTab; local
921 sqlite3VtabMakeWritable(Parse *pParse, Table *pTab) argument
[all...]
H A Dinsert.c24 Table *pTab, /* The table to be opened */
28 if( IsVirtual(pTab) ) return;
31 sqlite3TableLock(p, iDb, pTab->tnum, (opcode==OP_OpenWrite)?1:0, pTab->zName);
32 sqlite3VdbeAddOp3(v, opcode, iCur, pTab->tnum, iDb);
33 sqlite3VdbeChangeP4(v, -1, SQLITE_INT_TO_PTR(pTab->nCol), P4_INT32);
34 VdbeComment((v, "%s", pTab->zName));
68 Table *pTab = pIdx->pTable; local
76 pIdx->zColAff[n] = pTab->aCol[pIdx->aiColumn[n]].affinity;
87 ** string for table pTab
20 sqlite3OpenTable( Parse *p, int iCur, int iDb, Table *pTab, int opcode ) argument
99 sqlite3TableAffinityStr(Vdbe *v, Table *pTab) argument
136 readsTable(Parse *p, int iStartAddr, int iDb, Table *pTab) argument
442 Table *pTab; /* The table to insert into. aka TABLE */ local
1137 sqlite3GenerateConstraintChecks( Parse *pParse, Table *pTab, int baseCur, int regRowid, int *aRegIdx, int rowidChng, int isUpdate, int overrideError, int ignoreDest, int *pbMayReplace ) argument
1423 sqlite3CompleteInsertion( Parse *pParse, Table *pTab, int baseCur, int regRowid, int *aRegIdx, int isUpdate, int appendBias, int useSeekResult ) argument
1483 sqlite3OpenTableAndIndices( Parse *pParse, Table *pTab, int baseCur, int op ) argument
[all...]
H A Dbuild.c1144 Table *pTab = pParse->pNewTable; local
1147 if( pTab==0 || IN_DECLARE_VTAB ) goto primary_key_exit;
1148 if( pTab->tabFlags & TF_HasPrimaryKey ){
1150 "table \"%s\" has more than one primary key", pTab->zName);
1153 pTab->tabFlags |= TF_HasPrimaryKey;
1155 iCol = pTab->nCol - 1;
1156 pTab->aCol[iCol].isPrimKey = 1;
1159 for(iCol=0; iCol<pTab->nCol; iCol++){
1160 if( sqlite3StrICmp(pList->a[i].zName, pTab->aCol[iCol].zName)==0 ){
1164 if( iCol<pTab
1207 Table *pTab = pParse->pNewTable; local
1843 Table *pTab = sqliteHashData(i); local
1883 Table *pTab = sqliteHashData(pElem); local
1932 destroyTable(Parse *pParse, Table *pTab) argument
1990 Table *pTab; local
2290 Table *pTab; local
2310 Table *pTab = pIndex->pTable; /* The table that is indexed */ local
2406 Table *pTab = 0; /* Table to be indexed */ local
2936 Table *pTab = pIndex->pTable; local
3617 reindexTable(Parse *pParse, Table *pTab, char const *zColl) argument
3641 Table *pTab; /* A table in the database */ local
3672 Table *pTab; /* A table in the database */ local
[all...]
H A Dmain.c2289 Table *pTab = 0; local
2308 pTab = sqlite3FindTable(db, zTableName, zDbName);
2309 if( !pTab || pTab->pSelect ){
2310 pTab = 0;
2316 iCol = pTab->iPKey;
2318 pCol = &pTab->aCol[iCol];
2321 for(iCol=0; iCol<pTab->nCol; iCol++){
2322 pCol = &pTab->aCol[iCol];
2327 if( iCol==pTab
[all...]
H A Dexpr.c46 && pExpr->pTab!=0
48 /* op==TK_REGISTER && pExpr->pTab!=0 happens when pExpr was originally
52 assert( pExpr->pTab && j<pExpr->pTab->nCol );
53 return pExpr->pTab->aCol[j].affinity;
100 if( p->pTab!=0 && (
103 /* op==TK_REGISTER && p->pTab!=0 happens when pExpr was originally
109 zColl = p->pTab->aCol[j].zColl;
898 Table *pTab; local
908 pTab
1346 Table *pTab; local
1446 Table *pTab = p->pSrc->a[0].pTab; /* Table <table>. */ local
2127 sqlite3ExprCodeGetColumnOfTable( Vdbe *v, Table *pTab, int iTabCur, int iCol, int regOut ) argument
2154 sqlite3ExprCodeGetColumn( Parse *pParse, Table *pTab, int iColumn, int iTable, int iReg ) argument
2710 Table *pTab = pExpr->pTab; local
[all...]
H A Dselect.c184 static int columnIndex(Table *pTab, const char *zCol){ argument
186 for(i=0; i<pTab->nCol; i++){
187 if( sqlite3StrICmp(pTab->aCol[i].zName, zCol)==0 ) return i;
206 int *piCol /* Write index of pSrc->a[*piTab].pTab->aCol[] here */
213 iCol = columnIndex(pSrc->a[i].pTab, zCol);
253 assert( pSrc->a[iLeft].pTab );
254 assert( pSrc->a[iRight].pTab );
330 Table *pLeftTab = pLeft->pTab;
331 Table *pRightTab = pRight->pTab;
997 Table *pTab local
1174 Table *pTab; local
1249 Table *pTab; /* Table associated with this expression */ local
1349 Table *pTab; local
3087 Table *pTab; local
3118 Table *pTab = pFrom->pTab; local
3187 Table *pTab; local
3297 Table *pTab = pFrom->pTab; local
3440 Table *pTab = pFrom->pTab; local
3630 explainSimpleCount( Parse *pParse, Table *pTab, Index *pIdx ) argument
4209 Table *pTab; local
[all...]
H A Dwhere.c1406 ** pOrderBy is an ORDER BY clause from a SELECT statement. pTab is the
1408 ** the table has a cursor number of "base". pIdx is an index on pTab.
1720 aff = pSrc->pTab->aCol[pTerm->u.leftColumn].affinity;
1763 pTable = pSrc->pTab;
1835 pTable = pSrc->pTab;
1967 WHERETRACE(("Recomputing index info for %s...\n", pSrc->pTab->zName));
2065 static int vtabBestIndex(Parse *pParse, Table *pTab, sqlite3_index_info *p){ argument
2066 sqlite3_vtab *pVtab = sqlite3GetVTable(pParse->db, pTab)->pVtab;
2070 WHERETRACE(("xBestIndex for %s\n", pTab->zName));
2090 "table %s: xBestIndex returned an invalid plan", pTab
2124 Table *pTab = pSrc->pTab; local
3470 explainIndexRange(sqlite3 *db, WhereLevel *pLevel, Table *pTab) argument
4729 Table *pTab; /* Table to open */ local
4924 Table *pTab = pTabItem->pTab; local
[all...]
H A DsqliteInt.h1536 Table *pTab; /* Source table */ member in struct:AggInfo::AggInfo_col
1619 ** is a disk table or the "old.*" pseudo-table, then pTab points to the
1674 Table *pTab; /* Table for TK_COLUMN expressions. */ member in struct:Expr
1840 Table *pTab; /* An SQL table corresponding to zName */ member in struct:SrcList::SrcList_item
1851 Bitmask colUsed; /* Bit N (1<<N) set if column N of pTab is used */
2105 Table *pTab; /* Table this info block refers to */ member in struct:AutoincInfo
2106 int iDb; /* Index in sqlite3.aDb[] of database holding pTab */
/external/aac/libAACenc/src/
H A Dchannel_map.cpp180 const CHANNEL_ASSIGNMENT_INFO_TAB *pTab; local
184 pTab = assignmentInfoTabMpeg;
186 pTab = assignmentInfoTabWav;
189 if (encMode== pTab[i].encoderMode) {
193 return (pTab[i].channel_assignment);
/external/chromium_org/third_party/sqlite/src/ext/fts3/
H A Dfts3_snippet.c585 Fts3Table *pTab, /* FTS3 table snippet comes from */
616 pMod = (sqlite3_tokenizer_module *)pTab->pTokenizer->pModule;
621 rc = pMod->xOpen(pTab->pTokenizer, zDoc, nDoc, &pC);
625 pC->pTokenizer = pTab->pTokenizer;
659 Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab; local
684 pMod = (sqlite3_tokenizer_module *)pTab->pTokenizer->pModule;
685 rc = pMod->xOpen(pTab->pTokenizer, zDoc, nDoc, &pC);
689 pC->pTokenizer = pTab->pTokenizer;
711 rc = fts3SnippetShift(pTab, nSnippet, &zDoc[iBegin], n, &iPos, &hlmask);
901 Fts3Table *pTab,
584 fts3SnippetShift( Fts3Table *pTab, int nSnippet, const char *zDoc, int nDoc, int *piPos, u64 *pHlmask ) argument
900 fts3MatchinfoCheck( Fts3Table *pTab, char cArg, char **pzErr ) argument
944 fts3MatchinfoSelectDoctotal( Fts3Table *pTab, sqlite3_stmt **ppStmt, sqlite3_int64 *pnDoc, const char **paLen ) argument
1139 Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab; local
1239 Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab; local
1311 Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab; local
1452 Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab; local
1589 Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab; local
[all...]
H A Dfts3_write.c276 Fts3Table *pTab, /* FTS3 table handle */
286 rc = fts3SqlStmt(pTab, eStmt, &pStmt, 0);
306 Fts3Table *pTab, /* Fts3 table handle */
309 return fts3SelectDocsize(pTab, SQL_SELECT_DOCTOTAL, 0, ppStmt);
313 Fts3Table *pTab, /* Fts3 table handle */
317 return fts3SelectDocsize(pTab, SQL_SELECT_DOCSIZE, iDocid, ppStmt);
275 fts3SelectDocsize( Fts3Table *pTab, int eStmt, sqlite3_int64 iDocid, sqlite3_stmt **ppStmt ) argument
305 sqlite3Fts3SelectDoctotal( Fts3Table *pTab, sqlite3_stmt **ppStmt ) argument
312 sqlite3Fts3SelectDocsize( Fts3Table *pTab, sqlite3_int64 iDocid, sqlite3_stmt **ppStmt ) argument
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c9881 Table *pTab; /* Source table */ member in struct:AggInfo::AggInfo_col
9964 ** is a disk table or the "old.*" pseudo-table, then pTab points to the
10019 Table *pTab; /* Table for TK_COLUMN expressions. */ member in struct:Expr
10185 Table *pTab; /* An SQL table corresponding to zName */ member in struct:SrcList::SrcList_item
10196 Bitmask colUsed; /* Bit N (1<<N) set if column N of pTab is used */
10450 Table *pTab; /* Table this info block refers to */ member in struct:AutoincInfo
10451 int iDb; /* Index in sqlite3.aDb[] of database holding pTab */
68583 Table *pTab; local
69693 Table *pTab; local
69763 Table *pTab = 0; local
71635 Table *pTab; local
72083 Table *pTab; local
72183 Table *pTab = p->pSrc->a[0].pTab; /* Table <table>. */ local
72864 sqlite3ExprCodeGetColumnOfTable( Vdbe *v, Table *pTab, int iTabCur, int iCol, int regOut ) argument
72891 sqlite3ExprCodeGetColumn( Parse *pParse, Table *pTab, int iColumn, int iTable, int iReg ) argument
73447 Table *pTab = pExpr->pTab; local
74776 whereForeignKeys(Parse *pParse, Table *pTab) argument
74792 whereTempTriggers(Parse *pParse, Table *pTab) argument
74826 reloadTableSchema(Parse *pParse, Table *pTab, const char *zName) argument
74894 Table *pTab; /* Table being renamed */ local
75119 Table *pTab; /* Table being altered */ local
75243 Table *pTab; local
75426 analyzeOneTable( Parse *pParse, Table *pTab, Index *pOnlyIdx, int iStatCur, int iMem ) argument
75718 Table *pTab = (Table*)sqliteHashData(k); local
75729 analyzeTable(Parse *pParse, Table *pTab, Index *pOnlyIdx) argument
75765 Table *pTab; local
76729 Table *pTab = 0; /* The table being read */ local
77983 Table *pTab = pParse->pNewTable; local
78046 Table *pTab = pParse->pNewTable; local
78682 Table *pTab = sqliteHashData(i); local
78722 Table *pTab = sqliteHashData(pElem); local
78771 destroyTable(Parse *pParse, Table *pTab) argument
78829 Table *pTab; local
79129 Table *pTab; local
79149 Table *pTab = pIndex->pTable; /* The table that is indexed */ local
79245 Table *pTab = 0; /* Table to be indexed */ local
79775 Table *pTab = pIndex->pTable; local
80456 reindexTable(Parse *pParse, Table *pTab, char const *zColl) argument
80480 Table *pTab; /* A table in the database */ local
80511 Table *pTab; /* A table in the database */ local
81022 Table *pTab = sqliteHashData(pElem); local
81090 Table *pTab; local
81109 sqlite3IsReadOnly(Parse *pParse, Table *pTab, int viewOk) argument
81286 Table *pTab; /* The table from which records will be deleted */ local
81535 sqlite3GenerateRowDelete( Parse *pParse, Table *pTab, int iCur, int iRowid, int count, Trigger *pTrigger, int onconf ) argument
81641 sqlite3GenerateRowIndexDelete( Parse *pParse, Table *pTab, int iCur, int *aRegIdx ) argument
81678 Table *pTab = pIdx->pTable; local
83606 fkLookupParent( Parse *pParse, int iDb, Table *pTab, Index *pIdx, FKey *pFKey, int *aiCol, int regData, int nIncr, int isIgnore ) argument
83749 fkScanChildren( Parse *pParse, SrcList *pSrc, Table *pTab, Index *pIdx, FKey *pFKey, int *aiCol, int regData, int nIncr ) argument
83873 sqlite3FkReferences(Table *pTab) argument
83914 sqlite3FkDropTable(Parse *pParse, SrcList *pName, Table *pTab) argument
83975 sqlite3FkCheck( Parse *pParse, Table *pTab, int regOld, int regNew ) argument
84157 sqlite3FkRequired( Parse *pParse, Table *pTab, int *aChange, int chngRowid ) argument
84232 fkActionTrigger( Parse *pParse, Table *pTab, FKey *pFKey, ExprList *pChanges ) argument
84417 sqlite3FkActions( Parse *pParse, Table *pTab, ExprList *pChanges, int regOld ) argument
84445 sqlite3FkDelete(sqlite3 *db, Table *pTab) argument
84503 sqlite3OpenTable( Parse *p, int iCur, int iDb, Table *pTab, int opcode ) argument
84551 Table *pTab = pIdx->pTable; local
84582 sqlite3TableAffinityStr(Vdbe *v, Table *pTab) argument
84619 readsTable(Parse *p, int iStartAddr, int iDb, Table *pTab) argument
84925 Table *pTab; /* The table to insert into. aka TABLE */ local
85620 sqlite3GenerateConstraintChecks( Parse *pParse, Table *pTab, int baseCur, int regRowid, int *aRegIdx, int rowidChng, int isUpdate, int overrideError, int ignoreDest, int *pbMayReplace ) argument
85906 sqlite3CompleteInsertion( Parse *pParse, Table *pTab, int baseCur, int regRowid, int *aRegIdx, int isUpdate, int appendBias, int useSeekResult ) argument
85966 sqlite3OpenTableAndIndices( Parse *pParse, Table *pTab, int baseCur, int op ) argument
88400 Table *pTab; local
88439 Table *pTab; local
88463 Table *pTab; local
88526 Table *pTab; local
88654 Table *pTab = sqliteHashData(x); local
88684 Table *pTab = sqliteHashData(x); local
89200 Table *pTab; local
90106 columnIndex(Table *pTab, const char *zCol) argument
90919 Table *pTab = 0; /* Table structure column is extracted from */ local
91096 Table *pTab; local
91171 Table *pTab; /* Table associated with this expression */ local
91271 Table *pTab; local
93009 Table *pTab; local
93040 Table *pTab = pFrom->pTab; local
93109 Table *pTab; local
93219 Table *pTab = pFrom->pTab; local
93362 Table *pTab = pFrom->pTab; local
93552 explainSimpleCount( Parse *pParse, Table *pTab, Index *pIdx ) argument
94131 Table *pTab; local
94633 sqlite3TriggerList(Parse *pParse, Table *pTab) argument
94679 Table *pTab; /* Table that the trigger fires off of */ local
94903 Table *pTab; local
95183 Table *pTab = tableOfTrigger(pTrigger); local
95217 sqlite3TriggersExist( Parse *pParse, Table *pTab, int op, ExprList *pChanges, int *pMask ) argument
95388 codeRowTrigger( Parse *pParse, Trigger *pTrigger, Table *pTab, int orconf ) argument
95500 getRowTrigger( Parse *pParse, Trigger *pTrigger, Table *pTab, int orconf ) argument
95534 sqlite3CodeRowTriggerDirect( Parse *pParse, Trigger *p, Table *pTab, int reg, int orconf, int ignoreJump ) argument
95606 sqlite3CodeRowTrigger( Parse *pParse, Trigger *pTrigger, int op, ExprList *pChanges, int tr_tm, Table *pTab, int reg, int orconf, int ignoreJump ) argument
95668 sqlite3TriggerColmask( Parse *pParse, Trigger *pTrigger, ExprList *pChanges, int isNew, int tr_tm, Table *pTab, int orconf ) argument
95759 sqlite3ColumnDefault(Vdbe *v, Table *pTab, int i, int iReg) argument
95795 Table *pTab; /* The table to be updated */ local
96292 updateVirtualTable( Parse *pParse, SrcList *pSrc, Table *pTab, ExprList *pChanges, Expr *pRowid, int *aXRef, Expr *pWhere ) argument
96816 sqlite3GetVTable(sqlite3 *db, Table *pTab) argument
97035 Table *pTab = pParse->pNewTable; /* The table being constructed */ local
97142 vtabCallConstructor( sqlite3 *db, Table *pTab, Module *pMod, int (*xConstruct)(sqlite3*,void*,int,const char*const*,sqlite3_vtab**,char**), char **pzErr ) argument
97248 sqlite3VtabCallConnect(Parse *pParse, Table *pTab) argument
97313 Table *pTab; local
97353 Table *pTab; local
97415 Table *pTab; local
97573 Table *pTab; local
97633 sqlite3VtabMakeWritable(Parse *pParse, Table *pTab) argument
99719 vtabBestIndex(Parse *pParse, Table *pTab, sqlite3_index_info *p) argument
99778 Table *pTab = pSrc->pTab; local
101124 explainIndexRange(sqlite3 *db, WhereLevel *pLevel, Table *pTab) argument
102383 Table *pTab; /* Table to open */ local
102578 Table *pTab = pTabItem->pTab; local
109534 Table *pTab = 0; local
120192 fts3SelectDocsize( Fts3Table *pTab, int eStmt, sqlite3_int64 iDocid, sqlite3_stmt **ppStmt ) argument
120222 sqlite3Fts3SelectDoctotal( Fts3Table *pTab, sqlite3_stmt **ppStmt ) argument
120229 sqlite3Fts3SelectDocsize( Fts3Table *pTab, sqlite3_int64 iDocid, sqlite3_stmt **ppStmt ) argument
123228 fts3SnippetShift( Fts3Table *pTab, int nSnippet, const char *zDoc, int nDoc, int *piPos, u64 *pHlmask ) argument
123303 Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab; local
123544 fts3MatchinfoCheck( Fts3Table *pTab, char cArg, char **pzErr ) argument
123588 fts3MatchinfoSelectDoctotal( Fts3Table *pTab, sqlite3_stmt **ppStmt, sqlite3_int64 *pnDoc, const char **paLen ) argument
123783 Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab; local
123883 Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab; local
123955 Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab; local
124096 Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab; local
124233 Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab; local
[all...]

Completed in 8382 milliseconds

12