Lines Matching refs:mxPathname
4763 nMax = pVfs->mxPathname; nBuf = nMax + 2;
5604 assert( nFull>=pVfs->mxPathname );
5612 char *zOut = sqlite3MallocZero( pVfs->mxPathname+1 );
5618 CCP_RELATIVE, zRelative, zOut, pVfs->mxPathname+1)<0 ){
5628 sqlite3_snprintf(MIN(nFull, pVfs->mxPathname), zFull, "%s%c%s",
5634 char *zOut = sqlite3MallocZero( pVfs->mxPathname+1 );
5640 zRelative, zOut, pVfs->mxPathname+1)<0 ){
5650 sqlite3_snprintf(MIN(nFull, pVfs->mxPathname), zFull, "%s", zUtf8);
5669 sqlite3_snprintf(MIN(nFull, pVfs->mxPathname), zFull, "%s%c%s",
5672 sqlite3_snprintf(MIN(nFull, pVfs->mxPathname), zFull, "%s", zRelative);
5691 sqlite3_snprintf(MIN(nFull, pVfs->mxPathname), zFull, "%s%c%s",
5752 sqlite3_snprintf(MIN(nFull, pVfs->mxPathname), zFull, "%s", zOut);
5783 int nFull = pVfs->mxPathname+1;