HomeSort by relevance Sort by last modified time
    Searched defs:pSchema (Results 1 - 13 of 13) sorted by null

  /external/chromium_org/third_party/sqlite/src/src/
status.c 169 Schema *pSchema = db->aDb[i].pSchema;
170 if( ALWAYS(pSchema!=0) ){
174 pSchema->tblHash.count
175 + pSchema->trigHash.count
176 + pSchema->idxHash.count
177 + pSchema->fkeyHash.count
179 nByte += sqlite3MallocSize(pSchema->tblHash.ht);
180 nByte += sqlite3MallocSize(pSchema->trigHash.ht);
181 nByte += sqlite3MallocSize(pSchema->idxHash.ht)
    [all...]
callback.c 412 Schema *pSchema = (Schema *)p;
414 temp1 = pSchema->tblHash;
415 temp2 = pSchema->trigHash;
416 sqlite3HashInit(&pSchema->trigHash);
417 sqlite3HashClear(&pSchema->idxHash);
422 sqlite3HashInit(&pSchema->tblHash);
428 sqlite3HashClear(&pSchema->fkeyHash);
429 pSchema->pSeqTab = 0;
430 if( pSchema->flags & DB_SchemaLoaded ){
431 pSchema->iGeneration++
    [all...]
analyze.c 150 iDb = sqlite3SchemaToIndex(db, pTab->pSchema);
177 assert( iDb==sqlite3SchemaToIndex(db, pIdx->pSchema) );
384 Schema *pSchema = db->aDb[iDb].pSchema; /* Schema of database iDb */
395 for(k=sqliteHashFirst(&pSchema->tblHash); k; k=sqliteHashNext(k)){
413 iDb = sqlite3SchemaToIndex(pParse->db, pTab->pSchema);
612 for(i=sqliteHashFirst(&db->aDb[iDb].pSchema->idxHash);i;i=sqliteHashNext(i)){
resolve.c 143 Schema *pSchema = 0; /* Schema of the expression */
168 iDb = sqlite3SchemaToIndex(db, pTab->pSchema);
187 pSchema = pTab->pSchema;
197 pSchema = pTab->pSchema;
244 pSchema = pTab->pSchema;
390 sqlite3AuthRead(pParse, pExpr, pSchema, pNC->pSrcList);
    [all...]
vtab.c 150 assert( db==0 || sqlite3SchemaMutexHeld(db, 0, p->pSchema) );
281 iDb = sqlite3SchemaToIndex(db, pTable->pSchema);
357 iDb = sqlite3SchemaToIndex(db, pTab->pSchema);
386 Schema *pSchema = pTab->pSchema;
389 assert( sqlite3SchemaMutexHeld(db, 0, pSchema) );
390 pOld = sqlite3HashInsert(&pSchema->tblHash, zName, nName, pTab);
btreeInt.h 382 ** The pSchema field may be set once under BtShared.mutex and
427 void *pSchema; /* Pointer to space allocated by sqlite3BtreeSchema() */
428 void (*xFreeSchema)(void*); /* Destructor for BtShared.pSchema */
build.c 162 db->aDb[iDb].pSchema->iGeneration);
281 p = sqlite3HashFind(&db->aDb[j].pSchema->tblHash, zName, nName);
344 Schema *pSchema = db->aDb[j].pSchema;
345 assert( pSchema );
348 p = sqlite3HashFind(&pSchema->idxHash, zName, nName);
377 pHash = &db->aDb[iDb].pSchema->idxHash;
417 assert( pDb->pSchema!=0 );
418 sqlite3SchemaClear(pDb->pSchema);
426 assert( pDb->pSchema!=0 )
    [all...]
btree.c 127 Schema *pSchema = (Schema *)pBtree->pBt->pSchema;
146 if( isIndex && (!pSchema || (pSchema->flags&DB_SchemaLoaded)==0) ){
156 for(p=sqliteHashFirst(&pSchema->idxHash); p; p=sqliteHashNext(p)){
    [all...]
sqliteInt.h 666 Schema *pSchema; /* Pointer to database schema (possibly shared) */
702 ** Db.pSchema->flags field.
704 #define DbHasProperty(D,I,P) (((D)->aDb[I].pSchema->flags&(P))==(P))
705 #define DbHasAnyProperty(D,I,P) (((D)->aDb[I].pSchema->flags&(P))!=0)
706 #define DbSetProperty(D,I,P) (D)->aDb[I].pSchema->flags|=(P)
707 #define DbClearProperty(D,I,P) (D)->aDb[I].pSchema->flags&=~(P)
710 ** Allowed values for the DB.pSchema->flags field.
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
winspool.h     [all...]
  /external/chromium_org/third_party/sqlite/amalgamation/
sqlite3.c     [all...]
  /external/sqlite/dist/orig/
sqlite3.c     [all...]
  /external/sqlite/dist/
sqlite3.c     [all...]

Completed in 609 milliseconds