Lines Matching refs:nOut

1484   int (*xFullPathname)(sqlite3_vfs*, const char *zName, int nOut, char *zOut);
9362 int nOut; /* Number of buffers currently checked out */ member
13007 *pCurrent = db->lookaside.nOut; in sqlite3_db_status()
13010 db->lookaside.mxOut = db->lookaside.nOut; in sqlite3_db_status()
18504 db->lookaside.nOut--; in sqlite3DbFree()
18636 db->lookaside.nOut++; in sqlite3DbMallocRaw()
18638 if( db->lookaside.nOut>db->lookaside.mxOut ){ in sqlite3DbMallocRaw()
18639 db->lookaside.mxOut = db->lookaside.nOut; in sqlite3DbMallocRaw()
29695 int nOut, /* Size of output buffer in bytes */
29709 zOut[nOut-1] = '\0';
29711 sqlite3_snprintf(nOut, zOut, "%s", zPath);
29714 if( osGetcwd(zOut, nOut-1)==0 ){
29718 sqlite3_snprintf(nOut-nCwd, &zOut[nCwd], "/%s", zPath);
36760 SQLITE_PRIVATE int sqlite3WalRead(Wal *pWal, Pgno pgno, int *pInWal, int nOut, u8 *pOut);
45876 int nOut, /* Size of buffer pOut in bytes */
45977 return sqlite3OsRead(pWal->pWalFd, pOut, nOut, iOffset);
83190 i64 nOut; /* Maximum size of zOut */
83217 nOut = nStr + 1;
83218 assert( nOut<SQLITE_MAX_LENGTH );
83219 zOut = contextMalloc(context, (i64)nOut);
83230 nOut += nRep - nPattern;
83231 testcase( nOut-1==db->aLimit[SQLITE_LIMIT_LENGTH] );
83232 testcase( nOut-2==db->aLimit[SQLITE_LIMIT_LENGTH] );
83233 if( nOut-1>db->aLimit[SQLITE_LIMIT_LENGTH] ){
83239 zOut = sqlite3_realloc(zOut, (int)nOut);
83250 assert( j+nStr-i+1==nOut );
83253 assert( j<=nOut );
108378 if( db->lookaside.nOut ){
108722 assert( db->lookaside.nOut==0 ); /* Fails on a lookaside memory leak */
114062 int nOut = 0;
114072 nOut = pTS->anOutput[i];
114079 pTS->aaOutput[i], pTS->anOutput[i], aOut, nOut, &aNew, &nNew
114090 nOut = nNew;
114096 pTS->anOutput[0] = nOut;