Home | History | Annotate | Download | only in dist

Lines Matching defs:sContext

65402       sqlite3_context sContext;
70798 sqlite3_context sContext;
70813 memset(&u.cn.sContext, 0, sizeof(u.cn.sContext));
70816 ** the current contents to u.cn.sContext.s so in case the user-function
70820 sqlite3VdbeMemMove(&u.cn.sContext.s, u.cn.pDest);
70821 MemSetTypeFlag(&u.cn.sContext.s, MEM_Null);
70823 rc = u.cn.pModule->xColumn(pCur->pVtabCursor, &u.cn.sContext, pOp->p2);
70825 if( u.cn.sContext.isError ){
70826 rc = u.cn.sContext.isError;
70831 ** dynamic allocation in u.cn.sContext.s (a Mem struct) is released.
70833 sqlite3VdbeChangeEncoding(&u.cn.sContext.s, encoding);
70834 sqlite3VdbeMemMove(u.cn.pDest, &u.cn.sContext.s);
85718 AuthContext sContext; /* Authorization context */
85729 memset(&sContext, 0, sizeof(sContext));
85789 sqlite3AuthContextPush(pParse, &sContext, pTab->zName);
85928 sqlite3AuthContextPop(&sContext);
100563 AuthContext sContext; /* The authorization context */
100584 memset(&sContext, 0, sizeof(sContext));
100744 sqlite3AuthContextPush(pParse, &sContext, pTab->zName);
101012 sqlite3AuthContextPop(&sContext);