Lines Matching refs:zProc
4931 ** ^The entry point is zProc.
4932 ** ^zProc may be 0, in which case the name of the entry point
4951 const char *zProc, /* Entry point. Derived from zFile if 0 */
80828 const char *zProc;
80833 zProc = (const char *)sqlite3_value_text(argv[1]);
80835 zProc = 0;
80837 if( zFile && sqlite3_load_extension(db, zFile, zProc, &zErrMsg) ){
85203 ** zFile. The entry point is zProc. zProc may be 0 in which case a
85216 const char *zProc, /* Entry point. Use "sqlite3_extension_init" if 0 */
85241 if( zProc==0 ){
85242 zProc = "sqlite3_extension_init";
85258 sqlite3OsDlSym(pVfs, handle, zProc);
85264 "no entry point [%s] in shared library [%s]", zProc,zFile);
85296 const char *zProc, /* Entry point. Use "sqlite3_extension_init" if 0 */
85301 rc = sqlite3LoadExtension(db, zFile, zProc, pzErrMsg);