Home
last modified time | relevance | path

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

/titanic_50/usr/src/lib/libsqlite/src/
H A Dtclsqlite.c61 SqlFunc *pFunc; /* List of SQL functions */ member
291 while( pDb->pFunc ){ in DbDeleteCmd()
292 SqlFunc *pFunc = pDb->pFunc; in DbDeleteCmd() local
293 pDb->pFunc = pFunc->pNext; in DbDeleteCmd()
294 Tcl_Free((char*)pFunc); in DbDeleteCmd()
849 SqlFunc *pFunc; in DbObjCmd() local
859 pFunc = (SqlFunc*)Tcl_Alloc( sizeof(*pFunc) + nScript + 1 ); in DbObjCmd()
860 if( pFunc==0 ) return TCL_ERROR; in DbObjCmd()
861 pFunc->interp = interp; in DbObjCmd()
862 pFunc->pNext = pDb->pFunc; in DbObjCmd()
[all …]
H A Dmain.c591 FuncDef *pFunc, *pNext; in sqlite_close() local
592 for(pFunc = (FuncDef*)sqliteHashData(i); pFunc; pFunc=pNext){ in sqlite_close()
593 pNext = pFunc->pNext; in sqlite_close()
594 sqliteFree(pFunc); in sqlite_close()
H A Dvdbeaux.c470 assert( p && p->pFunc ); in sqlite_user_data()
471 return p->pFunc->pUserData; in sqlite_user_data()
484 assert( p && p->pFunc && p->pFunc->xStep ); in sqlite_aggregate_context()
505 assert( p && p->pFunc && p->pFunc->xStep ); in sqlite_aggregate_count()
691 ctx.pFunc = pAgg->apFunc[i]; in sqliteVdbeAggReset()
H A DvdbeInt.h157 FuncDef *pFunc; /* Pointer to function information. MUST BE FIRST */ member
H A Dselect.c2301 FuncDef *pFunc; in sqliteSelect() local
2302 if( (pFunc = pParse->aAgg[i].pFunc)!=0 && pFunc->xFinalize!=0 ){ in sqliteSelect()
2303 sqliteVdbeOp3(v, OP_AggInit, 0, i, (char*)pFunc, P3_POINTER); in sqliteSelect()
2370 assert( pAgg->pFunc!=0 ); in sqliteSelect()
2371 assert( pAgg->pFunc->xStep!=0 ); in sqliteSelect()
2372 pDef = pAgg->pFunc; in sqliteSelect()
H A DsqliteInt.h904 FuncDef *pFunc; /* Information about the aggregate function */ member
H A Dvdbe.c1115 ctx.pFunc = (FuncDef*)pOp->p3; in sqliteVdbeExec()
1121 (*ctx.pFunc->xFunc)(&ctx, n, (const char**)azArgv); in sqliteVdbeExec()
4461 ctx.pFunc = (FuncDef*)pOp->p3; in sqliteVdbeExec()
4468 (ctx.pFunc->xStep)(&ctx, n, (const char**)azArgv); in sqliteVdbeExec()
4599 ctx.pFunc = p->agg.apFunc[i]; in sqliteVdbeExec()
H A Dexpr.c1591 pParse->aAgg[i].pFunc = sqliteFindFunction(pParse->db, in sqliteExprAnalyzeAggregates()