Home
last modified time | relevance | path

Searched refs:pRet (Results 1 – 3 of 3) sorted by relevance

/freebsd-13.1/contrib/sqlite3/
H A Dsqlite3.c102661 if( pRet && pRet->pPrior ){
142551 if( pRet ) pRet->iColumn = iCol+1;
179430 if( pRet ) memset(pRet, 0, nByte);
188824 pRet->aMatchinfo[0] = (u8*)(&pRet->aMatchinfo[1]) - (u8*)pRet;
209912 for(pRet=pSession->pTable; pRet; pRet=pRet->pNext){
209926 pRet = pRet->pNext;
218864 pRet->abUnindexed = pRet->azCol ? (u8*)&pRet->azCol[nArg] : 0;
221300 pRet->aiCol[pRet->nCol++] = i;
223597 aOut = pRet->p = (u8*)&pRet[1];
223635 if( pRet->nn<4 || pRet->szLeaf>pRet->nn ){
[all …]
H A Dshell.c9420 void *pRet; in idxMalloc() local
9423 pRet = sqlite3_malloc(nByte); in idxMalloc()
9424 if( pRet ){ in idxMalloc()
9425 memset(pRet, 0, nByte); in idxMalloc()
9429 return pRet; in idxMalloc()
17976 void *pRet = 0; in shellMalloc() local
17979 if( pRet==0 ){ in shellMalloc()
17982 memset(pRet, 0, nByte); in shellMalloc()
17985 return pRet; in shellMalloc()
18192 RecoverTable *pRet = 0; in recoverFindTable() local
[all …]
/freebsd-13.1/contrib/sqlite3/tea/generic/
H A Dtclsqlite3.c2805 Tcl_Obj *pRet = Tcl_NewObj(); in DbObjCmd() local
2806 Tcl_IncrRefCount(pRet); in DbObjCmd()
2813 Tcl_ListObjAppendElement(interp, pRet, dbEvalColumnValue(&sEval, i)); in DbObjCmd()
2818 Tcl_SetObjResult(interp, pRet); in DbObjCmd()
2821 Tcl_DecrRefCount(pRet); in DbObjCmd()
3558 Tcl_Obj *pRet; in DbObjCmd()
3563 pRet = Tcl_NewIntObj(sqlite3_preupdate_depth(pDb->db)); in DbObjCmd()
3564 Tcl_SetObjResult(interp, pRet); in DbObjCmd()