Home | History | Annotate | Download | only in orig

Lines Matching defs: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 */
29824 ** pVfs->mxPathname bytes.
30368 ** zOut points to a buffer of at least sqlite3_vfs.mxPathname bytes
30386 assert( pVfs->mxPathname==MAX_PATHNAME );
31826 MAX_PATHNAME, /* mxPathname */ \
35036 ** hold at pVfs->mxPathname characters.
35471 ** pathname into zOut[]. zOut[] will be at least pVfs->mxPathname
35492 sqlite3_snprintf(pVfs->mxPathname, zFull, "%s", zRelative);
35551 sqlite3_snprintf(pVfs->mxPathname, zFull, "%s", zOut);
35769 MAX_PATH, /* mxPathname */
39612 ** the caller. This should be sqlite3_vfs.mxPathname+1 (to ensure there is
40818 nMasterPtr = pVfs->mxPathname+1;
41058 ** buffer Pager.pTmpSpace is (mxPathname+1) bytes or larger. i.e. that
41059 mxPathname+1). Using os_unix.c,
41060 ** mxPathname is 512, which is the same as the minimum allowable value
41064 rc = readMasterJournal(pPager->jfd, zMaster, pPager->pVfs->mxPathname+1);
41193 rc = readMasterJournal(pPager->jfd, zMaster, pPager->pVfs->mxPathname+1);
42781 mxPathname+1;
42796 if( rc==SQLITE_OK && nPathname+8>pVfs->mxPathname ){
42798 ** the database being opened will be more than pVfs->mxPathname
51126 int nFullPathname = pVfs->mxPathname+1;