Home | History | Annotate | Download | only in src

Lines Matching defs:zFilename

3234 ** Open a file descriptor to the directory containing file zFilename.
3256 static int openDirectory(const char *zFilename, int *pFd){
3261 sqlite3_snprintf(MAX_PATHNAME, zDirname, "%s", zFilename);
3560 ** zFilename
3569 char *zFilename; /* Name of the mmapped file */
3797 zShmFilename = pShmNode->zFilename = (char*)&pShmNode[1];
3940 pShmNode->zFilename);
4157 if( deleteFlag && pShmNode->h>=0 ) osUnlink(pShmNode->zFilename);
4479 const char *zFilename, /* Name of the file being opened */
4495 /* Usually the path zFilename should not be a relative pathname. The
4500 assert( zFilename==0 || zFilename[0]=='/'
4503 assert( zFilename==0 || zFilename[0]=='/' );
4506 OSTRACE(("OPEN %-3d %s\n", h, zFilename));
4508 pNew->zPath = zFilename;
4522 pNew->pId = vxworksFindFileId(zFilename);
4532 pLockingStyle = (**(finder_type*)pVfs->pAppData)(zFilename, pNew);
4534 /* Cache zFilename in the locking context (AFP and dotlock override) for
4536 ** zFilename remains valid until file is closed, to support */
4537 pNew->lockingContext = (void*)zFilename;
4583 /* NB: zFilename exists and remains valid until the file is closed
4586 pCtx->dbPath = zFilename;
4607 nFilename = (int)strlen(zFilename) + 6;
4612 sqlite3_snprintf(nFilename, zLockFile, "%s" DOTLOCK_SUFFIX, zFilename);
4646 osUnlink(zFilename);
5287 static void *unixDlOpen(sqlite3_vfs *NotUsed, const char *zFilename){
5289 return dlopen(zFilename, RTLD_NOW | RTLD_GLOBAL);