Home | History | Annotate | Download | only in dist

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 */
87370 const char *zProc;
87375 zProc = (const char *)sqlite3_value_text(argv[1]);
87377 zProc = 0;
87379 if( zFile && sqlite3_load_extension(db, zFile, zProc, &zErrMsg) ){
91824 ** zFile. The entry point is zProc. zProc may be 0 in which case a
91837 const char *zProc, /* Entry point. Use "sqlite3_extension_init" if 0 */
91862 if( zProc==0 ){
91863 zProc = "sqlite3_extension_init";
91879 sqlite3OsDlSym(pVfs, handle, zProc);
91882 nMsg += sqlite3Strlen30(zProc);
91886 "no entry point [%s] in shared library [%s]", zProc,zFile);
91918 const char *zProc, /* Entry point. Use "sqlite3_extension_init" if 0 */
91923 rc = sqlite3LoadExtension(db, zFile, zProc, pzErrMsg);