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()
31100 static int posixOpen(const char *zFile, int flags, int mode){
31101 return open(zFile, flags, mode);
35343 const char *zFile = pShmNode->zFilename;
35344 rc = unixLogError(SQLITE_IOERR_SHMSIZE, "write", zFile);
36416 const char *zFile, /* File name */
36423 if( 0==osStat(zFile, &sStat) ){
75378 char const *zFile = sqlite3BtreeGetJournalname(pBt);
75379 if( zFile==0 ){
75382 assert( zFile[0]!=0 );
75383 rc = sqlite3OsWrite(pMaster, zFile, sqlite3Strlen30(zFile)+1, offset);
75384 offset += sqlite3Strlen30(zFile)+1;
100853 const char *zFile;
100864 zFile = (const char *)sqlite3_value_text(argv[0]);
100866 if( zFile==0 ) zFile = "";
100910 rc = sqlite3ParseUri(db->pVfs->zName, zFile, &flags, &pVfs, &zPath, &zErr);
101020 zErrDyn = sqlite3MPrintf(db, "unable to open database: %s", zFile);
108962 const char *zFile = (const char *)sqlite3_value_text(argv[0]);
108980 if( zFile && sqlite3_load_extension(db, zFile, zProc, &zErrMsg) ){
114304 const char *zFile, /* Name of the shared library containing extension */
114315 u64 nMsg = 300 + sqlite3Strlen30(zFile);
114349 handle = sqlite3OsDlOpen(pVfs, zFile);
114352 char *zAltFile = sqlite3_mprintf("%s.%s", zFile, azEndings[ii]);
114365 "unable to open shared library [%s]", zFile);
114386 int ncFile = sqlite3Strlen30(zFile);
114393 for(iFile=ncFile-1; iFile>=0 && zFile[iFile]!='/'; iFile--){}
114395 if( sqlite3_strnicmp(zFile+iFile, "lib", 3)==0 ) iFile += 3;
114396 for(iEntry=8; (c = zFile[iFile])!=0 && c!='.'; iFile++){
114411 "no entry point [%s] in shared library [%s]", zEntry, zFile);
114447 const char *zFile, /* Name of the shared library containing extension */
114453 rc = sqlite3LoadExtension(db, zFile, zProc, pzErrMsg);
145953 char *zFile;
145974 zFile = sqlite3_malloc64(nByte);
145975 if( !zFile ) return SQLITE_NOMEM_BKPT;
146048 if( zFile[iOut-1]==0 ){
146054 zFile[iOut++] = '\0';
146063 zFile[iOut++] = c;
146065 if( eState==1 ) zFile[iOut++] = '\0';
146066 zFile[iOut++] = '\0';
146067 zFile[iOut++] = '\0';
146073 zOpt = &zFile[sqlite3Strlen30(zFile)+1];
146147 zFile = sqlite3_malloc64(nUri+2);
146148 if( !zFile ) return SQLITE_NOMEM_BKPT;
146150 memcpy(zFile, zUri, nUri);
146152 zFile[nUri] = '\0';
146153 zFile[nUri+1] = '\0';
146164 sqlite3_free(zFile);
146165 zFile = 0;
146168 *pzFile = zFile;
175123 const char *zFile = sqlite3_db_filename(p->dbRbu, "main");
175124 p->zState = rbuMPrintf(p, "file://%s-vacuum?modeof=%s", zFile, zFile);