Home | History | Annotate | Download | only in dist

Lines Matching refs:zProc

4924 ** ^The entry point is zProc.
4925 ** ^zProc may be 0, in which case the name of the entry point
4944 const char *zProc, /* Entry point. Derived from zFile if 0 */
80821 const char *zProc;
80826 zProc = (const char *)sqlite3_value_text(argv[1]);
80828 zProc = 0;
80830 if( zFile && sqlite3_load_extension(db, zFile, zProc, &zErrMsg) ){
85196 ** zFile. The entry point is zProc. zProc may be 0 in which case a
85209 const char *zProc, /* Entry point. Use "sqlite3_extension_init" if 0 */
85234 if( zProc==0 ){
85235 zProc = "sqlite3_extension_init";
85251 sqlite3OsDlSym(pVfs, handle, zProc);
85257 "no entry point [%s] in shared library [%s]", zProc,zFile);
85289 const char *zProc, /* Entry point. Use "sqlite3_extension_init" if 0 */
85294 rc = sqlite3LoadExtension(db, zFile, zProc, pzErrMsg);