Home
last modified time | relevance | path

Searched refs:nFull (Results 1 – 3 of 3) sorted by relevance

/sqlite-3.40.0/src/
H A Dmalloc.c230 int nFull; in mallocWithAlarm() local
239 nFull = sqlite3GlobalConfig.m.xRoundup(n); in mallocWithAlarm()
244 if( nUsed >= mem0.alarmThreshold - nFull ){ in mallocWithAlarm()
246 sqlite3MallocAlarm(nFull); in mallocWithAlarm()
249 if( nUsed >= mem0.hardLimit - nFull ){ in mallocWithAlarm()
258 p = sqlite3GlobalConfig.m.xMalloc(nFull); in mallocWithAlarm()
261 sqlite3MallocAlarm(nFull); in mallocWithAlarm()
262 p = sqlite3GlobalConfig.m.xMalloc(nFull); in mallocWithAlarm()
266 nFull = sqlite3MallocSize(p); in mallocWithAlarm()
267 sqlite3StatusUp(SQLITE_STATUS_MEMORY_USED, nFull); in mallocWithAlarm()
H A Dtest_quota.c1231 size_t nFull; /* Number of bytes in zFilename */ in sqlite3_quota_remove() local
1251 nFull = strlen(zFull); in sqlite3_quota_remove()
1252 if( nFull>0 && (zFull[nFull-1]=='/' || zFull[nFull-1]=='\\') ){ in sqlite3_quota_remove()
1253 nFull--; in sqlite3_quota_remove()
1254 zFull[nFull] = 0; in sqlite3_quota_remove()
1262 diff = strncmp(zFull, pFile->zFilename, nFull); in sqlite3_quota_remove()
1263 if( diff==0 && ((c = pFile->zFilename[nFull])==0 || c=='/' || c=='\\') ){ in sqlite3_quota_remove()
H A Dos_win.c5584 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",
5669 sqlite3_snprintf(MIN(nFull, pVfs->mxPathname), zFull, "%s%c%s",
5691 sqlite3_snprintf(MIN(nFull, pVfs->mxPathname), zFull, "%s%c%s",
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 );
[all …]