Home
last modified time | relevance | path

Searched refs:pDel (Results 1 – 13 of 13) sorted by relevance

/sqlite-3.40.0/src/
H A Dcallback.c119 CollSeq *pDel = 0; in findCollSeqEntry() local
127 pDel = sqlite3HashInsert(&db->aCollSeq, pColl[0].zName, pColl); in findCollSeqEntry()
133 assert( pDel==0 || pDel==pColl ); in findCollSeqEntry()
134 if( pDel!=0 ){ in findCollSeqEntry()
136 sqlite3DbFree(db, pDel); in findCollSeqEntry()
H A Dvtab.c47 Module *pDel; in sqlite3VtabCreateModule() local
68 pDel = (Module *)sqlite3HashInsert(&db->aModule,zCopy,(void*)pMod); in sqlite3VtabCreateModule()
69 if( pDel ){ in sqlite3VtabCreateModule()
70 if( pDel==pMod ){ in sqlite3VtabCreateModule()
72 sqlite3DbFree(db, pDel); in sqlite3VtabCreateModule()
75 sqlite3VtabEponymousTableClear(db, pDel); in sqlite3VtabCreateModule()
76 sqlite3VtabModuleUnref(db, pDel); in sqlite3VtabCreateModule()
H A Dexpr.c4788 Expr *pDel = 0; in sqlite3ExprCodeTarget() local
4800 sqlite3ExprDelete(db, pDel); in sqlite3ExprCodeTarget()
4804 exprToRegister(pDel, exprCodeVector(pParse, pDel, &regFree1)); in sqlite3ExprCodeTarget()
4808 opCompare.pLeft = pDel; in sqlite3ExprCodeTarget()
4836 sqlite3ExprDelete(db, pDel); in sqlite3ExprCodeTarget()
5131 Expr *pDel = 0; in exprCodeBetween() local
5145 compLeft.pLeft = pDel; in exprCodeBetween()
5148 compRight.pLeft = pDel; in exprCodeBetween()
5150 exprToRegister(pDel, exprCodeVector(pParse, pDel, &regFree1)); in exprCodeBetween()
5159 pDel->flags |= EP_OuterON; in exprCodeBetween()
[all …]
H A Dtest1.c1718 Tcl_Obj *pDel; member
1724 int rc = Tcl_EvalObjEx(p->interp, p->pDel, TCL_EVAL_DIRECT|TCL_EVAL_GLOBAL); in testCreateCollationDel()
1730 Tcl_DecrRefCount(p->pDel); in testCreateCollationDel()
1775 p->pDel = objv[4]; in test_create_collation_v2()
1778 Tcl_IncrRefCount(p->pDel); in test_create_collation_v2()
H A Dvdbeaux.c2692 VdbeFrame *pDel = p->pDelFrame; in closeAllCursors() local
2693 p->pDelFrame = pDel->pParent; in closeAllCursors()
2694 sqlite3VdbeFrameDelete(pDel); in closeAllCursors()
/sqlite-3.40.0/ext/fts5/
H A Dfts5_storage.c532 sqlite3_stmt *pDel = 0; in sqlite3Fts5StorageDelete() local
544 rc = fts5StorageGetStmt(p, FTS5_STMT_DELETE_DOCSIZE, &pDel, 0); in sqlite3Fts5StorageDelete()
546 sqlite3_bind_int64(pDel, 1, iDel); in sqlite3Fts5StorageDelete()
547 sqlite3_step(pDel); in sqlite3Fts5StorageDelete()
548 rc = sqlite3_reset(pDel); in sqlite3Fts5StorageDelete()
555 rc = fts5StorageGetStmt(p, FTS5_STMT_DELETE_CONTENT, &pDel, 0); in sqlite3Fts5StorageDelete()
558 sqlite3_bind_int64(pDel, 1, iDel); in sqlite3Fts5StorageDelete()
559 sqlite3_step(pDel); in sqlite3Fts5StorageDelete()
560 rc = sqlite3_reset(pDel); in sqlite3Fts5StorageDelete()
H A Dfts5_buffer.c401 Fts5TermsetEntry *pDel = pEntry; in sqlite3Fts5TermsetFree() local
403 sqlite3_free(pDel); in sqlite3Fts5TermsetFree()
H A Dfts5_config.c300 char *pDel = sqlite3Fts5MallocZero(&rc, nArg * 2); in fts5ConfigParseSpecial() local
301 char *pSpace = pDel; in fts5ConfigParseSpecial()
336 sqlite3_free(pDel); in fts5ConfigParseSpecial()
/sqlite-3.40.0/ext/fts3/
H A Dfts3_expr.c902 Fts3Expr *pDel; in fts3ExprBalance() local
906 while( (pDel=pFree)!=0 ){ in fts3ExprBalance()
907 pFree = pDel->pParent; in fts3ExprBalance()
908 sqlite3_free(pDel); in fts3ExprBalance()
1082 void sqlite3Fts3ExprFree(Fts3Expr *pDel){ in sqlite3Fts3ExprFree() argument
1084 assert( pDel==0 || pDel->pParent==0 ); in sqlite3Fts3ExprFree()
1085 for(p=pDel; p && (p->pLeft||p->pRight); p=(p->pLeft ? p->pLeft : p->pRight)){ in sqlite3Fts3ExprFree()
H A Dfts3_write.c4712 sqlite3_stmt *pDel = 0; in fts3TruncateSegment() local
4713 rc = fts3SqlStmt(p, SQL_DELETE_SEGMENTS_RANGE, &pDel, 0); in fts3TruncateSegment()
4715 sqlite3_bind_int64(pDel, 1, iOldStart); in fts3TruncateSegment()
4716 sqlite3_bind_int64(pDel, 2, iNewStart-1); in fts3TruncateSegment()
4717 sqlite3_step(pDel); in fts3TruncateSegment()
4718 rc = sqlite3_reset(pDel); in fts3TruncateSegment()
/sqlite-3.40.0/ext/lsm1/
H A Dlsm_file.c1776 Segment *pDel in lsmFsSortedDelete() argument
1778 if( pDel->iFirst ){ in lsmFsSortedDelete()
1784 iBlk = fsPageToBlock(pFS, pDel->iFirst); in lsmFsSortedDelete()
1785 iLastBlk = fsPageToBlock(pFS, pDel->iLastPg); in lsmFsSortedDelete()
1791 rc = fsBlockNext(pFS, pDel, iBlk, &iNext); in lsmFsSortedDelete()
1792 }else if( bZero==0 && pDel->iLastPg!=fsLastPageOnBlock(pFS, iLastBlk) ){ in lsmFsSortedDelete()
1795 rc = fsFreeBlock(pFS, pSnapshot, pDel, iBlk); in lsmFsSortedDelete()
1799 if( pDel->pRedirect ){ in lsmFsSortedDelete()
1800 assert( pDel->pRedirect==&pSnapshot->redirect ); in lsmFsSortedDelete()
1804 if( bZero ) memset(pDel, 0, sizeof(Segment)); in lsmFsSortedDelete()
H A Dlsm_sorted.c4327 Level *pDel = 0; /* Delete this entire level */ in sortedNewToplevel() local
4360 pDel = pNext; in sortedNewToplevel()
4421 }else if( pDel ){ in sortedNewToplevel()
4422 assert( pNew->pNext==pDel ); in sortedNewToplevel()
4423 pNew->pNext = pDel->pNext; in sortedNewToplevel()
4424 lsmFsSortedDelete(pDb->pFS, pDb->pWorker, 1, &pDel->lhs); in sortedNewToplevel()
4425 sortedFreeLevel(pDb->pEnv, pDel); in sortedNewToplevel()
H A Dlsm_tree.c1823 void *pDel; int nDel; /* Key to (possibly) delete this iteration */ in lsmTreeDelete() local
1838 lsmTreeCursorKey(&csr, 0, &pDel, &nDel); in lsmTreeDelete()
1839 if( treeKeycmp(pDel, nDel, pKey2, nKey2)<0 ) bDone = 0; in lsmTreeDelete()