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

  /external/chromium_org/third_party/sqlite/src/src/
vdbeblob.c 156 Parse *pParse = 0;
166 pParse = sqlite3StackAllocRaw(db, sizeof(*pParse));
167 if( !pParse ) goto blob_open_out;
170 memset(pParse, 0, sizeof(Parse));
171 pParse->db = db;
176 pTab = sqlite3LocateTable(pParse, 0, zTable, zDb);
179 sqlite3ErrorMsg(pParse, "cannot open virtual table: %s", zTable);
184 sqlite3ErrorMsg(pParse, "cannot open view: %s", zTable);
188 if( pParse->zErrMsg )
    [all...]
backup.c 92 Parse *pParse;
94 pParse = sqlite3StackAllocZero(pErrorDb, sizeof(*pParse));
95 if( pParse==0 ){
99 pParse->db = pDb;
100 if( sqlite3OpenTempDatabase(pParse) ){
101 sqlite3Error(pErrorDb, pParse->rc, "%s", pParse->zErrMsg);
104 sqlite3DbFree(pErrorDb, pParse->zErrMsg);
105 sqlite3StackFree(pErrorDb, pParse);
    [all...]
prepare.c 424 int sqlite3ReadSchema(Parse *pParse){
426 sqlite3 *db = pParse->db;
429 rc = sqlite3Init(db, &pParse->zErrMsg);
432 pParse->rc = rc;
433 pParse->nErr++;
441 ** of date set pParse->rc to SQLITE_SCHEMA. If all schema cookies
442 ** make no changes to pParse->rc.
444 static void schemaIsValid(Parse *pParse){
445 sqlite3 *db = pParse->db;
450 assert( pParse->checkSchema )
    [all...]
resolve.c 49 Parse *pParse, /* Parsing context */
63 db = pParse->db;
66 pDup = sqlite3PExpr(pParse, TK_AS, pDup, 0, 0);
69 pEList->a[iCol].iAlias = (u16)(++pParse->nAlias);
126 ** in pParse and return WRC_Abort. Return WRC_Prune on success.
129 Parse *pParse, /* The parsing context */
139 sqlite3 *db = pParse->db; /* The database connection */
230 if( zDb==0 && zTab!=0 && cnt==0 && pParse->pTriggerTab!=0 ){
231 int op = pParse->eTriggerOp;
236 pTab = pParse->pTriggerTab
    [all...]
vtab.c 266 Parse *pParse, /* Parsing context */
275 sqlite3StartTable(pParse, pName1, pName2, 0, 0, 1, 0);
276 pTable = pParse->pNewTable;
280 db = pParse->db;
289 pParse->sNameToken.n = (int)(&pModuleName->z[pModuleName->n] - pName1->z);
298 sqlite3AuthCheck(pParse, SQLITE_CREATE_VTABLE, pTable->zName,
299 pTable->azModuleArg[0], pParse->db->aDb[iDb].zName);
306 ** in pParse->zArg[] and appends it to the list of arguments on the
307 ** virtual table currently under construction in pParse->pTable.
309 static void addArgumentToVtab(Parse *pParse){
    [all...]
expr.c 77 Expr *sqlite3ExprSetCollByToken(Parse *pParse, Expr *pExpr, Token *pCollName){
80 sqlite3 *db = pParse->db;
82 pColl = sqlite3LocateCollSeq(pParse, zColl);
92 CollSeq *sqlite3ExprCollSeq(Parse *pParse, Expr *pExpr){
108 sqlite3 *db = pParse->db;
120 if( sqlite3CheckCollSeq(pParse, pColl) ){
216 Parse *pParse,
229 pColl = sqlite3ExprCollSeq(pParse, pLeft);
231 pColl = sqlite3ExprCollSeq(pParse, pRight);
241 Parse *pParse, /* The parsing (and code generating) context *
    [all...]
select.c 51 Parse *pParse, /* Parsing context */
64 sqlite3 *db = pParse->db;
72 pEList = sqlite3ExprListAppend(pParse, 0, sqlite3Expr(db,TK_ALL,0));
121 ** a join type, but put an error in the pParse structure.
123 int sqlite3JoinType(Parse *pParse, Token *pA, Token *pB, Token *pC){
168 sqlite3ErrorMsg(pParse, "unknown or unsupported join type: "
173 sqlite3ErrorMsg(pParse,
237 Parse *pParse, /* Parsing context */
246 sqlite3 *db = pParse->db;
259 pEq = sqlite3PExpr(pParse, TK_EQ, pE1, pE2, 0)
    [all...]
where.c 132 Parse *pParse; /* The parser context */
262 Parse *pParse, /* The parsing context */
265 pWC->pParse = pParse;
299 sqlite3 *db = pWC->pParse->db;
340 sqlite3 *db = pWC->pParse->db;
516 static void exprCommute(Parse *pParse, Expr *pExpr){
520 pExpr->pRight->pColl = sqlite3ExprCollSeq(pParse, pExpr->pRight);
521 pExpr->pLeft->pColl = sqlite3ExprCollSeq(pParse, pExpr->pLeft);
589 Parse *pParse = pWC->pParse
    [all...]
sqliteInt.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 210 milliseconds