Searched refs:zProc (Results 1 – 3 of 3) sorted by relevance
| /freebsd/contrib/sqlite3/ |
| H A D | sqlite3.h | 7571 const char *zProc, /* Entry point. Derived from zFile if 0 */
|
| H A D | shell.c | 33555 const char *zFile, *zProc; in do_meta_command() local 33565 zProc = nArg>=3 ? azArg[2] : 0; in do_meta_command() 33567 rc = sqlite3_load_extension(p->db, zFile, zProc, &zErrMsg); in do_meta_command()
|
| H A D | sqlite3.c | 7892 const char *zProc, /* Entry point. Derived from zFile if 0 */ 135540 const char *zProc; local 135553 zProc = (const char *)sqlite3_value_text(argv[1]); 135555 zProc = 0; 135557 if( zFile && sqlite3_load_extension(db, zFile, zProc, &zErrMsg) ){ 143517 const char *zProc, /* Entry point. Use "sqlite3_extension_init" if 0 */ argument 143559 zEntry = zProc ? zProc : "sqlite3_extension_init"; 143606 if( xInit==0 && zProc==0 ){ 143687 const char *zProc, /* Entry point. Use "sqlite3_extension_init" if 0 */ argument 143692 rc = sqlite3LoadExtension(db, zFile, zProc, pzErrMsg);
|