Lines Matching refs:nFull
5584 int nFull, /* Size of output buffer in bytes */ argument
5603 UNUSED_PARAMETER(nFull);
5604 assert( nFull>=pVfs->mxPathname );
5628 sqlite3_snprintf(MIN(nFull, pVfs->mxPathname), zFull, "%s%c%s",
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);
5763 int nFull, /* Size of output buffer in bytes */ argument
5770 rc = winFullPathnameNoMutex(pVfs, zRelative, nFull, zFull);
5783 int nFull = pVfs->mxPathname+1; local
5784 char *zFull = sqlite3MallocZero( nFull );
5790 if( winFullPathname(pVfs, zFilename, nFull, zFull)!=SQLITE_OK ){