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

12

/external/chromium_org/third_party/sqlite/src/src/
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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 Dcallback.c424 Table *pTab = sqliteHashData(pElem); local
425 sqlite3DeleteTable(0, pTab);
/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...]
/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...]
/external/sqlite/dist/orig/
H A Dsqlite3.c11250 Table *pTab; /* Source table */ member in struct:AggInfo::AggInfo_col
11331 ** is a disk table or the "old.*" pseudo-table, then pTab points to the
11390 Table *pTab; /* Table for TK_COLUMN expressions. */ member in struct:Expr
11568 Table *pTab; /* An SQL table corresponding to zName */ member in struct:SrcList::SrcList_item
11584 Bitmask colUsed; /* Bit N (1<<N) set if column N of pTab is used */
11834 Table *pTab; /* Table this info block refers to */ member in struct:AutoincInfo
11835 int iDb; /* Index in sqlite3.aDb[] of database holding pTab */
74684 Table *pTab; local
76997 Table *pTab = 0; /* Table hold the row */ local
78195 sqlite3ResolveSelfReference( Parse *pParse, Table *pTab, int type, Expr *pExpr, ExprList *pList ) argument
79225 Table *pTab; local
79671 Table *pTab; local
79829 Table *pTab; /* Table <table>. */ local
80567 sqlite3ExprCodeGetColumnOfTable( Vdbe *v, Table *pTab, int iTabCur, int iCol, int regOut ) argument
80598 sqlite3ExprCodeGetColumn( Parse *pParse, Table *pTab, int iColumn, int iTable, int iReg, u8 p5 ) argument
81191 Table *pTab = pExpr->pTab; local
82863 whereForeignKeys(Parse *pParse, Table *pTab) argument
82879 whereTempTriggers(Parse *pParse, Table *pTab) argument
82913 reloadTableSchema(Parse *pParse, Table *pTab, const char *zName) argument
82981 Table *pTab; /* Table being renamed */ local
83207 Table *pTab; /* Table being altered */ local
83331 Table *pTab; local
84361 analyzeOneTable( Parse *pParse, Table *pTab, Index *pOnlyIdx, int iStatCur, int iMem, int iTab ) argument
84712 Table *pTab = (Table*)sqliteHashData(k); local
84723 analyzeTable(Parse *pParse, Table *pTab, Index *pOnlyIdx) argument
84759 Table *pTab; local
85020 Table *pTab = sqlite3FindTable(db, zName, zDb); local
85981 Table *pTab = 0; /* The table being read */ local
86863 sqlite3PrimaryKeyIndex(Table *pTab) argument
87345 Table *pTab = pParse->pNewTable; local
87413 Table *pTab = pParse->pNewTable; local
87675 estimateTableWidth(Table *pTab) argument
87731 convertToWithoutRowidTable(Parse *pParse, Table *pTab) argument
88247 Table *pTab = sqliteHashData(i); local
88287 Table *pTab = sqliteHashData(pElem); local
88336 destroyTable(Parse *pParse, Table *pTab) argument
88417 sqlite3CodeDropTable(Parse *pParse, Table *pTab, int iDb, int isView) argument
88489 Table *pTab; local
88725 Table *pTab; local
88745 Table *pTab = pIndex->pTable; /* The table that is indexed */ local
88887 Table *pTab = 0; /* Table to be indexed */ local
89431 Table *pTab = pIndex->pTable; local
90066 Table *pTab = pIdx->pTable; local
90131 reindexTable(Parse *pParse, Table *pTab, char const *zColl) argument
90155 Table *pTab; /* A table in the database */ local
90186 Table *pTab; /* A table in the database */ local
90797 Table *pTab = sqliteHashData(pElem); local
90865 Table *pTab; local
90884 sqlite3IsReadOnly(Parse *pParse, Table *pTab, int viewOk) argument
91055 Table *pTab; /* The table from which records will be deleted */ local
91419 sqlite3GenerateRowDelete( Parse *pParse, Table *pTab, Trigger *pTrigger, int iDataCur, int iIdxCur, int iPk, i16 nPk, u8 count, u8 onconf, u8 bNoSeek ) argument
91548 sqlite3GenerateRowIndexDelete( Parse *pParse, Table *pTab, int iDataCur, int iIdxCur, int *aRegIdx ) argument
91622 Table *pTab = pIdx->pTable; local
93738 fkLookupParent( Parse *pParse, int iDb, Table *pTab, Index *pIdx, FKey *pFKey, int *aiCol, int regData, int nIncr, int isIgnore ) argument
93878 exprTableRegister( Parse *pParse, Table *pTab, int regBase, i16 iCol ) argument
93910 exprTableColumn( sqlite3 *db, Table *pTab, int iCursor, i16 iCol ) argument
93953 fkScanChildren( Parse *pParse, SrcList *pSrc, Table *pTab, Index *pIdx, FKey *pFKey, int *aiCol, int regData, int nIncr ) argument
94081 sqlite3FkReferences(Table *pTab) argument
94122 sqlite3FkDropTable(Parse *pParse, SrcList *pName, Table *pTab) argument
94183 fkChildIsModified( Table *pTab, FKey *p, int *aChange, int bChngRowid ) argument
94210 fkParentIsModified( Table *pTab, FKey *p, int *aChange, int bChngRowid ) argument
94254 sqlite3FkCheck( Parse *pParse, Table *pTab, int regOld, int regNew, int *aChange, int bChngRowid ) argument
94469 sqlite3FkRequired( Parse *pParse, Table *pTab, int *aChange, int chngRowid ) argument
94529 fkActionTrigger( Parse *pParse, Table *pTab, FKey *pFKey, ExprList *pChanges ) argument
94715 sqlite3FkActions( Parse *pParse, Table *pTab, ExprList *pChanges, int regOld, int *aChange, int bChngRowid ) argument
94747 sqlite3FkDelete(sqlite3 *db, Table *pTab) argument
94811 sqlite3OpenTable( Parse *pParse, int iCur, int iDb, Table *pTab, int opcode ) argument
94868 Table *pTab = pIdx->pTable; local
94905 sqlite3TableAffinity(Vdbe *v, Table *pTab, int iReg) argument
94940 readsTable(Parse *p, int iDb, Table *pTab) argument
95229 Table *pTab; /* The table to insert into. aka TABLE */ local
95910 sqlite3GenerateConstraintChecks( Parse *pParse, Table *pTab, int *aRegIdx, int iDataCur, int iIdxCur, int regNewData, int regOldData, u8 pkChng, u8 overrideError, int ignoreDest, int *pbMayReplace ) argument
96320 sqlite3CompleteInsertion( Parse *pParse, Table *pTab, int iDataCur, int iIdxCur, int regNewData, int *aRegIdx, int isUpdate, int appendBias, int useSeekResult ) argument
96401 sqlite3OpenTableAndIndices( Parse *pParse, Table *pTab, int op, int iBase, u8 *aToOpen, int *piDataCur, int *piIdxCur ) argument
99629 Table *pTab; local
99687 Table *pTab = sqliteHashData(i); local
99709 Table *pTab; local
99734 Table *pTab; local
99794 Table *pTab; local
99842 Table *pTab; /* Child table contain "REFERENCES" keyword */ local
100056 Table *pTab = sqliteHashData(x); local
100088 Table *pTab = sqliteHashData(x); local
100702 Table *pTab; local
101674 columnIndex(Table *pTab, const char *zCol) argument
102736 Table *pTab = 0; /* Table structure column is extracted from */ local
102926 Table *pTab; local
103008 Table *pTab; /* Table associated with this expression */ local
103076 selectAddColumnTypeAndCollation( Parse *pParse, Table *pTab, Select *pSelect ) argument
103116 Table *pTab; local
105058 Table *pTab; local
105090 Table *pTab = pFrom->pTab; local
105253 Table *pTab; local
105421 Table *pTab; local
105551 Table *pTab = pFrom->pTab; local
105730 Table *pTab = pFrom->pTab; local
105940 explainSimpleCount( Parse *pParse, Table *pTab, Index *pIdx ) argument
106591 Table *pTab; local
107105 sqlite3TriggerList(Parse *pParse, Table *pTab) argument
107151 Table *pTab; /* Table that the trigger fires off of */ local
107389 Table *pTab; local
107666 Table *pTab = tableOfTrigger(pTrigger); local
107700 sqlite3TriggersExist( Parse *pParse, Table *pTab, int op, ExprList *pChanges, int *pMask ) argument
107871 codeRowTrigger( Parse *pParse, Trigger *pTrigger, Table *pTab, int orconf ) argument
107985 getRowTrigger( Parse *pParse, Trigger *pTrigger, Table *pTab, int orconf ) argument
108019 sqlite3CodeRowTriggerDirect( Parse *pParse, Trigger *p, Table *pTab, int reg, int orconf, int ignoreJump ) argument
108091 sqlite3CodeRowTrigger( Parse *pParse, Trigger *pTrigger, int op, ExprList *pChanges, int tr_tm, Table *pTab, int reg, int orconf, int ignoreJump ) argument
108153 sqlite3TriggerColmask( Parse *pParse, Trigger *pTrigger, ExprList *pChanges, int isNew, int tr_tm, Table *pTab, int orconf ) argument
108245 sqlite3ColumnDefault(Vdbe *v, Table *pTab, int i, int iReg) argument
108281 Table *pTab; /* The table to be updated */ local
108884 updateVirtualTable( Parse *pParse, SrcList *pSrc, Table *pTab, ExprList *pChanges, Expr *pRowid, int *aXRef, Expr *pWhere, int onError ) argument
109356 Table *pTab; /* The Table object to which the virtual table belongs */ member in struct:VtabCtx
109448 sqlite3GetVTable(sqlite3 *db, Table *pTab) argument
109693 Table *pTab = pParse->pNewTable; /* The table being constructed */ local
109800 vtabCallConstructor( sqlite3 *db, Table *pTab, Module *pMod, int (*xConstruct)(sqlite3*,void*,int,const char*const*,sqlite3_vtab**,char**), char **pzErr ) argument
109913 sqlite3VtabCallConnect(Parse *pParse, Table *pTab) argument
109985 Table *pTab; local
110028 Table *pTab; local
110090 Table *pTab; local
110297 Table *pTab; local
110357 sqlite3VtabMakeWritable(Parse *pParse, Table *pTab) argument
112332 Table *pTab; local
112744 vtabBestIndex(Parse *pParse, Table *pTab, sqlite3_index_info *p) argument
113640 explainIndexRange(sqlite3 *db, WhereLoop *pLoop, Table *pTab) argument
114322 Table *pTab = pTabItem->pTab; local
114672 Table *pTab = pItem->pTab; local
115512 Table *pTab; /* Table being queried */ local
115693 Table *pTab; local
116697 Table *pTab; local
117147 Table *pTab; /* Table to open */ local
117349 Table *pTab = pTabItem->pTab; local
122960 Table *pTab = (Table *)sqliteHashData(p); local
124130 Table *pTab; /* A table in the database */ local
125075 Table *pTab = 0; local
130749 fts3EvalPhraseMergeToken( Fts3Table *pTab, Fts3Phrase *p, int iToken, char *pList, int nList ) argument
130813 Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab; local
130958 Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab; local
131107 fts3EvalDlPhraseNext( Fts3Table *pTab, Fts3Doclist *pDL, u8 *pbEof ) argument
131170 incrPhraseTokenNext( Fts3Table *pTab, Fts3Phrase *pPhrase, int iToken, TokenDoclist *p, u8 *pbEof ) argument
131229 Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab; local
131329 Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab; local
131533 Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab; local
131657 Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab; local
132297 Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab; local
132406 Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab; local
132456 Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab; local
136409 Fts3tokTable *pTab; local
136466 Fts3tokTable *pTab = (Fts3tokTable *)pVtab; local
136525 Fts3tokTable *pTab = (Fts3tokTable *)(pCsr->base.pVtab); local
136555 Fts3tokTable *pTab = (Fts3tokTable *)(pCursor->pVtab); local
136584 Fts3tokTable *pTab = (Fts3tokTable *)(pCursor->pVtab); local
137126 fts3SelectDocsize( Fts3Table *pTab, sqlite3_int64 iDocid, sqlite3_stmt **ppStmt ) argument
137151 sqlite3Fts3SelectDoctotal( Fts3Table *pTab, sqlite3_stmt **ppStmt ) argument
137172 sqlite3Fts3SelectDocsize( Fts3Table *pTab, sqlite3_int64 iDocid, sqlite3_stmt **ppStmt ) argument
138106 fts3SegReaderFirstDocid(Fts3Table *pTab, Fts3SegReader *pReader) argument
138138 fts3SegReaderNextDocid( Fts3Table *pTab, Fts3SegReader *pReader, char **ppOffsetList, int *pnOffsetList ) argument
142898 fts3SnippetShift( Fts3Table *pTab, int iLangid, int nSnippet, const char *zDoc, int nDoc, int *piPos, u64 *pHlmask ) argument
142973 Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab; local
143167 fts3MatchinfoCheck( Fts3Table *pTab, char cArg, char **pzErr ) argument
143211 fts3MatchinfoSelectDoctotal( Fts3Table *pTab, sqlite3_stmt **ppStmt, sqlite3_int64 *pnDoc, const char **paLen ) argument
143392 Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab; local
143492 Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab; local
143564 Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab; local
143707 Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab; local
143846 Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab; local
[all...]
/external/sqlite/dist/
H A Dsqlite3.c11250 Table *pTab; /* Source table */ member in struct:AggInfo::AggInfo_col
11331 ** is a disk table or the "old.*" pseudo-table, then pTab points to the
11390 Table *pTab; /* Table for TK_COLUMN expressions. */ member in struct:Expr
11568 Table *pTab; /* An SQL table corresponding to zName */ member in struct:SrcList::SrcList_item
11584 Bitmask colUsed; /* Bit N (1<<N) set if column N of pTab is used */
11834 Table *pTab; /* Table this info block refers to */ member in struct:AutoincInfo
11835 int iDb; /* Index in sqlite3.aDb[] of database holding pTab */
74704 Table *pTab; local
77017 Table *pTab = 0; /* Table hold the row */ local
78215 sqlite3ResolveSelfReference( Parse *pParse, Table *pTab, int type, Expr *pExpr, ExprList *pList ) argument
79245 Table *pTab; local
79691 Table *pTab; local
79849 Table *pTab; /* Table <table>. */ local
80587 sqlite3ExprCodeGetColumnOfTable( Vdbe *v, Table *pTab, int iTabCur, int iCol, int regOut ) argument
80618 sqlite3ExprCodeGetColumn( Parse *pParse, Table *pTab, int iColumn, int iTable, int iReg, u8 p5 ) argument
81211 Table *pTab = pExpr->pTab; local
82883 whereForeignKeys(Parse *pParse, Table *pTab) argument
82899 whereTempTriggers(Parse *pParse, Table *pTab) argument
82933 reloadTableSchema(Parse *pParse, Table *pTab, const char *zName) argument
83001 Table *pTab; /* Table being renamed */ local
83227 Table *pTab; /* Table being altered */ local
83351 Table *pTab; local
84381 analyzeOneTable( Parse *pParse, Table *pTab, Index *pOnlyIdx, int iStatCur, int iMem, int iTab ) argument
84732 Table *pTab = (Table*)sqliteHashData(k); local
84743 analyzeTable(Parse *pParse, Table *pTab, Index *pOnlyIdx) argument
84779 Table *pTab; local
85040 Table *pTab = sqlite3FindTable(db, zName, zDb); local
86001 Table *pTab = 0; /* The table being read */ local
86883 sqlite3PrimaryKeyIndex(Table *pTab) argument
87365 Table *pTab = pParse->pNewTable; local
87433 Table *pTab = pParse->pNewTable; local
87695 estimateTableWidth(Table *pTab) argument
87751 convertToWithoutRowidTable(Parse *pParse, Table *pTab) argument
88267 Table *pTab = sqliteHashData(i); local
88307 Table *pTab = sqliteHashData(pElem); local
88356 destroyTable(Parse *pParse, Table *pTab) argument
88437 sqlite3CodeDropTable(Parse *pParse, Table *pTab, int iDb, int isView) argument
88509 Table *pTab; local
88745 Table *pTab; local
88765 Table *pTab = pIndex->pTable; /* The table that is indexed */ local
88907 Table *pTab = 0; /* Table to be indexed */ local
89451 Table *pTab = pIndex->pTable; local
90086 Table *pTab = pIdx->pTable; local
90151 reindexTable(Parse *pParse, Table *pTab, char const *zColl) argument
90175 Table *pTab; /* A table in the database */ local
90206 Table *pTab; /* A table in the database */ local
90817 Table *pTab = sqliteHashData(pElem); local
90885 Table *pTab; local
90904 sqlite3IsReadOnly(Parse *pParse, Table *pTab, int viewOk) argument
91075 Table *pTab; /* The table from which records will be deleted */ local
91439 sqlite3GenerateRowDelete( Parse *pParse, Table *pTab, Trigger *pTrigger, int iDataCur, int iIdxCur, int iPk, i16 nPk, u8 count, u8 onconf, u8 bNoSeek ) argument
91568 sqlite3GenerateRowIndexDelete( Parse *pParse, Table *pTab, int iDataCur, int iIdxCur, int *aRegIdx ) argument
91642 Table *pTab = pIdx->pTable; local
93758 fkLookupParent( Parse *pParse, int iDb, Table *pTab, Index *pIdx, FKey *pFKey, int *aiCol, int regData, int nIncr, int isIgnore ) argument
93898 exprTableRegister( Parse *pParse, Table *pTab, int regBase, i16 iCol ) argument
93930 exprTableColumn( sqlite3 *db, Table *pTab, int iCursor, i16 iCol ) argument
93973 fkScanChildren( Parse *pParse, SrcList *pSrc, Table *pTab, Index *pIdx, FKey *pFKey, int *aiCol, int regData, int nIncr ) argument
94101 sqlite3FkReferences(Table *pTab) argument
94142 sqlite3FkDropTable(Parse *pParse, SrcList *pName, Table *pTab) argument
94203 fkChildIsModified( Table *pTab, FKey *p, int *aChange, int bChngRowid ) argument
94230 fkParentIsModified( Table *pTab, FKey *p, int *aChange, int bChngRowid ) argument
94274 sqlite3FkCheck( Parse *pParse, Table *pTab, int regOld, int regNew, int *aChange, int bChngRowid ) argument
94489 sqlite3FkRequired( Parse *pParse, Table *pTab, int *aChange, int chngRowid ) argument
94549 fkActionTrigger( Parse *pParse, Table *pTab, FKey *pFKey, ExprList *pChanges ) argument
94735 sqlite3FkActions( Parse *pParse, Table *pTab, ExprList *pChanges, int regOld, int *aChange, int bChngRowid ) argument
94767 sqlite3FkDelete(sqlite3 *db, Table *pTab) argument
94831 sqlite3OpenTable( Parse *pParse, int iCur, int iDb, Table *pTab, int opcode ) argument
94888 Table *pTab = pIdx->pTable; local
94925 sqlite3TableAffinity(Vdbe *v, Table *pTab, int iReg) argument
94960 readsTable(Parse *p, int iDb, Table *pTab) argument
95249 Table *pTab; /* The table to insert into. aka TABLE */ local
95930 sqlite3GenerateConstraintChecks( Parse *pParse, Table *pTab, int *aRegIdx, int iDataCur, int iIdxCur, int regNewData, int regOldData, u8 pkChng, u8 overrideError, int ignoreDest, int *pbMayReplace ) argument
96340 sqlite3CompleteInsertion( Parse *pParse, Table *pTab, int iDataCur, int iIdxCur, int regNewData, int *aRegIdx, int isUpdate, int appendBias, int useSeekResult ) argument
96421 sqlite3OpenTableAndIndices( Parse *pParse, Table *pTab, int op, int iBase, u8 *aToOpen, int *piDataCur, int *piIdxCur ) argument
99649 Table *pTab; local
99707 Table *pTab = sqliteHashData(i); local
99729 Table *pTab; local
99754 Table *pTab; local
99814 Table *pTab; local
99862 Table *pTab; /* Child table contain "REFERENCES" keyword */ local
100076 Table *pTab = sqliteHashData(x); local
100108 Table *pTab = sqliteHashData(x); local
100722 Table *pTab; local
101694 columnIndex(Table *pTab, const char *zCol) argument
102756 Table *pTab = 0; /* Table structure column is extracted from */ local
102946 Table *pTab; local
103028 Table *pTab; /* Table associated with this expression */ local
103096 selectAddColumnTypeAndCollation( Parse *pParse, Table *pTab, Select *pSelect ) argument
103136 Table *pTab; local
105078 Table *pTab; local
105110 Table *pTab = pFrom->pTab; local
105273 Table *pTab; local
105441 Table *pTab; local
105571 Table *pTab = pFrom->pTab; local
105750 Table *pTab = pFrom->pTab; local
105960 explainSimpleCount( Parse *pParse, Table *pTab, Index *pIdx ) argument
106611 Table *pTab; local
107125 sqlite3TriggerList(Parse *pParse, Table *pTab) argument
107171 Table *pTab; /* Table that the trigger fires off of */ local
107409 Table *pTab; local
107686 Table *pTab = tableOfTrigger(pTrigger); local
107720 sqlite3TriggersExist( Parse *pParse, Table *pTab, int op, ExprList *pChanges, int *pMask ) argument
107891 codeRowTrigger( Parse *pParse, Trigger *pTrigger, Table *pTab, int orconf ) argument
108005 getRowTrigger( Parse *pParse, Trigger *pTrigger, Table *pTab, int orconf ) argument
108039 sqlite3CodeRowTriggerDirect( Parse *pParse, Trigger *p, Table *pTab, int reg, int orconf, int ignoreJump ) argument
108111 sqlite3CodeRowTrigger( Parse *pParse, Trigger *pTrigger, int op, ExprList *pChanges, int tr_tm, Table *pTab, int reg, int orconf, int ignoreJump ) argument
108173 sqlite3TriggerColmask( Parse *pParse, Trigger *pTrigger, ExprList *pChanges, int isNew, int tr_tm, Table *pTab, int orconf ) argument
108265 sqlite3ColumnDefault(Vdbe *v, Table *pTab, int i, int iReg) argument
108301 Table *pTab; /* The table to be updated */ local
108904 updateVirtualTable( Parse *pParse, SrcList *pSrc, Table *pTab, ExprList *pChanges, Expr *pRowid, int *aXRef, Expr *pWhere, int onError ) argument
109376 Table *pTab; /* The Table object to which the virtual table belongs */ member in struct:VtabCtx
109468 sqlite3GetVTable(sqlite3 *db, Table *pTab) argument
109713 Table *pTab = pParse->pNewTable; /* The table being constructed */ local
109820 vtabCallConstructor( sqlite3 *db, Table *pTab, Module *pMod, int (*xConstruct)(sqlite3*,void*,int,const char*const*,sqlite3_vtab**,char**), char **pzErr ) argument
109933 sqlite3VtabCallConnect(Parse *pParse, Table *pTab) argument
110005 Table *pTab; local
110048 Table *pTab; local
110110 Table *pTab; local
110317 Table *pTab; local
110377 sqlite3VtabMakeWritable(Parse *pParse, Table *pTab) argument
112352 Table *pTab; local
112764 vtabBestIndex(Parse *pParse, Table *pTab, sqlite3_index_info *p) argument
113660 explainIndexRange(sqlite3 *db, WhereLoop *pLoop, Table *pTab) argument
114342 Table *pTab = pTabItem->pTab; local
114692 Table *pTab = pItem->pTab; local
115532 Table *pTab; /* Table being queried */ local
115713 Table *pTab; local
116717 Table *pTab; local
117167 Table *pTab; /* Table to open */ local
117369 Table *pTab = pTabItem->pTab; local
122980 Table *pTab = (Table *)sqliteHashData(p); local
124150 Table *pTab; /* A table in the database */ local
125095 Table *pTab = 0; local
130781 fts3EvalPhraseMergeToken( Fts3Table *pTab, Fts3Phrase *p, int iToken, char *pList, int nList ) argument
130845 Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab; local
130990 Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab; local
131139 fts3EvalDlPhraseNext( Fts3Table *pTab, Fts3Doclist *pDL, u8 *pbEof ) argument
131202 incrPhraseTokenNext( Fts3Table *pTab, Fts3Phrase *pPhrase, int iToken, TokenDoclist *p, u8 *pbEof ) argument
131261 Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab; local
131361 Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab; local
131565 Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab; local
131689 Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab; local
132329 Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab; local
132438 Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab; local
132488 Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab; local
136441 Fts3tokTable *pTab; local
136498 Fts3tokTable *pTab = (Fts3tokTable *)pVtab; local
136557 Fts3tokTable *pTab = (Fts3tokTable *)(pCsr->base.pVtab); local
136587 Fts3tokTable *pTab = (Fts3tokTable *)(pCursor->pVtab); local
136616 Fts3tokTable *pTab = (Fts3tokTable *)(pCursor->pVtab); local
137158 fts3SelectDocsize( Fts3Table *pTab, sqlite3_int64 iDocid, sqlite3_stmt **ppStmt ) argument
137183 sqlite3Fts3SelectDoctotal( Fts3Table *pTab, sqlite3_stmt **ppStmt ) argument
137204 sqlite3Fts3SelectDocsize( Fts3Table *pTab, sqlite3_int64 iDocid, sqlite3_stmt **ppStmt ) argument
138138 fts3SegReaderFirstDocid(Fts3Table *pTab, Fts3SegReader *pReader) argument
138170 fts3SegReaderNextDocid( Fts3Table *pTab, Fts3SegReader *pReader, char **ppOffsetList, int *pnOffsetList ) argument
142930 fts3SnippetShift( Fts3Table *pTab, int iLangid, int nSnippet, const char *zDoc, int nDoc, int *piPos, u64 *pHlmask ) argument
143005 Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab; local
143199 fts3MatchinfoCheck( Fts3Table *pTab, char cArg, char **pzErr ) argument
143243 fts3MatchinfoSelectDoctotal( Fts3Table *pTab, sqlite3_stmt **ppStmt, sqlite3_int64 *pnDoc, const char **paLen ) argument
143424 Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab; local
143524 Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab; local
143596 Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab; local
143739 Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab; local
143878 Fts3Table *pTab = (Fts3Table *)pCsr->base.pVtab; local
[all...]
/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);

Completed in 1868 milliseconds

12