Home
last modified time | relevance | path

Searched refs:szMax (Results 1 – 2 of 2) sorted by relevance

/netbsd-src/external/public-domain/sqlite/dist/
H A Dshell.c18176 sqlite3_int64 szMax; /* --maxsize argument to .open */ member
22302 if( p->szMax>0 ){ in open_db()
22303 sqlite3_file_control(p->db, "main", SQLITE_FCNTL_SIZE_LIMIT, &p->szMax); in open_db()
26264 p->szMax = integerValue(azArg[++iName]); in do_meta_command()
26290 p->szMax = 0; in do_meta_command()
29124 data.szMax = integerValue(argv[++i]);
29254 data.szMax = integerValue(argv[++i]);
H A Dsqlite3.c52587 sqlite3_int64 szMax; /* Maximum allowed size of the file */
52793 if( newSz>p->szMax ){
52797 if( newSz>p->szMax ) newSz = p->szMax;
52990 iLimit = p->szMax;
52995 p->szMax = iLimit;
53100 p->szMax = sqlite3GlobalConfig.mxMemdbSize;
53124 p->szMax = sqlite3GlobalConfig.mxMemdbSize;
53400 pStore->szMax = szBuf;
53401 if( pStore->szMax<sqlite3GlobalConfig.mxMemdbSize ){
53402 pStore->szMax = sqlite3GlobalConfig.mxMemdbSize;
[all …]