Home | History | Annotate | Download | only in orig

Lines Matching defs:zProc

5381 ** ^The entry point is zProc.
5382 ** ^zProc may be 0, in which case the name of the entry point
5401 const char *zProc, /* Entry point. Derived from zFile if 0 */
87334 const char *zProc;
87339 zProc = (const char *)sqlite3_value_text(argv[1]);
87341 zProc = 0;
87343 if( zFile && sqlite3_load_extension(db, zFile, zProc, &zErrMsg) ){
91788 ** zFile. The entry point is zProc. zProc may be 0 in which case a
91801 const char *zProc, /* Entry point. Use "sqlite3_extension_init" if 0 */
91826 if( zProc==0 ){
91827 zProc = "sqlite3_extension_init";
91843 sqlite3OsDlSym(pVfs, handle, zProc);
91846 nMsg += sqlite3Strlen30(zProc);
91850 "no entry point [%s] in shared library [%s]", zProc,zFile);
91882 const char *zProc, /* Entry point. Use "sqlite3_extension_init" if 0 */
91887 rc = sqlite3LoadExtension(db, zFile, zProc, pzErrMsg);