Searched defs:sqlite3_context (Results 1 – 5 of 5) sorted by relevance
5295 typedef struct sqlite3_context sqlite3_context; typedef20981 struct sqlite3_context { struct20982 Mem *pOut; /* The return value is stored here */20983 FuncDef *pFunc; /* Pointer to function information */20984 Mem *pMem; /* Memory cell used to store aggregate context */20985 Vdbe *pVdbe; /* The VM that owns this context */20986 int iOp; /* Instruction number of OP_Function */20987 int isError; /* Error code returned by the function. */20988 u8 skipFlag; /* Skip accumulator loading if true */20989 u8 argc; /* Number of arguments */[all …]
4256 typedef struct sqlite3_context sqlite3_context; typedef
6265 void (**pxFunc)(sqlite3_context*,int,sqlite3_value**), /* OUT: Result */ in zipfileFindFunction()
2978 typedef struct sqlite3_context sqlite3_context; typedef
3531 typedef struct sqlite3_context sqlite3_context; typedef12793 struct sqlite3_context { struct12794 FuncDef *pFunc; /* Pointer to function information. MUST BE FIRST */12795 VdbeFunc *pVdbeFunc; /* Auxilary data, if created. */12796 Mem s; /* The return value is stored here */12797 Mem *pMem; /* Memory cell used to store aggregate context */12798 int isError; /* Error code returned by the function. */12799 CollSeq *pColl; /* Collating sequence */