Searched refs:tabFlags (Results 1 - 12 of 12) sorted by relevance

/external/chromium_org/third_party/sqlite/src/src/
H A Dvtab.c284 pTable->tabFlags |= TF_Virtual;
543 if( (pTab->tabFlags & TF_Virtual)==0 || sqlite3GetVTable(db, pTab) ){
606 assert( pTab && (pTab->tabFlags & TF_Virtual)!=0 && !pTab->pVTable );
651 assert( (pTab->tabFlags & TF_Virtual)!=0 );
665 && (pParse->pNewTable->tabFlags & TF_Virtual)==0
877 if( (pTab->tabFlags & TF_Virtual)==0 ) return pDef;
H A Dinsert.c197 if( pTab->tabFlags & TF_Autoincrement ){
1636 if( pDest->tabFlags & TF_Virtual ){
1697 if( pSrc->tabFlags & TF_Virtual ){
1788 assert( (pDest->tabFlags & TF_Autoincrement)==0 );
H A Ddelete.c65 || ( (pTab->tabFlags & TF_Readonly)!=0
H A Dprepare.c205 pTab->tabFlags |= TF_Readonly;
H A Dbuild.c1148 if( pTab->tabFlags & TF_HasPrimaryKey ){
1153 pTab->tabFlags |= TF_HasPrimaryKey;
1178 pTab->tabFlags |= autoInc*TF_Autoincrement;
1611 if( p->tabFlags & TF_Autoincrement ){
2106 if( pTab->tabFlags & TF_Autoincrement ){
H A DsqliteInt.h1278 u8 tabFlags; /* Mask of TF_* values */ member in struct:Table
1299 ** Allowed values for Tabe.tabFlags.
1316 # define IsVirtual(X) (((X)->tabFlags & TF_Virtual)!=0)
H A Dmain.c2348 autoinc = pTab->iPKey==iCol && (pTab->tabFlags & TF_Autoincrement)!=0;
H A Dselect.c3209 pTab->tabFlags |= TF_Ephemeral;
3441 if( ALWAYS(pTab!=0) && (pTab->tabFlags & TF_Ephemeral)!=0 ){
H A Dwhere.c4737 if( (pTab->tabFlags & TF_Ephemeral)!=0 || pTab->pSelect ){
4926 if( (pTab->tabFlags & TF_Ephemeral)==0
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c9623 u8 tabFlags; /* Mask of TF_* values */ member in struct:Table
9644 ** Allowed values for Tabe.tabFlags.
9661 # define IsVirtual(X) (((X)->tabFlags & TF_Virtual)!=0)
[all...]
/external/sqlite/dist/orig/
H A Dsqlite3.c10957 u8 tabFlags; /* Mask of TF_* values */ member in struct:Table
10973 ** Allowed values for Table.tabFlags.
10989 # define IsVirtual(X) (((X)->tabFlags & TF_Virtual)!=0)
10997 #define HasRowid(X) (((X)->tabFlags & TF_WithoutRowid)==0)
[all...]
/external/sqlite/dist/
H A Dsqlite3.c10957 u8 tabFlags; /* Mask of TF_* values */ member in struct:Table
10973 ** Allowed values for Table.tabFlags.
10989 # define IsVirtual(X) (((X)->tabFlags & TF_Virtual)!=0)
10997 #define HasRowid(X) (((X)->tabFlags & TF_WithoutRowid)==0)
[all...]

Completed in 723 milliseconds