| /sqlite-3.40.0/test/ |
| H A D | pcache.test | 40 } {current 0 max 0 min 0 recyclable 0} 50 } {current 1 max 12 min 10 recyclable 1} 62 } {current 6 max 12 min 10 recyclable 0} 72 } {current 10 max 12 min 10 recyclable 0} 78 } {current 11 max 22 min 20 recyclable 1} 86 } {current 11 max 22 min 20 recyclable 0} 107 } {current 23 max 22 min 20 recyclable 0} 114 } {current 24 max 22 min 20 recyclable 0} 124 } {current 23 max 22 min 20 recyclable 0} 129 } {current 22 max 22 min 20 recyclable 22} [all …]
|
| H A D | malloctraceviewer.tcl | 89 if {$ztest eq $::O(current)} { 176 set ::O(current) $zTest
|
| H A D | vtabH.test | 200 # Read all entries in the current directory. 218 # Add some sub-directories and files to the current directory.
|
| H A D | shared_err.test | 193 # [sqlite3_column] still returns the current row ("001...") and 273 # [sqlite3_column] still returns the current row ("001...") and 305 # current key value). It does not happen with tables, because an integer
|
| H A D | backcompat.test | 12 # focus of this file is testing that the current version of SQLite 176 # 1. If it is 0, then the current version creates a journal file that 178 # creates the journal file and we try to read it with the current version.
|
| H A D | notify2.test | 37 # error is returned the current transaction is rolled back immediately. 146 # Hit an SQLITE_LOCKED error. Rollback the current transaction.
|
| H A D | vacuum6.test | 20 # If the VACUUM statement is disabled in the current build, skip all
|
| H A D | stmt.test | 30 # remains open until the current transaction is committed or rolled back.
|
| H A D | tkt-f3e5abed55.test | 61 # file "test.db-journal", a snapshot of the current file-system contents
|
| H A D | malloc3.test | 48 # database files happen to be on disk in place. The next time the current 82 # * The current transaction may be rolled back. In this case a hot-journal 161 # between the current SQL statement and the most recent "BEGIN". Any 580 # Fetch the current instruction type and payload.
|
| H A D | tkt-b72787b1.test | 70 # second SELECT was reached. After the fix, the current statement
|
| H A D | vacuum4.test | 20 # If the VACUUM statement is disabled in the current build, skip all
|
| H A D | alias.test | 130 # twice in the current implementation. This might change in the future.
|
| H A D | vacuum5.test | 19 # If the VACUUM statement is disabled in the current build, skip all
|
| H A D | schema3.test | 42 # Have connections [db1] and [db2] load the current database schema.
|
| /sqlite-3.40.0/src/ |
| H A D | analyze.c | 372 sampleClear(p->db, &p->current); in statAccumDestructor() 450 p->current.anEq = &p->current.anDLt[nColUp]; in statInit() 460 p->current.anLt = &p->current.anEq[nColUp]; in statInit() 729 p->current.anEq[i]++; in statPush() 732 p->current.anDLt[i]++; in statPush() 734 if( p->mxSample ) p->current.anLt[i] += p->current.anEq[i]; in statPush() 736 p->current.anEq[i] = 1; in statPush() 755 p->current.isPSample = 1; in statPush() 756 p->current.iCol = 0; in statPush() 758 p->current.isPSample = 0; in statPush() [all …]
|
| H A D | window.c | 1606 WindowCsrAndReg current; member 2308 csr = p->current.csr; in windowCodeOp() 2309 reg = p->current.reg; in windowCodeOp() 2825 s.current.csr = pMWin->iEphCsr; in sqlite3WindowCodeStep() 2826 csrWrite = s.current.csr+1; in sqlite3WindowCodeStep() 2827 s.start.csr = s.current.csr+2; in sqlite3WindowCodeStep() 2828 s.end.csr = s.current.csr+3; in sqlite3WindowCodeStep() 2947 sqlite3VdbeAddOp2(v, OP_Rewind, s.current.csr, 1); in sqlite3WindowCodeStep() 2950 sqlite3VdbeAddOp1(v, OP_ResetSorter, s.current.csr); in sqlite3WindowCodeStep() 2963 sqlite3VdbeAddOp2(v, OP_Rewind, s.current.csr, 1); in sqlite3WindowCodeStep() [all …]
|
| /sqlite-3.40.0/contrib/ |
| H A D | sqlitecon.tcl | 82 set v(current) -1 205 set v(current) $v(historycnt) 403 if {$v(current)<=0} return 404 incr v(current) -1 405 set line [lindex $v(history) $v(current)] 413 if {$v(current)>=$v(historycnt)} return 414 incr v(current) 1 415 set line [lindex $v(history) $v(current)]
|
| /sqlite-3.40.0/ |
| H A D | ltmain.sh | 6205 current="$number_major" 6219 current="$1" 6226 case $current in 6269 func_arith $current + 1 6276 major=".$current" 6281 major=".$current" 6282 versuffix=".$current" 6341 major=".$current" 6342 versuffix=".$current" 6346 major=".$current" [all …]
|
| /sqlite-3.40.0/ext/wasm/ |
| H A D | README.md | 20 # Make the "latest" SDK "active" for the current user: 36 # Activate PATH and other environment variables in the current terminal:
|
| /sqlite-3.40.0/tool/ |
| H A D | lemon.c | 1307 static struct config *current = 0; /* Top of list of configurations */ variable 1326 current = 0; in Configlist_init() 1327 currentend = ¤t; in Configlist_init() 1336 current = 0; in Configlist_reset() 1337 currentend = ¤t; in Configlist_reset() 1408 for(cfp=current; cfp; cfp=cfp->next){ in Configlist_closure() 1446 current = (struct config*)msort((char*)current,(char**)&(current->next), in Configlist_sort() 1454 basis = (struct config*)msort((char*)current,(char**)&(current->bp), in Configlist_sortbasis() 1464 old = current; in Configlist_return() 1465 current = 0; in Configlist_return()
|
| H A D | build-all-msvc.bat | 179 REM NOTE: Change the current directory to the root of the source tree, saving 180 REM the current directory on the directory stack. 541 REM as current versions of their official batch file do not set 754 REM NOTE: Restore the saved current directory from the directory stack.
|
| H A D | omittest.tcl | 17 as a sub-directory of the current directory by the script. The output
|
| /sqlite-3.40.0/doc/ |
| H A D | vdbesort-memory.md | 47 sqlite3HeapNearlyFull() is called. If it returns true, the current
|
| /sqlite-3.40.0/ext/fts3/ |
| H A D | README.content | 91 the row in the content table with a rowid value equal to the current FTS 167 deletes the entire full-text index and rebuilds it based on the current
|