Searched refs:zFile (Results 1 – 4 of 4) sorted by relevance
| /freebsd/contrib/sqlite3/ |
| H A D | shell.c | 1286 static FILE * openChrSource(const char *zFile){ in openChrSource() argument 1293 FILE *rv = sqlite3_fopen(zFile, "rb"); in openChrSource() 1303 int rc = stat(zFile, &x); in openChrSource() 1307 return sqlite3_fopen(zFile, "rb"); in openChrSource() 8301 const char *zFile in makeDirectory() argument 8303 char *zCopy = sqlite3_mprintf("%s", zFile); in makeDirectory() 8342 const char *zFile, /* File to write */ in writeFile() argument 8347 if( zFile==0 ) return 1; in writeFile() 8352 unlink(zFile); in writeFile() 8353 if( symlink(zTo, zFile)<0 ) return 1; in writeFile() [all …]
|
| H A D | sqlite3.h | 7406 const char *zFile, /* Name of the shared library containing extension */
|
| H A D | sqlite3.c | 7725 const char *zFile, /* Name of the shared library containing extension */ 26846 const char *zFile, in sqlite3OsOpenMalloc() argument 26855 rc = sqlite3OsOpen(pVfs, zFile, pFile, flags, pOutFlags); in sqlite3OsOpenMalloc() 39252 static int posixOpen(const char *zFile, int flags, int mode){ in posixOpen() argument 39253 return open(zFile, flags, mode); in posixOpen() 43746 const char *zFile = pShmNode->zFilename; in unixShmMap() local 43747 rc = unixLogError(SQLITE_IOERR_SHMSIZE, "write", zFile); in unixShmMap() 44973 const char *zFile, /* File name */ in getFileMode() argument 44980 if( 0==osStat(zFile, &sStat) ){ in getFileMode() 88977 char const *zFile = sqlite3BtreeGetJournalname(pBt); local [all …]
|
| /freebsd/contrib/sqlite3/tea/generic/ |
| H A D | tclsqlite3.c | 2520 char *zFile; /* The file from which to extract data */ in DbObjCmd() local 2557 zFile = Tcl_GetStringFromObj(objv[4], 0); in DbObjCmd() 2614 in = Tcl_OpenFileChannel(interp, zFile, "rb", 0666); in DbObjCmd() 2648 int nErr = strlen30(zFile) + 200; in DbObjCmd() 2653 zFile, lineno, nCol, i+1); in DbObjCmd() 3820 const char *zFile = 0; in DbMain() local 3859 if( zFile!=0 ) return sqliteCmdUsage(interp, objv); in DbMain() 3860 zFile = zArg; in DbMain() 3933 if( zFile==0 ) zFile = ""; in DbMain() 3935 zFile = Tcl_TranslateFileName(interp, zFile, &translatedFilename); in DbMain() [all …]
|