Searched defs:sqlite3_context (Results 1 – 13 of 13) sorted by relevance
/external/chromium_org/third_party/sqlite/src/src/ |
D | main.c | 1021 void (*xFunc)(sqlite3_context*,int,sqlite3_value **), in sqlite3CreateFunc() 1022 void (*xStep)(sqlite3_context*,int,sqlite3_value **), in sqlite3CreateFunc() 1023 void (*xFinal)(sqlite3_context*), in sqlite3CreateFunc() 1115 void (*xFunc)(sqlite3_context*,int,sqlite3_value **), in sqlite3_create_function() 1116 void (*xStep)(sqlite3_context*,int,sqlite3_value **), in sqlite3_create_function() 1117 void (*xFinal)(sqlite3_context*) in sqlite3_create_function() 1129 void (*xFunc)(sqlite3_context*,int,sqlite3_value **), in sqlite3_create_function_v2() 1130 void (*xStep)(sqlite3_context*,int,sqlite3_value **), in sqlite3_create_function_v2() 1131 void (*xFinal)(sqlite3_context*), in sqlite3_create_function_v2() 1166 void (*xFunc)(sqlite3_context*,int,sqlite3_value**), in sqlite3_create_function16() [all …]
|
D | vdbeInt.h | 244 struct sqlite3_context { struct 245 FuncDef *pFunc; /* Pointer to function information. MUST BE FIRST */ 246 VdbeFunc *pVdbeFunc; /* Auxilary data, if created. */ 247 Mem s; /* The return value is stored here */ 248 Mem *pMem; /* Memory cell used to store aggregate context */ 249 int isError; /* Error code returned by the function. */ 250 CollSeq *pColl; /* Collating sequence */
|
D | test8.c | 1198 void (**pxFunc)(sqlite3_context*,int,sqlite3_value**), in echoFindFunction()
|
D | sqlite.h.in | 2789 typedef struct sqlite3_context sqlite3_context; typedef
|
/external/sqlite/dist/ |
D | sqlite3.c | 3430 typedef struct sqlite3_context sqlite3_context; typedef 14127 struct sqlite3_context { struct 14128 FuncDef *pFunc; /* Pointer to function information. MUST BE FIRST */ 14129 Mem s; /* The return value is stored here */ 14130 Mem *pMem; /* Memory cell used to store aggregate context */ 14131 CollSeq *pColl; /* Collating sequence */ 14132 Vdbe *pVdbe; /* The VM that owns this context */ 14133 int iOp; /* Instruction number of OP_Function */ 14134 int isError; /* Error code returned by the function. */ 14135 u8 skipFlag; /* Skip skip accumulator loading if true */ [all …]
|
D | sqlite3.h | 3315 typedef struct sqlite3_context sqlite3_context; typedef
|
/external/sqlite/dist/orig/ |
D | sqlite3.c | 3430 typedef struct sqlite3_context sqlite3_context; typedef 14127 struct sqlite3_context { struct 14128 FuncDef *pFunc; /* Pointer to function information. MUST BE FIRST */ 14129 Mem s; /* The return value is stored here */ 14130 Mem *pMem; /* Memory cell used to store aggregate context */ 14131 CollSeq *pColl; /* Collating sequence */ 14132 Vdbe *pVdbe; /* The VM that owns this context */ 14133 int iOp; /* Instruction number of OP_Function */ 14134 int isError; /* Error code returned by the function. */ 14135 u8 skipFlag; /* Skip skip accumulator loading if true */ [all …]
|
D | sqlite3.h | 3315 typedef struct sqlite3_context sqlite3_context; typedef
|
/external/chromium_org/third_party/sqlite/amalgamation/ |
D | sqlite3.h | 2794 typedef struct sqlite3_context sqlite3_context; typedef
|
D | sqlite3.c | 3337 typedef struct sqlite3_context sqlite3_context; typedef 12458 struct sqlite3_context { struct 12459 FuncDef *pFunc; /* Pointer to function information. MUST BE FIRST */ 12460 VdbeFunc *pVdbeFunc; /* Auxilary data, if created. */ 12461 Mem s; /* The return value is stored here */ 12462 Mem *pMem; /* Memory cell used to store aggregate context */ 12463 int isError; /* Error code returned by the function. */ 12464 CollSeq *pColl; /* Collating sequence */
|
/external/chromium_org/third_party/sqlite/src/ext/fts3/ |
D | fts3.c | 3483 void (**pxFunc)(sqlite3_context*,int,sqlite3_value**), /* OUT: Result */ in fts3FindFunctionMethod()
|
/external/chromium_org/third_party/sqlite/src/ext/fts1/ |
D | fts1.c | 3273 void (**pxFunc)(sqlite3_context*,int,sqlite3_value**), in fulltextFindFunction()
|
/external/chromium_org/third_party/sqlite/src/ext/fts2/ |
D | fts2.c | 7109 void (**pxFunc)(sqlite3_context*,int,sqlite3_value**), in fulltextFindFunction()
|