Home
last modified time | relevance | path

Searched refs:zProc (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/sqlite3/
H A Dsqlite3.h7573 const char *zProc, /* Entry point. Derived from zFile if 0 */
H A Dshell.c33618 const char *zFile, *zProc; in do_meta_command() local
33628 zProc = nArg>=3 ? azArg[2] : 0; in do_meta_command()
33630 rc = sqlite3_load_extension(p->db, zFile, zProc, &zErrMsg); in do_meta_command()
H A Dsqlite3.c7894 const char *zProc, /* Entry point. Derived from zFile if 0 */
135757 const char *zProc; local
135770 zProc = (const char *)sqlite3_value_text(argv[1]);
135772 zProc = 0;
135774 if( zFile && sqlite3_load_extension(db, zFile, zProc, &zErrMsg) ){
143738 const char *zProc, /* Entry point. Use "sqlite3_extension_init" if 0 */ argument
143780 zEntry = zProc ? zProc : "sqlite3_extension_init";
143827 if( xInit==0 && zProc==0 ){
143908 const char *zProc, /* Entry point. Use "sqlite3_extension_init" if 0 */ argument
143913 rc = sqlite3LoadExtension(db, zFile, zProc, pzErrMsg);