Home | History | Annotate | Download | only in dist

Lines Matching full:zfile

4564 ** SQLite extension library contained in the file zFile.
4585 const char *zFile, /* Name of the shared library containing extension */
4586 const char *zProc, /* Entry point. Derived from zFile if 0 */
12220 const char *zFile,
12229 rc = sqlite3OsOpen(pVfs, zFile, pFile, flags, pOutFlags);
49174 char const *zFile = sqlite3BtreeGetJournalname(pBt);
49175 if( zFile==0 || zFile[0]==0 ){
49181 rc = sqlite3OsWrite(pMaster, zFile, sqlite3Strlen30(zFile)+1, offset);
49182 offset += sqlite3Strlen30(zFile)+1;
52495 static int fileExists(sqlite3 *db, const char *zFile){
52500 ** test for the presence of zFile. This is because any IO error that
52506 rc = sqlite3OsAccess(db->pVfs, zFile, SQLITE_ACCESS_EXISTS, &res);
65765 const char *zFile;
65771 zFile = (const char *)sqlite3_value_text(argv[0]);
65773 if( zFile==0 ) zFile = "";
65820 rc = sqlite3BtreeFactory(db, zFile, 0, SQLITE_DEFAULT_CACHE_SIZE,
65903 zErrDyn = sqlite3MPrintf(db, "unable to open database: %s", zFile);
72396 const char *zFile = (const char *)sqlite3_value_text(argv[0]);
72406 if( zFile && sqlite3_load_extension(db, zFile, zProc, &zErrMsg) ){
76673 ** zFile. The entry point is zProc. zProc may be 0 in which case a
76685 const char *zFile, /* Name of the shared library containing extension */
76715 handle = sqlite3OsDlOpen(pVfs, zFile);
76721 "unable to open shared library [%s]", zFile);
76736 "no entry point [%s] in shared library [%s]", zProc,zFile);
76769 const char *zFile, /* Name of the shared library containing extension */
76775 rc = sqlite3LoadExtension(db, zFile, zProc, pzErrMsg);