Lines Matching refs:zFile
4382 SQLITE_API int sqlite3_uri_boolean(const char *zFile, const char *zParam, int bDefault);
7011 const char *zFile, /* Name of the shared library containing extension */
21096 const char *zFile, in sqlite3OsOpenMalloc() argument
21105 rc = sqlite3OsOpen(pVfs, zFile, pFile, flags, pOutFlags); in sqlite3OsOpenMalloc()
31096 static int posixOpen(const char *zFile, int flags, int mode){
31097 return open(zFile, flags, mode);
35327 const char *zFile = pShmNode->zFilename;
35328 rc = unixLogError(SQLITE_IOERR_SHMSIZE, "write", zFile);
36400 const char *zFile, /* File name */
36407 if( 0==osStat(zFile, &sStat) ){
75362 char const *zFile = sqlite3BtreeGetJournalname(pBt);
75363 if( zFile==0 ){
75366 assert( zFile[0]!=0 );
75367 rc = sqlite3OsWrite(pMaster, zFile, sqlite3Strlen30(zFile)+1, offset);
75368 offset += sqlite3Strlen30(zFile)+1;
100837 const char *zFile;
100848 zFile = (const char *)sqlite3_value_text(argv[0]);
100850 if( zFile==0 ) zFile = "";
100894 rc = sqlite3ParseUri(db->pVfs->zName, zFile, &flags, &pVfs, &zPath, &zErr);
101004 zErrDyn = sqlite3MPrintf(db, "unable to open database: %s", zFile);
108946 const char *zFile = (const char *)sqlite3_value_text(argv[0]);
108964 if( zFile && sqlite3_load_extension(db, zFile, zProc, &zErrMsg) ){
114288 const char *zFile, /* Name of the shared library containing extension */
114299 u64 nMsg = 300 + sqlite3Strlen30(zFile);
114333 handle = sqlite3OsDlOpen(pVfs, zFile);
114336 char *zAltFile = sqlite3_mprintf("%s.%s", zFile, azEndings[ii]);
114349 "unable to open shared library [%s]", zFile);
114370 int ncFile = sqlite3Strlen30(zFile);
114377 for(iFile=ncFile-1; iFile>=0 && zFile[iFile]!='/'; iFile--){}
114379 if( sqlite3_strnicmp(zFile+iFile, "lib", 3)==0 ) iFile += 3;
114380 for(iEntry=8; (c = zFile[iFile])!=0 && c!='.'; iFile++){
114395 "no entry point [%s] in shared library [%s]", zEntry, zFile);
114431 const char *zFile, /* Name of the shared library containing extension */
114437 rc = sqlite3LoadExtension(db, zFile, zProc, pzErrMsg);
145937 char *zFile;
145958 zFile = sqlite3_malloc64(nByte);
145959 if( !zFile ) return SQLITE_NOMEM_BKPT;
146032 if( zFile[iOut-1]==0 ){
146038 zFile[iOut++] = '\0';
146047 zFile[iOut++] = c;
146049 if( eState==1 ) zFile[iOut++] = '\0';
146050 zFile[iOut++] = '\0';
146051 zFile[iOut++] = '\0';
146057 zOpt = &zFile[sqlite3Strlen30(zFile)+1];
146131 zFile = sqlite3_malloc64(nUri+2);
146132 if( !zFile ) return SQLITE_NOMEM_BKPT;
146134 memcpy(zFile, zUri, nUri);
146136 zFile[nUri] = '\0';
146137 zFile[nUri+1] = '\0';
146148 sqlite3_free(zFile);
146149 zFile = 0;
146152 *pzFile = zFile;
175090 const char *zFile = sqlite3_db_filename(p->dbRbu, "main");
175091 p->zState = rbuMPrintf(p, "file://%s-vacuum?modeof=%s", zFile, zFile);