Lines Matching refs:zFile

5203 ** SQLite extension library contained in the file zFile.
5224 const char *zFile, /* Name of the shared library containing extension */
5225 const char *zProc, /* Entry point. Derived from zFile if 0 */
14538 const char *zFile,
14547 rc = sqlite3OsOpen(pVfs, zFile, pFile, flags, pOutFlags);
24881 static int posixOpen(const char *zFile, int flags, int mode){
24882 return open(zFile, flags, mode);
60165 char const *zFile = sqlite3BtreeGetJournalname(pBt);
60166 if( zFile==0 ){
60169 assert( zFile[0]!=0 );
60173 rc = sqlite3OsWrite(pMaster, zFile, sqlite3Strlen30(zFile)+1, offset);
60174 offset += sqlite3Strlen30(zFile)+1;
78398 const char *zFile;
78408 zFile = (const char *)sqlite3_value_text(argv[0]);
78410 if( zFile==0 ) zFile = "";
78458 rc = sqlite3ParseUri(db->pVfs->zName, zFile, &flags, &pVfs, &zPath, &zErr);
78552 zErrDyn = sqlite3MPrintf(db, "unable to open database: %s", zFile);
85255 const char *zFile = (const char *)sqlite3_value_text(argv[0]);
85265 if( zFile && sqlite3_load_extension(db, zFile, zProc, &zErrMsg) ){
89686 ** zFile. The entry point is zProc. zProc may be 0 in which case a
89698 const char *zFile, /* Name of the shared library containing extension */
89728 handle = sqlite3OsDlOpen(pVfs, zFile);
89734 "unable to open shared library [%s]", zFile);
89747 "no entry point [%s] in shared library [%s]", zProc,zFile);
89778 const char *zFile, /* Name of the shared library containing extension */
89784 rc = sqlite3LoadExtension(db, zFile, zProc, pzErrMsg);
111982 char *zFile;
112002 zFile = sqlite3_malloc(nByte);
112003 if( !zFile ) return SQLITE_NOMEM;
112020 /* Copy the filename and any query parameters into the zFile buffer.
112057 if( zFile[iOut-1]==0 ){
112063 zFile[iOut++] = '\0';
112072 zFile[iOut++] = c;
112074 if( eState==1 ) zFile[iOut++] = '\0';
112075 zFile[iOut++] = '\0';
112076 zFile[iOut++] = '\0';
112082 zOpt = &zFile[sqlite3Strlen30(zFile)+1];
112154 zFile = sqlite3_malloc(nUri+2);
112155 if( !zFile ) return SQLITE_NOMEM;
112156 memcpy(zFile, zUri, nUri);
112157 zFile[nUri] = '\0';
112158 zFile[nUri+1] = '\0';
112168 sqlite3_free(zFile);
112169 zFile = 0;
112172 *pzFile = zFile;