| /external/rust/crates/rusqlite/src/ |
| D | context.rs | 15 pub(super) unsafe fn set_result(ctx: *mut sqlite3_context, result: &ToSqlOutput<'_>) { in set_result()
|
| D | functions.rs | 73 unsafe fn report_error(ctx: *mut sqlite3_context, err: &Error) { in report_error() 426 ctx: *mut sqlite3_context, in create_scalar_function() 557 unsafe fn aggregate_context<A>(ctx: *mut sqlite3_context, bytes: usize) -> Option<*mut *mut A> { in aggregate_context() 566 ctx: *mut sqlite3_context, in call_boxed_step() 612 ctx: *mut sqlite3_context, in call_boxed_inverse()
|
| /external/rust/crates/libsqlite3-sys/bindgen-bindings/ |
| D | bindgen_3.7.7.rs | 867 pub struct sqlite3_context([u8; 0]); struct 1074 … *mut sqlite3_context, in sqlite3_create_function() 1081 … *mut sqlite3_context, in sqlite3_create_function() 1100 … *mut sqlite3_context, in sqlite3_create_function16() 1107 … *mut sqlite3_context, in sqlite3_create_function16() 1126 … *mut sqlite3_context, in sqlite3_create_function_v2() 1133 … *mut sqlite3_context, in sqlite3_create_function_v2() 1140 … *mut sqlite3_context)>, in sqlite3_create_function_v2() 1222 pub fn sqlite3_aggregate_context(arg1: *mut sqlite3_context, in sqlite3_aggregate_context() 1235 pub fn sqlite3_get_auxdata(arg1: *mut sqlite3_context, in sqlite3_get_auxdata() [all …]
|
| D | bindgen_3.6.8.rs | 725 pub struct sqlite3_context([u8; 0]); struct 932 … *mut sqlite3_context, in sqlite3_create_function() 939 … *mut sqlite3_context, in sqlite3_create_function() 958 … *mut sqlite3_context, in sqlite3_create_function16() 965 … *mut sqlite3_context, in sqlite3_create_function16() 1051 pub fn sqlite3_aggregate_context(arg1: *mut sqlite3_context, in sqlite3_aggregate_context() 1064 pub fn sqlite3_get_auxdata(arg1: *mut sqlite3_context, in sqlite3_get_auxdata() 1069 pub fn sqlite3_set_auxdata(arg1: *mut sqlite3_context, in sqlite3_set_auxdata() 1080 pub fn sqlite3_result_blob(arg1: *mut sqlite3_context, in sqlite3_result_blob() 1088 pub fn sqlite3_result_double(arg1: *mut sqlite3_context, arg2: f64); in sqlite3_result_double() [all …]
|
| D | bindgen_3.6.23.rs | 753 pub struct sqlite3_context([u8; 0]); struct 960 … *mut sqlite3_context, in sqlite3_create_function() 967 … *mut sqlite3_context, in sqlite3_create_function() 986 … *mut sqlite3_context, in sqlite3_create_function16() 993 … *mut sqlite3_context, in sqlite3_create_function16() 1079 pub fn sqlite3_aggregate_context(arg1: *mut sqlite3_context, in sqlite3_aggregate_context() 1092 pub fn sqlite3_get_auxdata(arg1: *mut sqlite3_context, in sqlite3_get_auxdata() 1097 pub fn sqlite3_set_auxdata(arg1: *mut sqlite3_context, in sqlite3_set_auxdata() 1108 pub fn sqlite3_result_blob(arg1: *mut sqlite3_context, in sqlite3_result_blob() 1116 pub fn sqlite3_result_double(arg1: *mut sqlite3_context, arg2: f64); in sqlite3_result_double() [all …]
|
| D | bindgen_3.7.16.rs | 920 pub struct sqlite3_context([u8; 0]); struct 1127 … *mut sqlite3_context, in sqlite3_create_function() 1134 … *mut sqlite3_context, in sqlite3_create_function() 1153 … *mut sqlite3_context, in sqlite3_create_function16() 1160 … *mut sqlite3_context, in sqlite3_create_function16() 1179 … *mut sqlite3_context, in sqlite3_create_function_v2() 1186 … *mut sqlite3_context, in sqlite3_create_function_v2() 1193 … *mut sqlite3_context)>, in sqlite3_create_function_v2() 1275 pub fn sqlite3_aggregate_context(arg1: *mut sqlite3_context, in sqlite3_aggregate_context() 1288 pub fn sqlite3_get_auxdata(arg1: *mut sqlite3_context, in sqlite3_get_auxdata() [all …]
|
| /external/rust/crates/libsqlite3-sys/sqlite3/ |
| D | bindgen_bundled_version.rs | 1709 pub struct sqlite3_context { struct 1710 _unused: [u8; 0], 1974 arg1: *mut sqlite3_context, in sqlite3_create_function() 1981 arg1: *mut sqlite3_context, in sqlite3_create_function() 1986 xFinal: ::std::option::Option<unsafe extern "C" fn(arg1: *mut sqlite3_context)>, in sqlite3_create_function() 1998 arg1: *mut sqlite3_context, in sqlite3_create_function16() 2005 arg1: *mut sqlite3_context, in sqlite3_create_function16() 2010 xFinal: ::std::option::Option<unsafe extern "C" fn(arg1: *mut sqlite3_context)>, in sqlite3_create_function16() 2022 arg1: *mut sqlite3_context, in sqlite3_create_function_v2() 2029 arg1: *mut sqlite3_context, in sqlite3_create_function_v2() [all …]
|
| D | sqlite3.c | 5306 typedef struct sqlite3_context sqlite3_context; typedef 21038 struct sqlite3_context { struct 21039 Mem *pOut; /* The return value is stored here */ 21040 FuncDef *pFunc; /* Pointer to function information */ 21041 Mem *pMem; /* Memory cell used to store aggregate context */ 21042 Vdbe *pVdbe; /* The VM that owns this context */ 21043 int iOp; /* Instruction number of OP_Function */ 21044 int isError; /* Error code returned by the function. */ 21045 u8 skipFlag; /* Skip accumulator loading if true */ 21046 u8 argc; /* Number of arguments */ [all …]
|
| D | sqlite3.h | 4258 typedef struct sqlite3_context sqlite3_context; typedef
|
| /external/rust/crates/rusqlite/src/vtab/ |
| D | mod.rs | 950 ctx: *mut ffi::sqlite3_context, in rust_column() 1007 unsafe fn result_error<T>(ctx: *mut ffi::sqlite3_context, result: Result<T>) -> c_int { in result_error()
|
| /external/sqlite/dist/orig/ |
| D | sqlite3.c | 5295 typedef struct sqlite3_context sqlite3_context; typedef 20993 struct sqlite3_context { struct 20994 Mem *pOut; /* The return value is stored here */ 20995 FuncDef *pFunc; /* Pointer to function information */ 20996 Mem *pMem; /* Memory cell used to store aggregate context */ 20997 Vdbe *pVdbe; /* The VM that owns this context */ 20998 int iOp; /* Instruction number of OP_Function */ 20999 int isError; /* Error code returned by the function. */ 21000 u8 skipFlag; /* Skip accumulator loading if true */ 21001 u8 argc; /* Number of arguments */ [all …]
|
| D | sqlite3.h | 4256 typedef struct sqlite3_context sqlite3_context; typedef
|
| D | shell.c | 6265 void (**pxFunc)(sqlite3_context*,int,sqlite3_value**), /* OUT: Result */ in zipfileFindFunction()
|
| /external/sqlite/dist/ |
| D | sqlite3.c | 5295 typedef struct sqlite3_context sqlite3_context; typedef 20993 struct sqlite3_context { struct 20994 Mem *pOut; /* The return value is stored here */ 20995 FuncDef *pFunc; /* Pointer to function information */ 20996 Mem *pMem; /* Memory cell used to store aggregate context */ 20997 Vdbe *pVdbe; /* The VM that owns this context */ 20998 int iOp; /* Instruction number of OP_Function */ 20999 int isError; /* Error code returned by the function. */ 21000 u8 skipFlag; /* Skip accumulator loading if true */ 21001 u8 argc; /* Number of arguments */ [all …]
|
| D | sqlite3.h | 4256 typedef struct sqlite3_context sqlite3_context; typedef
|
| D | shell.c | 6270 void (**pxFunc)(sqlite3_context*,int,sqlite3_value**), /* OUT: Result */ in zipfileFindFunction()
|