Home | History | Annotate | Download | only in orig

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);
25322 static int posixOpen(const char *zFile, int flags, int mode){
25323 return open(zFile, flags, mode);
61395 char const *zFile = sqlite3BtreeGetJournalname(pBt);
61396 if( zFile==0 ){
61399 assert( zFile[0]!=0 );
61403 rc = sqlite3OsWrite(pMaster, zFile, sqlite3Strlen30(zFile)+1, offset);
61404 offset += sqlite3Strlen30(zFile)+1;
80458 const char *zFile;
80468 zFile = (const char *)sqlite3_value_text(argv[0]);
80470 if( zFile==0 ) zFile = "";
80518 rc = sqlite3ParseUri(db->pVfs->zName, zFile, &flags, &pVfs, &zPath, &zErr);
80612 zErrDyn = sqlite3MPrintf(db, "unable to open database: %s", zFile);
87333 const char *zFile = (const char *)sqlite3_value_text(argv[0]);
87343 if( zFile && sqlite3_load_extension(db, zFile, zProc, &zErrMsg) ){
91788 ** zFile. The entry point is zProc. zProc may be 0 in which case a
91800 const char *zFile, /* Name of the shared library containing extension */
91809 int nMsg = 300 + sqlite3Strlen30(zFile);
91830 handle = sqlite3OsDlOpen(pVfs, zFile);
91836 "unable to open shared library [%s]", zFile);
91850 "no entry point [%s] in shared library [%s]", zProc,zFile);
91881 const char *zFile, /* Name of the shared library containing extension */
91887 rc = sqlite3LoadExtension(db, zFile, zProc, pzErrMsg);
114317 char *zFile;
114337 zFile = sqlite3_malloc(nByte);
114338 if( !zFile ) return SQLITE_NOMEM;
114355 /* Copy the filename and any query parameters into the zFile buffer.
114392 if( zFile[iOut-1]==0 ){
114398 zFile[iOut++] = '\0';
114407 zFile[iOut++] = c;
114409 if( eState==1 ) zFile[iOut++] = '\0';
114410 zFile[iOut++] = '\0';
114411 zFile[iOut++] = '\0';
114417 zOpt = &zFile[sqlite3Strlen30(zFile)+1];
114489 zFile = sqlite3_malloc(nUri+2);
114490 if( !zFile ) return SQLITE_NOMEM;
114491 memcpy(zFile, zUri, nUri);
114492 zFile[nUri] = '\0';
114493 zFile[nUri+1] = '\0';
114503 sqlite3_free(zFile);
114504 zFile = 0;
114507 *pzFile = zFile;