Lines Matching refs:zFile

2921 SQLITE_API int sqlite3_uri_boolean(const char *zFile, const char *zParam, int bDefault);
5186 const char *zFile, /* Name of the shared library containing extension */
15728 const char *zFile, in sqlite3OsOpenMalloc() argument
15737 rc = sqlite3OsOpen(pVfs, zFile, pFile, flags, pOutFlags); in sqlite3OsOpenMalloc()
23929 static int posixOpen(const char *zFile, int flags, int mode){
23930 return open(zFile, flags, mode);
28002 const char *zFile = pShmNode->zFilename;
28003 rc = unixLogError(SQLITE_IOERR_SHMSIZE, "write", zFile);
63369 char const *zFile = sqlite3BtreeGetJournalname(pBt);
63370 if( zFile==0 ){
63373 assert( zFile[0]!=0 );
63377 rc = sqlite3OsWrite(pMaster, zFile, sqlite3Strlen30(zFile)+1, offset);
63378 offset += sqlite3Strlen30(zFile)+1;
83382 const char *zFile;
83392 zFile = (const char *)sqlite3_value_text(argv[0]);
83394 if( zFile==0 ) zFile = "";
83442 rc = sqlite3ParseUri(db->pVfs->zName, zFile, &flags, &pVfs, &zPath, &zErr);
83539 zErrDyn = sqlite3MPrintf(db, "unable to open database: %s", zFile);
91050 const char *zFile = (const char *)sqlite3_value_text(argv[0]);
91060 if( zFile && sqlite3_load_extension(db, zFile, zProc, &zErrMsg) ){
95956 const char *zFile, /* Name of the shared library containing extension */
95967 int nMsg = 300 + sqlite3Strlen30(zFile);
95999 handle = sqlite3OsDlOpen(pVfs, zFile);
96002 char *zAltFile = sqlite3_mprintf("%s.%s", zFile, azEndings[ii]);
96013 "unable to open shared library [%s]", zFile);
96035 int ncFile = sqlite3Strlen30(zFile);
96042 for(iFile=ncFile-1; iFile>=0 && zFile[iFile]!='/'; iFile--){}
96044 if( sqlite3_strnicmp(zFile+iFile, "lib", 3)==0 ) iFile += 3;
96045 for(iEntry=8; (c = zFile[iFile])!=0 && c!='.'; iFile++){
96061 "no entry point [%s] in shared library [%s]", zEntry, zFile);
96095 const char *zFile, /* Name of the shared library containing extension */
96101 rc = sqlite3LoadExtension(db, zFile, zProc, pzErrMsg);
121648 char *zFile;
121668 zFile = sqlite3_malloc(nByte);
121669 if( !zFile ) return SQLITE_NOMEM;
121723 if( zFile[iOut-1]==0 ){
121729 zFile[iOut++] = '\0';
121738 zFile[iOut++] = c;
121740 if( eState==1 ) zFile[iOut++] = '\0';
121741 zFile[iOut++] = '\0';
121742 zFile[iOut++] = '\0';
121748 zOpt = &zFile[sqlite3Strlen30(zFile)+1];
121822 zFile = sqlite3_malloc(nUri+2);
121823 if( !zFile ) return SQLITE_NOMEM;
121824 memcpy(zFile, zUri, nUri);
121825 zFile[nUri] = '\0';
121826 zFile[nUri+1] = '\0';
121837 sqlite3_free(zFile);
121838 zFile = 0;
121841 *pzFile = zFile;