| /sqlite-3.40.0/ext/wasm/common/ |
| H A D | whwasmutil.js | 184 if(!target.exports){ 187 get: ()=>(target.instance && target.instance.exports) 257 ? target.memory : target.exports.memory; 701 target.getPtrValue = (ptr)=>target.getMemValue(ptr, ptrIR); 705 target.setPtrValue = (ptr, value)=>target.setMemValue(ptr, value, ptrIR); 722 target.isPtr = target.isPtr32; 947 target.jstrcpy(jstr, target.heap8u(), ptr, n+1, true); 964 target.allocCString = 1090 target.setPtrValue(pList + (target.ptrSizeof * i++), 1182 target.allocPtr = [all …]
|
| /sqlite-3.40.0/ext/rbu/ |
| H A D | rbu_common.tcl | 18 proc check_prestep_state {target state} { 46 proc run_rbu {target rbu} { 47 sqlite3rbu rbu $target $rbu 51 check_prestep_state $target $state 53 check_poststep_state $rc $target $state 60 proc step_rbu {target rbu} { 62 sqlite3rbu rbu $target $rbu 64 check_prestep_state $target $state 73 proc step_rbu_legacy {target rbu} { 75 sqlite3rbu rbu $target $rbu [all …]
|
| H A D | rbufault3.test | 48 CREATE TABLE target(x UNIQUE, y, z, PRIMARY KEY(y)); 49 INSERT INTO target VALUES(1, 2, 3); 50 INSERT INTO target VALUES(4, 5, 6); 51 INSERT INTO target VALUES(7, 8, 9); 52 CREATE INDEX i1 ON target(z);
|
| H A D | rbutemplimit.test | 25 -- Create target database schema. 51 proc run_rbu_cachesize {target rbu cachesize temp_limit} { 52 sqlite3rbu rbu $target $rbu 63 proc step_rbu_cachesize {target rbu stepsize cachesize temp_limit} { 66 sqlite3rbu rbu $target $rbu
|
| H A D | rbufault2.test | 22 CREATE TABLE target(x UNIQUE, y, z, PRIMARY KEY(y)); 23 INSERT INTO target VALUES(1, 2, 3); 24 INSERT INTO target VALUES(4, 5, 6); 47 {1 {SQLITE_CONSTRAINT - UNIQUE constraint failed: target.x}} \
|
| H A D | rbucrash.test | 25 # Set up a target database and an rbu update database. The target 46 # target database created above. Set $::rbu_num_steps accordingly 74 # Run one or more tests using the target (test.db) and rbu (test.db2) 86 # in doing so and that the final target database is as expected.
|
| H A D | rbu3.test | 20 # Run the RBU in file $rbu on target database $target until completion. 22 proc run_rbu {target rbu} { 23 sqlite3rbu rbu $target $rbu 36 # affinities on the source and target table do not match.
|
| H A D | rbu9.test | 67 # Run the RBU in file $rbu on target database $target until completion. 69 proc run_rbu {target rbu} { 70 sqlite3rbu rbu $target $rbu
|
| H A D | rbufts.test | 27 proc step_rbu {target rbu} { 29 sqlite3rbu rbu $target $rbu 37 proc apply_rbu_update {target sql} { 43 step_rbu $target rbu.db
|
| H A D | rbuprogress.test | 67 proc do_sp_test {tn bReopen target rbu reslist} { 69 if {$bReopen==0} { sqlite3rbu rbu $target $rbu } 72 if {$bReopen} { sqlite3rbu rbu $target $rbu } 85 # target table in the rbu database. And one more to move the *-oal 230 proc do_phase2_test {tn bReopen target rbu nStep} { 234 sqlite3rbu rbu $target $rbu 247 sqlite3rbu rbu $target $rbu
|
| H A D | rbu5.test | 75 # Argument $target is the name of an SQLite database file. $sql is an SQL 78 # the same effect as the script. The target database is not modified by 81 proc generate_rbu_db {target rbu sql} { 84 forcecopy $target copy.db 97 dbRbu eval { ATTACH $target AS orig }
|
| H A D | rbu12.test | 39 # Initialize a target (test.db) and rbu (rbu.db) database. 44 # Using connection 2, open a read transaction on the target database. 119 # Initialize a target (test.db) and rbu (rbu.db) database. 177 # Initialize a target (test.db) and rbu (rbu.db) database.
|
| H A D | rbufault.test | 20 proc copy_if_exists {src target} { 22 forcecopy $src $target 24 forcedelete $target 214 # target db is as expected. And that "PRAGMA integrity_check"
|
| H A D | rbudiff.test | 32 proc step_rbu {target rbu} { 34 sqlite3rbu rbu $target $rbu 42 proc apply_rbudiff {sql target} { 48 step_rbu $target rbu.db
|
| /sqlite-3.40.0/test/ |
| H A D | releasetest_data.tcl | 420 set target [lindex $args end] 561 puts "make $target \"CFLAGS=\$CFLAGS\" \"OPTS=\$OPTS\" $makeOpts" 565 set makecmd "nmake /f %SRCDIR%\\Makefile.msc TOP=%SRCDIR% $target " 593 foreach {config vars target} $::Platforms($p) { 598 if {[lsearch $target fuzztest]<0 && [lsearch $target test]<0} { 613 [lsearch $target "valgrindtest"]<0 614 && [lsearch $target "alltest"]<0 615 && [lsearch $target "fulltestonly"]<0 618 if {$vars!=""} { set target "$vars $target" } 619 lappend lTest "$config \"$target\"" [all …]
|
| H A D | wapptest.tcl | 64 set target [dict get $t target] 130 || "checksymbols" in $target 131 || "valgrindtest" in $target 140 Veryquick { set target quicktest } 143 set target testfixture 145 set target testfixture.exe 151 lappend G(test_array) [dict create config $config target $target] 339 proc slave_launch {name target dir} { 419 set target [dict get $j target] 424 slave_launch $name $target $dir [all …]
|
| H A D | symlink2.test | 25 proc createWin32Symlink { link target } { 27 [file nativename $link] [file nativename $target] 39 set target [info nameofexecutable] 40 if {[catch {createWin32Symlink $link $target}] == 0} {
|
| H A D | vacuum-into.test | 79 db func target target 80 proc target {} { return "test.db2" } 82 execsql { VACUUM INTO target() }
|
| H A D | fts1k.test | 58 set phrase1 "$word $word $word target $word $word $word" 59 set phrase2 "$word $word $word target $word $word $word" 66 execsql {SELECT rowid, length(snippet(t4)) FROM t4 WHERE t4 MATCH 'target'}
|
| H A D | fts2l.test | 58 set phrase1 "$word $word $word target $word $word $word" 59 set phrase2 "$word $word $word target $word $word $word" 66 execsql {SELECT rowid, length(snippet(t4)) FROM t4 WHERE t4 MATCH 'target'}
|
| H A D | fts3al.test | 62 set phrase1 "$word $word $word target $word $word $word" 63 set phrase2 "$word $word $word target $word $word $word" 70 execsql {SELECT rowid, length(snippet(t4)) FROM t4 WHERE t4 MATCH 'target'}
|
| H A D | malloc5.test | 48 proc value_in_range {target x args} { 51 if {$v<$target*$x} {return $v} 52 if {$v>$target/$x} {return $v} 54 return "number between [expr {int($target*$x)}] and [expr {int($target/$x)}]"
|
| /sqlite-3.40.0/src/ |
| H A D | expr.c | 3993 target); in exprCodeInlineFunction() 4002 target); in exprCodeInlineFunction() 4014 target); in exprCodeInlineFunction() 4036 return target; in exprCodeInlineFunction() 4081 return target; in sqlite3IndexedExprLookup() 4108 assert( target>0 && target<=pParse->nMem ); in sqlite3ExprCodeTarget() 4235 return target; in sqlite3ExprCodeTarget() 4239 return target; in sqlite3ExprCodeTarget() 4245 return target; in sqlite3ExprCodeTarget() 4251 return target; in sqlite3ExprCodeTarget() [all …]
|
| /sqlite-3.40.0/tool/ |
| H A D | soak1.tcl | 18 set target [lindex $argv 1] 20 if {$target==""} {set target fulltest} 55 global makefilename target scene 60 exec make -f $makefilename $target >@stdout 2>@stdout
|
| /sqlite-3.40.0/ext/session/ |
| H A D | session3.test | 30 # session3-1.1.*: Table does not exist in target db. 31 # session3-1.2.*: Table has wrong number of columns in target db. 32 # session3-1.3.*: Table has wrong PK columns in target db.
|