Lines Matching refs:zFile

5192   const char *zFile,    /* Name of the shared library containing extension */
14452 const char *zFile, in sqlite3OsOpenMalloc() argument
14461 rc = sqlite3OsOpen(pVfs, zFile, pFile, flags, pOutFlags); in sqlite3OsOpenMalloc()
24766 static int posixOpen(const char *zFile, int flags, int mode){
24767 return open(zFile, flags, mode);
59403 char const *zFile = sqlite3BtreeGetJournalname(pBt);
59404 if( zFile==0 ){
59407 assert( zFile[0]!=0 );
59411 rc = sqlite3OsWrite(pMaster, zFile, sqlite3Strlen30(zFile)+1, offset);
59412 offset += sqlite3Strlen30(zFile)+1;
76602 const char *zFile;
76612 zFile = (const char *)sqlite3_value_text(argv[0]);
76614 if( zFile==0 ) zFile = "";
76662 rc = sqlite3ParseUri(db->pVfs->zName, zFile, &flags, &pVfs, &zPath, &zErr);
76756 zErrDyn = sqlite3MPrintf(db, "unable to open database: %s", zFile);
83408 const char *zFile = (const char *)sqlite3_value_text(argv[0]);
83418 if( zFile && sqlite3_load_extension(db, zFile, zProc, &zErrMsg) ){
87821 const char *zFile, /* Name of the shared library containing extension */
87851 handle = sqlite3OsDlOpen(pVfs, zFile);
87857 "unable to open shared library [%s]", zFile);
87870 "no entry point [%s] in shared library [%s]", zProc,zFile);
87901 const char *zFile, /* Name of the shared library containing extension */
87907 rc = sqlite3LoadExtension(db, zFile, zProc, pzErrMsg);
109750 char *zFile;
109770 zFile = sqlite3_malloc(nByte);
109771 if( !zFile ) return SQLITE_NOMEM;
109825 if( zFile[iOut-1]==0 ){
109831 zFile[iOut++] = '\0';
109840 zFile[iOut++] = c;
109842 if( eState==1 ) zFile[iOut++] = '\0';
109843 zFile[iOut++] = '\0';
109844 zFile[iOut++] = '\0';
109850 zOpt = &zFile[sqlite3Strlen30(zFile)+1];
109922 zFile = sqlite3_malloc(nUri+2);
109923 if( !zFile ) return SQLITE_NOMEM;
109924 memcpy(zFile, zUri, nUri);
109925 zFile[nUri] = '\0';
109926 zFile[nUri+1] = '\0';
109936 sqlite3_free(zFile);
109937 zFile = 0;
109940 *pzFile = zFile;