Home | History | Annotate | Download | only in dist

Lines Matching refs:mxPathname

1432 ** structure used by this VFS.  mxPathname is the maximum length of
1536 ** ^SQLite will always allocate at least mxPathname+1 bytes for the
1541 ** to prevent this by setting mxPathname to a sufficiently large value.
1578 int mxPathname; /* Maximum file pathname length */
24254 ** hold at pVfs->mxPathname characters.
24315 ** pathname into zFull[]. zFull[] will be at least pVfs->mxPathname
24773 CCHMAXPATH, /* mxPathname */
29852 ** pVfs->mxPathname bytes.
30396 ** zOut points to a buffer of at least sqlite3_vfs.mxPathname bytes
30414 assert( pVfs->mxPathname==MAX_PATHNAME );
31854 MAX_PATHNAME, /* mxPathname */ \
35064 ** hold at pVfs->mxPathname characters.
35499 ** pathname into zOut[]. zOut[] will be at least pVfs->mxPathname
35520 sqlite3_snprintf(pVfs->mxPathname, zFull, "%s", zRelative);
35579 sqlite3_snprintf(pVfs->mxPathname, zFull, "%s", zOut);
35797 MAX_PATH, /* mxPathname */
39640 ** the caller. This should be sqlite3_vfs.mxPathname+1 (to ensure there is
40846 nMasterPtr = pVfs->mxPathname+1;
41086 ** buffer Pager.pTmpSpace is (mxPathname+1) bytes or larger. i.e. that
41087 ** (pPager->pageSize >= pPager->pVfs->mxPathname+1). Using os_unix.c,
41088 ** mxPathname is 512, which is the same as the minimum allowable value
41092 rc = readMasterJournal(pPager->jfd, zMaster, pPager->pVfs->mxPathname+1);
41221 rc = readMasterJournal(pPager->jfd, zMaster, pPager->pVfs->mxPathname+1);
42809 nPathname = pVfs->mxPathname+1;
42824 if( rc==SQLITE_OK && nPathname+8>pVfs->mxPathname ){
42826 ** the database being opened will be more than pVfs->mxPathname
51154 int nFullPathname = pVfs->mxPathname+1;