Home | History | Annotate | Download | only in dist

Lines Matching defs:zFile

3253 SQLITE_API int sqlite3_uri_boolean(const char *zFile, const char *zParam, int bDefault);
5379 ** SQLite extension library contained in the file zFile.
5400 const char *zFile, /* Name of the shared library containing extension */
5401 const char *zProc, /* Entry point. Derived from zFile if 0 */
14897 const char *zFile,
14906 rc = sqlite3OsOpen(pVfs, zFile, pFile, flags, pOutFlags);
25329 static int posixOpen(const char *zFile, int flags, int mode){
25330 return open(zFile, flags, mode);
61423 char const *zFile = sqlite3BtreeGetJournalname(pBt);
61424 if( zFile==0 ){
61427 assert( zFile[0]!=0 );
61431 rc = sqlite3OsWrite(pMaster, zFile, sqlite3Strlen30(zFile)+1, offset);
61432 offset += sqlite3Strlen30(zFile)+1;
80494 const char *zFile;
80504 zFile = (const char *)sqlite3_value_text(argv[0]);
80506 if( zFile==0 ) zFile = "";
80554 rc = sqlite3ParseUri(db->pVfs->zName, zFile, &flags, &pVfs, &zPath, &zErr);
80648 zErrDyn = sqlite3MPrintf(db, "unable to open database: %s", zFile);
87369 const char *zFile = (const char *)sqlite3_value_text(argv[0]);
87379 if( zFile && sqlite3_load_extension(db, zFile, zProc, &zErrMsg) ){
91824 ** zFile. The entry point is zProc. zProc may be 0 in which case a
91836 const char *zFile, /* Name of the shared library containing extension */
91845 int nMsg = 300 + sqlite3Strlen30(zFile);
91866 handle = sqlite3OsDlOpen(pVfs, zFile);
91872 "unable to open shared library [%s]", zFile);
91886 "no entry point [%s] in shared library [%s]", zProc,zFile);
91917 const char *zFile, /* Name of the shared library containing extension */
91923 rc = sqlite3LoadExtension(db, zFile, zProc, pzErrMsg);
114353 char *zFile;
114373 zFile = sqlite3_malloc(nByte);
114374 if( !zFile ) return SQLITE_NOMEM;
114391 /* Copy the filename and any query parameters into the zFile buffer.
114428 if( zFile[iOut-1]==0 ){
114434 zFile[iOut++] = '\0';
114443 zFile[iOut++] = c;
114445 if( eState==1 ) zFile[iOut++] = '\0';
114446 zFile[iOut++] = '\0';
114447 zFile[iOut++] = '\0';
114453 zOpt = &zFile[sqlite3Strlen30(zFile)+1];
114525 zFile = sqlite3_malloc(nUri+2);
114526 if( !zFile ) return SQLITE_NOMEM;
114527 memcpy(zFile, zUri, nUri);
114528 zFile[nUri] = '\0';
114529 zFile[nUri+1] = '\0';
114539 sqlite3_free(zFile);
114540 zFile = 0;
114543 *pzFile = zFile;