Home
last modified time | relevance | path

Searched refs:ppVm (Results 1 – 4 of 4) sorted by relevance

/titanic_44/usr/src/lib/smbsrv/libsmb/common/
H A Dsmb_sqlite.h70 sqlite_vm **ppVm, char **pzErrmsg) in sqlite_compile() argument
/titanic_44/usr/src/lib/libsqlite/src/
H A Dmain.c698 sqlite_vm **ppVm, /* OUT: The virtual machine */ in sqlite_compile() argument
770 assert( ppVm ); in sqlite_compile()
771 *ppVm = (sqlite_vm*)sParse.pVdbe; in sqlite_compile()
H A Dtest1.c49 static int getVmPointer(Tcl_Interp *interp, const char *zArg, sqlite_vm **ppVm){ in getVmPointer() argument
50 if( sscanf(zArg, PTR_FMT, (void**)ppVm)!=1 ){ in getVmPointer()
H A Dsqlite.h.in628 ** *ppVm is left pointing to a "virtual machine" that can be used to execute
629 ** the compiled statement. Or if there is an error, *ppVm may be set to NULL.
631 ** a comment) then *ppVm is set to NULL.
646 sqlite_vm **ppVm, /* OUT: the virtual machine to execute zSql */
722 ** Additionally, if ppVm is not NULL, *ppVm is left pointing to a new virtual
726 ** If sqlite_reset() returns SQLITE_SCHEMA, then *ppVm is set to NULL.