Searched defs:sqlite3_context (Results 1 – 11 of 11) sorted by relevance
| /sqlite-3.40.0/src/ |
| H A D | main.c | 1821 void (*xFinal)(sqlite3_context*), in sqlite3CreateFunc() 1822 void (*xValue)(sqlite3_context*), in sqlite3CreateFunc() 1954 void (*xStep)(sqlite3_context*,int,sqlite3_value**), in createFunctionApi() 1955 void (*xFinal)(sqlite3_context*), in createFunctionApi() 1956 void (*xValue)(sqlite3_context*), in createFunctionApi() 2006 void (*xFinal)(sqlite3_context*) in sqlite3_create_function() 2019 void (*xFinal)(sqlite3_context*), in sqlite3_create_function_v2() 2032 void (*xFinal)(sqlite3_context*), in sqlite3_create_window_function() 2033 void (*xValue)(sqlite3_context*), in sqlite3_create_window_function() 2049 void (*xStep)(sqlite3_context*,int,sqlite3_value**), in sqlite3_create_function16() [all …]
|
| H A D | vdbeInt.h | 370 struct sqlite3_context { struct 371 Mem *pOut; /* The return value is stored here */ 372 FuncDef *pFunc; /* Pointer to function information */ 373 Mem *pMem; /* Memory cell used to store aggregate context */ 374 Vdbe *pVdbe; /* The VM that owns this context */ 375 int iOp; /* Instruction number of OP_Function */ 376 int isError; /* Error code returned by the function. */ 377 u8 enc; /* Encoding to use for results */ 378 u8 skipFlag; /* Skip accumulator loading if true */ 379 u8 argc; /* Number of arguments */ [all …]
|
| H A D | test8.c | 1244 void (**pxFunc)(sqlite3_context*,int,sqlite3_value**), in echoFindFunction()
|
| H A D | sqlite.h.in | 4417 typedef struct sqlite3_context sqlite3_context; typedef
|
| /sqlite-3.40.0/ext/misc/ |
| H A D | vtshim.c | 368 void (**pxFunc)(sqlite3_context*,int,sqlite3_value**), in vtshimFindFunction()
|
| H A D | zipfile.c | 1898 void (**pxFunc)(sqlite3_context*,int,sqlite3_value**), /* OUT: Result */ in zipfileFindFunction()
|
| /sqlite-3.40.0/ext/rtree/ |
| H A D | geopoly.c | 1721 void (**pxFunc)(sqlite3_context*,int,sqlite3_value**), in geopolyFindFunction()
|
| /sqlite-3.40.0/ext/fts5/ |
| H A D | fts5_main.c | 2528 void (**pxFunc)(sqlite3_context*,int,sqlite3_value**), /* OUT: Result */ in fts5FindFunctionMethod()
|
| /sqlite-3.40.0/ext/fts1/ |
| H A D | fts1.c | 3273 void (**pxFunc)(sqlite3_context*,int,sqlite3_value**), in fulltextFindFunction()
|
| /sqlite-3.40.0/ext/fts3/ |
| H A D | fts3.c | 3837 void (**pxFunc)(sqlite3_context*,int,sqlite3_value**), /* OUT: Result */ in fts3FindFunctionMethod()
|
| /sqlite-3.40.0/ext/fts2/ |
| H A D | fts2.c | 6681 void (**pxFunc)(sqlite3_context*,int,sqlite3_value**), in fulltextFindFunction()
|