Home | History | Annotate | Download | only in orig

Lines Matching full:zfile

3247 SQLITE_API int SQLITE_STDCALL sqlite3_uri_boolean(const char *zFile, const char *zParam, int bDefault);
5617 ** [SQLite extension] library contained in the file zFile. If
5647 const char *zFile, /* Name of the shared library containing extension */
5648 const char *zProc, /* Entry point. Derived from zFile if 0 */
17488 const char *zFile,
17497 rc = sqlite3OsOpen(pVfs, zFile, pFile, flags, pOutFlags);
26945 static int posixOpen(const char *zFile, int flags, int mode){
26946 return open(zFile, flags, mode);
31103 const char *zFile = pShmNode->zFilename;
31104 rc = unixLogError(SQLITE_IOERR_SHMSIZE, "write", zFile);
68836 char const *zFile = sqlite3BtreeGetJournalname(pBt);
68837 if( zFile==0 ){
68840 assert( zFile[0]!=0 );
68844 rc = sqlite3OsWrite(pMaster, zFile, sqlite3Strlen30(zFile)+1, offset);
68845 offset += sqlite3Strlen30(zFile)+1;
91982 const char *zFile;
91992 zFile = (const char *)sqlite3_value_text(argv[0]);
91994 if( zFile==0 ) zFile = "";
92042 rc = sqlite3ParseUri(db->pVfs->zName, zFile, &flags, &pVfs, &zPath, &zErr);
92150 zErrDyn = sqlite3MPrintf(db, "unable to open database: %s", zFile);
99944 const char *zFile = (const char *)sqlite3_value_text(argv[0]);
99954 if( zFile && sqlite3_load_extension(db, zFile, zProc, &zErrMsg) ){
104983 ** zFile. The entry point is zProc. zProc may be 0 in which case a
104995 const char *zFile, /* Name of the shared library containing extension */
105006 u64 nMsg = 300 + sqlite3Strlen30(zFile);
105009 /* Shared library endings to try if zFile cannot be loaded as written */
105038 handle = sqlite3OsDlOpen(pVfs, zFile);
105041 char *zAltFile = sqlite3_mprintf("%s.%s", zFile, azEndings[ii]);
105052 "unable to open shared library [%s]", zFile);
105074 int ncFile = sqlite3Strlen30(zFile);
105081 for(iFile=ncFile-1; iFile>=0 && zFile[iFile]!='/'; iFile--){}
105083 if( sqlite3_strnicmp(zFile+iFile, "lib", 3)==0 ) iFile += 3;
105084 for(iEntry=8; (c = zFile[iFile])!=0 && c!='.'; iFile++){
105100 "no entry point [%s] in shared library [%s]", zEntry, zFile);
105134 const char *zFile, /* Name of the shared library containing extension */
105140 rc = sqlite3LoadExtension(db, zFile
133243 char *zFile;
133264 zFile = sqlite3_malloc64(nByte);
133265 if( !zFile ) return SQLITE_NOMEM;
133294 /* Copy the filename and any query parameters into the zFile buffer.
133331 if( zFile[iOut-1]==0 ){
133337 zFile[iOut++] = '\0';
133346 zFile[iOut++] = c;
133348 if( eState==1 ) zFile[iOut++] = '\0';
133349 zFile[iOut++] = '\0';
133350 zFile[iOut++] = '\0';
133356 zOpt = &zFile[sqlite3Strlen30(zFile)+1];
133430 zFile = sqlite3_malloc64(nUri+2);
133431 if( !zFile ) return SQLITE_NOMEM;
133432 memcpy(zFile, zUri, nUri);
133433 zFile[nUri] = '\0';
133434 zFile[nUri+1] = '\0';
133445 sqlite3_free(zFile);
133446 zFile = 0;
133449 *pzFile = zFile;