Lines Matching refs:mxPathname

1368 ** structure used by this VFS.  mxPathname is the maximum length of
1472 ** ^SQLite will always allocate at least mxPathname+1 bytes for the
1477 ** to prevent this by setting mxPathname to a sufficiently large value.
1514 int mxPathname; /* Maximum file pathname length */
23819 ** hold at pVfs->mxPathname characters.
23880 ** pathname into zFull[]. zFull[] will be at least pVfs->mxPathname
24338 CCHMAXPATH, /* mxPathname */
29318 ** pVfs->mxPathname bytes.
29819 ** zOut points to a buffer of at least sqlite3_vfs.mxPathname bytes
29837 assert( pVfs->mxPathname==MAX_PATHNAME );
31273 MAX_PATHNAME, /* mxPathname */ \
33933 ** hold at pVfs->mxPathname characters.
34354 ** pathname into zOut[]. zOut[] will be at least pVfs->mxPathname
34375 sqlite3_snprintf(pVfs->mxPathname, zFull, "%s", zRelative);
34431 sqlite3_snprintf(pVfs->mxPathname, zFull, "%s", zOut);
34727 MAX_PATH, /* mxPathname */
38722 ** the caller. This should be sqlite3_vfs.mxPathname+1 (to ensure there is
39928 nMasterPtr = pVfs->mxPathname+1;
40156 ** buffer Pager.pTmpSpace is (mxPathname+1) bytes or larger. i.e. that
40157 ** (pPager->pageSize >= pPager->pVfs->mxPathname+1). Using os_unix.c,
40158 ** mxPathname is 512, which is the same as the minimum allowable value
40162 rc = readMasterJournal(pPager->jfd, zMaster, pPager->pVfs->mxPathname+1);
40291 rc = readMasterJournal(pPager->jfd, zMaster, pPager->pVfs->mxPathname+1);
41872 nPathname = pVfs->mxPathname+1;
41886 if( rc==SQLITE_OK && nPathname+8>pVfs->mxPathname ){
41888 ** the database being opened will be more than pVfs->mxPathname
50026 int nFullPathname = pVfs->mxPathname+1;