Home
last modified time | relevance | path

Searched refs:pSchema (Results 1 – 6 of 6) sorted by relevance

/external/parameter-framework/upstream/xmlserializer/
DXmlDocSource.cpp187 xmlSchemaPtr pSchema = xmlSchemaParse(pParserCtxt); in isInstanceDocumentValid() local
189 if (!pSchema) { in isInstanceDocumentValid()
196 xmlSchemaValidCtxtPtr pValidationCtxt = xmlSchemaNewValidCtxt(pSchema); in isInstanceDocumentValid()
201 xmlSchemaFree(pSchema); in isInstanceDocumentValid()
210 xmlSchemaFree(pSchema); in isInstanceDocumentValid()
/external/sqlite/dist/
DAndroid.patch109 if( pDb->pSchema->file_format>SQLITE_MAX_FILE_FORMAT ){
Dsqlite3.c15049 Schema *pSchema; /* Pointer to database schema (possibly shared) */ member
15087 #define DbHasProperty(D,I,P) (((D)->aDb[I].pSchema->schemaFlags&(P))==(P))
15088 #define DbHasAnyProperty(D,I,P) (((D)->aDb[I].pSchema->schemaFlags&(P))!=0)
15089 #define DbSetProperty(D,I,P) (D)->aDb[I].pSchema->schemaFlags|=(P)
15090 #define DbClearProperty(D,I,P) (D)->aDb[I].pSchema->schemaFlags&=~(P)
15343 #define SCHEMA_ENC(db) ((db)->aDb[0].pSchema->enc)
15793 Schema *pSchema; /* Schema that contains this table */ member
16043 Schema *pSchema; /* Schema containing this index */ member
16461 Schema *pSchema; /* Schema to which this item is fixed */ member
17028 Schema *pSchema; /* Schema containing the trigger */ member
[all …]
Dshell.c7245 sqlite3_stmt *pSchema = 0; in idxCreateVtabSchema() local
7252 rc = idxPrepareStmt(p->db, &pSchema, pzErrmsg, in idxCreateVtabSchema()
7261 while( rc==SQLITE_OK && SQLITE_ROW==sqlite3_step(pSchema) ){ in idxCreateVtabSchema()
7262 const char *zType = (const char*)sqlite3_column_text(pSchema, 0); in idxCreateVtabSchema()
7263 const char *zName = (const char*)sqlite3_column_text(pSchema, 1); in idxCreateVtabSchema()
7264 const char *zSql = (const char*)sqlite3_column_text(pSchema, 2); in idxCreateVtabSchema()
7299 idxFinalize(&rc, pSchema); in idxCreateVtabSchema()
/external/sqlite/dist/orig/
Dsqlite3.c15049 Schema *pSchema; /* Pointer to database schema (possibly shared) */ member
15087 #define DbHasProperty(D,I,P) (((D)->aDb[I].pSchema->schemaFlags&(P))==(P))
15088 #define DbHasAnyProperty(D,I,P) (((D)->aDb[I].pSchema->schemaFlags&(P))!=0)
15089 #define DbSetProperty(D,I,P) (D)->aDb[I].pSchema->schemaFlags|=(P)
15090 #define DbClearProperty(D,I,P) (D)->aDb[I].pSchema->schemaFlags&=~(P)
15343 #define SCHEMA_ENC(db) ((db)->aDb[0].pSchema->enc)
15793 Schema *pSchema; /* Schema that contains this table */ member
16043 Schema *pSchema; /* Schema containing this index */ member
16461 Schema *pSchema; /* Schema to which this item is fixed */ member
17028 Schema *pSchema; /* Schema containing the trigger */ member
[all …]
Dshell.c7239 sqlite3_stmt *pSchema = 0; in idxCreateVtabSchema() local
7246 rc = idxPrepareStmt(p->db, &pSchema, pzErrmsg, in idxCreateVtabSchema()
7255 while( rc==SQLITE_OK && SQLITE_ROW==sqlite3_step(pSchema) ){ in idxCreateVtabSchema()
7256 const char *zType = (const char*)sqlite3_column_text(pSchema, 0); in idxCreateVtabSchema()
7257 const char *zName = (const char*)sqlite3_column_text(pSchema, 1); in idxCreateVtabSchema()
7258 const char *zSql = (const char*)sqlite3_column_text(pSchema, 2); in idxCreateVtabSchema()
7293 idxFinalize(&rc, pSchema); in idxCreateVtabSchema()