Searched refs:zProc (Results 1 – 5 of 5) sorted by relevance
| /sqlite-3.40.0/src/ |
| H A D | loadext.c | 539 const char *zProc, /* Entry point. Use "sqlite3_extension_init" if 0 */ in sqlite3LoadExtension() argument 581 zEntry = zProc ? zProc : "sqlite3_extension_init"; in sqlite3LoadExtension() 612 if( xInit==0 && zProc==0 ){ in sqlite3LoadExtension() 690 const char *zProc, /* Entry point. Use "sqlite3_extension_init" if 0 */ in sqlite3_load_extension() argument 695 rc = sqlite3LoadExtension(db, zFile, zProc, pzErrMsg); in sqlite3_load_extension()
|
| H A D | func.c | 1513 const char *zProc; in loadExt() local 1526 zProc = (const char *)sqlite3_value_text(argv[1]); in loadExt() 1528 zProc = 0; in loadExt() 1530 if( zFile && sqlite3_load_extension(db, zFile, zProc, &zErrMsg) ){ in loadExt()
|
| H A D | test1.c | 1932 char *zProc = 0; in test_load_extension() local 1942 zProc = Tcl_GetString(objv[3]); in test_load_extension() 1960 (void)zProc; in test_load_extension() 1963 rc = sqlite3_load_extension(db, zFile, zProc, &zErr); in test_load_extension()
|
| H A D | shell.c.in | 8864 const char *zFile, *zProc; local 8873 zProc = nArg>=3 ? azArg[2] : 0; 8875 rc = sqlite3_load_extension(p->db, zFile, zProc, &zErrMsg);
|
| H A D | sqlite.h.in | 6877 ** ^The entry point is zProc. 6878 ** ^(zProc may be 0, in which case SQLite will try to come up with an 6910 const char *zProc, /* Entry point. Derived from zFile if 0 */
|