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 */
29837 ** pVfs->mxPathname bytes.
30381 ** zOut points to a buffer of at least sqlite3_vfs.mxPathname bytes
30399 assert( pVfs->mxPathname==MAX_PATHNAME );
31839 MAX_PATHNAME, /* mxPathname */ \
35049 ** hold at pVfs->mxPathname characters.
35484 ** pathname into zOut[]. zOut[] will be at least pVfs->mxPathname
35505 sqlite3_snprintf(pVfs->mxPathname, zFull, "%s", zRelative);
35564 sqlite3_snprintf(pVfs->mxPathname, zFull, "%s", zOut);
35782 MAX_PATH, /* mxPathname */
39625 ** the caller. This should be sqlite3_vfs.mxPathname+1 (to ensure there is
40831 nMasterPtr = pVfs->mxPathname+1;
41071 ** buffer Pager.pTmpSpace is (mxPathname+1) bytes or larger. i.e. that
41072 ** (pPager->pageSize >= pPager->pVfs->mxPathname+1). Using os_unix.c,
41073 ** mxPathname is 512, which is the same as the minimum allowable value
41077 rc = readMasterJournal(pPager->jfd, zMaster, pPager->pVfs->mxPathname+1);
41206 rc = readMasterJournal(pPager->jfd, zMaster, pPager->pVfs->mxPathname+1);
42794 nPathname = pVfs->mxPathname+1;
42809 if( rc==SQLITE_OK && nPathname+8>pVfs->mxPathname ){
42811 ** the database being opened will be more than pVfs->mxPathname
51139 int nFullPathname = pVfs->mxPathname+1;