Home | History | Annotate | Download | only in orig

Lines Matching refs:zProc

5558 ** ^The entry point is zProc.
5559 ** ^(zProc may be 0, in which case SQLite will try to come up with an
5582 const char *zProc, /* Entry point. Derived from zFile if 0 */
97802 const char *zProc;
97807 zProc = (const char *)sqlite3_value_text(argv[1]);
97809 zProc = 0;
97811 if( zFile && sqlite3_load_extension(db, zFile, zProc, &zErrMsg) ){
102765 ** zFile. The entry point is zProc. zProc may be 0 in which case a
102778 const char *zProc, /* Entry point. Use "sqlite3_extension_init" if 0 */
102818 zEntry = zProc ? zProc : "sqlite3_extension_init";
102854 if( xInit==0 && zProc==0 ){
102917 const char *zProc, /* Entry point. Use "sqlite3_extension_init" if 0 */
102922 rc = sqlite3LoadExtension(db, zFile, zProc, pzErrMsg);