Home
last modified time | relevance | path

Searched refs:pFunc (Results 1 – 8 of 8) sorted by relevance

/illumos-gate/usr/src/lib/libsqlite/src/
H A Dtclsqlite.c288 while( pDb->pFunc ){ in DbDeleteCmd()
289 SqlFunc *pFunc = pDb->pFunc; in DbDeleteCmd() local
290 pDb->pFunc = pFunc->pNext; in DbDeleteCmd()
291 Tcl_Free((char*)pFunc); in DbDeleteCmd()
846 SqlFunc *pFunc; in DbObjCmd() local
856 pFunc = (SqlFunc*)Tcl_Alloc( sizeof(*pFunc) + nScript + 1 ); in DbObjCmd()
857 if( pFunc==0 ) return TCL_ERROR; in DbObjCmd()
858 pFunc->interp = interp; in DbObjCmd()
859 pFunc->pNext = pDb->pFunc; in DbObjCmd()
860 pFunc->zScript = (char*)&pFunc[1]; in DbObjCmd()
[all …]
H A Dmain.c588 FuncDef *pFunc, *pNext; in sqlite_close() local
589 for(pFunc = (FuncDef*)sqliteHashData(i); pFunc; pFunc=pNext){ in sqlite_close()
590 pNext = pFunc->pNext; in sqlite_close()
591 sqliteFree(pFunc); in sqlite_close()
H A Dvdbeaux.c467 assert( p && p->pFunc ); in sqlite_user_data()
468 return p->pFunc->pUserData; in sqlite_user_data()
481 assert( p && p->pFunc && p->pFunc->xStep ); in sqlite_aggregate_context()
502 assert( p && p->pFunc && p->pFunc->xStep ); in sqlite_aggregate_count()
688 ctx.pFunc = pAgg->apFunc[i]; in sqliteVdbeAggReset()
H A DvdbeInt.h154 FuncDef *pFunc; /* Pointer to function information. MUST BE FIRST */ member
H A Dselect.c2297 FuncDef *pFunc; in sqliteSelect() local
2298 if( (pFunc = pParse->aAgg[i].pFunc)!=0 && pFunc->xFinalize!=0 ){ in sqliteSelect()
2299 sqliteVdbeOp3(v, OP_AggInit, 0, i, (char*)pFunc, P3_POINTER); in sqliteSelect()
2366 assert( pAgg->pFunc!=0 ); in sqliteSelect()
2367 assert( pAgg->pFunc->xStep!=0 ); in sqliteSelect()
2368 pDef = pAgg->pFunc; in sqliteSelect()
H A Dvdbe.c1113 ctx.pFunc = (FuncDef*)pOp->p3; in sqliteVdbeExec()
1119 (*ctx.pFunc->xFunc)(&ctx, n, (const char**)azArgv); in sqliteVdbeExec()
4459 ctx.pFunc = (FuncDef*)pOp->p3; in sqliteVdbeExec()
4466 (ctx.pFunc->xStep)(&ctx, n, (const char**)azArgv); in sqliteVdbeExec()
4597 ctx.pFunc = p->agg.apFunc[i]; in sqliteVdbeExec()
H A DsqliteInt.h901 FuncDef *pFunc; /* Information about the aggregate function */ member
H A Dexpr.c1591 pParse->aAgg[i].pFunc = sqliteFindFunction(pParse->db, in sqliteExprAnalyzeAggregates()