Lines Matching defs:mxPathname
1631 ** structure used by this VFS. mxPathname is the maximum length of
1741 ** ^SQLite will always allocate at least mxPathname+1 bytes for the
1746 ** to prevent this by setting mxPathname to a sufficiently large value.
1783 int mxPathname; /* Maximum file pathname length */
37473 1024, /* mxPathname */
42405 char *zTFile = sqlite3_malloc64( pFile->pVfs->mxPathname );
42407 unixGetTempname(pFile->pVfs->mxPathname, zTFile);
44382 ** pVfs->mxPathname bytes.
44718 rc = unixGetTempname(pVfs->mxPathname, zTmpname);
45069 ** zOut points to a buffer of at least sqlite3_vfs.mxPathname bytes
46537 MAX_PATHNAME, /* mxPathname */ \
51420 nMax = pVfs->mxPathname; nBuf = nMax + 2;
52245 ** pathname into zOut[]. zOut[] will be at least pVfs->mxPathname
52271 assert( nFull>=pVfs->mxPathname );
52279 char *zOut = sqlite3MallocZero( pVfs->mxPathname+1 );
52285 CCP_RELATIVE, zRelative, zOut, pVfs->mxPathname+1)<0 ){
52295 sqlite3_snprintf(MIN(nFull, pVfs->mxPathname), zFull, "%s%c%s",
52301 char *zOut = sqlite3MallocZero( pVfs->mxPathname+1 );
52307 zRelative, zOut, pVfs->mxPathname+1)<0 ){
52317 sqlite3_snprintf(MIN(nFull, pVfs->mxPathname), zFull, "%s", zUtf8);
52336 sqlite3_snprintf(MIN(nFull, pVfs->mxPathname), zFull, "%s%c%s",
52339 sqlite3_snprintf(MIN(nFull, pVfs->mxPathname), zFull, "%s", zRelative);
52358 sqlite3_snprintf(MIN(nFull, pVfs->mxPathname), zFull, "%s%c%s",
52419 sqlite3_snprintf(MIN(nFull, pVfs->mxPathname), zFull, "%s", zOut);
52450 int nFull = pVfs->mxPathname+1;
52716 SQLITE_WIN32_MAX_PATH_BYTES, /* mxPathname */
52741 SQLITE_WINNT_MAX_PATH_BYTES, /* mxPathname */
52766 SQLITE_WIN32_MAX_PATH_BYTES, /* mxPathname */
52791 SQLITE_WINNT_MAX_PATH_BYTES, /* mxPathname */
53005 1024, /* mxPathname */
58391 ** the caller. This should be sqlite3_vfs.mxPathname+1 (to ensure there is
59667 nSuperPtr = pVfs->mxPathname+1;
59926 ** buffer Pager.pTmpSpace is (mxPathname+1) bytes or larger. i.e. that
59927 ** (pPager->pageSize >= pPager->pVfs->mxPathname+1). Using os_unix.c,
59928 ** mxPathname is 512, which is the same as the minimum allowable value
59932 rc = readSuperJournal(pPager->jfd, zSuper, pPager->pVfs->mxPathname+1);
60071 rc = readSuperJournal(pPager->jfd, zSuper, pPager->pVfs->mxPathname+1);
61866 nPathname = pVfs->mxPathname+1;
61890 if( rc==SQLITE_OK && nPathname+8>pVfs->mxPathname ){
61892 ** the database being opened will be more than pVfs->mxPathname
73130 int nFullPathname = pVfs->mxPathname+1;
223450 0, /* mxPathname */
223495 pNew->base.mxPathname = pParent->mxPathname;