Lines Matching defs:mxPathname

1318 ** structure used by this VFS.  mxPathname is the maximum length of
1420 ** ^SQLite will always allocate at least mxPathname+1 bytes for the
1425 ** to prevent this by setting mxPathname to a sufficiently large value.
1462 int mxPathname; /* Maximum file pathname length */
23385 ** hold at pVfs->mxPathname characters.
23446 ** pathname into zFull[]. zFull[] will be at least pVfs->mxPathname
23904 CCHMAXPATH, /* mxPathname */
28833 ** pVfs->mxPathname bytes.
29386 ** zOut points to a buffer of at least sqlite3_vfs.mxPathname bytes
29404 assert( pVfs->mxPathname==MAX_PATHNAME );
30836 MAX_PATHNAME, /* mxPathname */ \
33023 ** hold at pVfs->mxPathname characters.
33504 ** pathname into zOut[]. zOut[] will be at least pVfs->mxPathname
33525 sqlite3_snprintf(pVfs->mxPathname, zFull, "%s", zRelative);
33574 sqlite3_snprintf(pVfs->mxPathname, zFull, "%s", zOut);
33870 MAX_PATH, /* mxPathname */
37616 ** the caller. This should be sqlite3_vfs.mxPathname+1 (to ensure there is
38822 nMasterPtr = pVfs->mxPathname+1;
39050 ** buffer Pager.pTmpSpace is (mxPathname+1) bytes or larger. i.e. that
39051 ** (pPager->pageSize >= pPager->pVfs->mxPathname+1). Using os_unix.c,
39052 ** mxPathname is 512, which is the same as the minimum allowable value
39056 rc = readMasterJournal(pPager->jfd, zMaster, pPager->pVfs->mxPathname+1);
39185 rc = readMasterJournal(pPager->jfd, zMaster, pPager->pVfs->mxPathname+1);
40762 nPathname = pVfs->mxPathname+1;
40770 if( rc==SQLITE_OK && nPathname+8>pVfs->mxPathname ){
40772 ** the database being opened will be more than pVfs->mxPathname
48875 int nFullPathname = pVfs->mxPathname+1;