Home
last modified time | relevance | path

Searched defs:sqlite3_context (Results 1 – 13 of 13) sorted by relevance

/external/chromium_org/third_party/sqlite/src/src/
Dmain.c1021 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 …]
DvdbeInt.h244 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 */
Dtest8.c1198 void (**pxFunc)(sqlite3_context*,int,sqlite3_value**), in echoFindFunction()
Dsqlite.h.in2789 typedef struct sqlite3_context sqlite3_context; typedef
/external/sqlite/dist/
Dsqlite3.c3430 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 …]
Dsqlite3.h3315 typedef struct sqlite3_context sqlite3_context; typedef
/external/sqlite/dist/orig/
Dsqlite3.c3430 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 …]
Dsqlite3.h3315 typedef struct sqlite3_context sqlite3_context; typedef
/external/chromium_org/third_party/sqlite/amalgamation/
Dsqlite3.h2794 typedef struct sqlite3_context sqlite3_context; typedef
Dsqlite3.c3337 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/
Dfts3.c3483 void (**pxFunc)(sqlite3_context*,int,sqlite3_value**), /* OUT: Result */ in fts3FindFunctionMethod()
/external/chromium_org/third_party/sqlite/src/ext/fts1/
Dfts1.c3273 void (**pxFunc)(sqlite3_context*,int,sqlite3_value**), in fulltextFindFunction()
/external/chromium_org/third_party/sqlite/src/ext/fts2/
Dfts2.c7109 void (**pxFunc)(sqlite3_context*,int,sqlite3_value**), in fulltextFindFunction()