Home
last modified time | relevance | path

Searched refs:fname (Results 1 – 16 of 16) sorted by relevance

/sqlite-3.40.0/ext/fts5/test/
H A Dfts5al.test47 1 "fname()"
48 2 "fname(1)"
49 3 "fname(1,2)"
52 6 "fname('abc')"
53 7 "fname('a''bc')"
54 8 "fname('''abc')"
55 9 "fname('abc''')"
58 8 "fname('''abc' )"
59 9 "fname( 'abc''' )"
74 2 "fname"
[all …]
/sqlite-3.40.0/ext/wasm/common/
H A Dwhwasmutil.js1216 target.xCall = function(fname, ...args){ argument
1217 const f = target.xGet(fname);
1218 if(!(f instanceof Function)) toss("Exported symbol",fname,"is not a function.");
1219 if(f.length!==args.length) __argcMismatch(fname,f.length)
1469 target.xWrap = function(fname, resultType, ...argTypes){ argument
1473 const xf = target.xGet(fname);
1474 if(argTypes.length!==xf.length) __argcMismatch(fname, xf.length);
1485 ? __argcMismatch(fname, xf.length)
1489 if(args.length!==xf.length) __argcMismatch(fname, xf.length);
1599 target.xCallWrapped = function(fname, resultType, argTypes, ...args){ argument
[all …]
/sqlite-3.40.0/tool/
H A Dstack_usage.tcl47 foreach {depth fname} $sd break
48 puts [format {%6d %s} $depth $fname]
/sqlite-3.40.0/ext/wasm/
H A Dspeedtest1-worker.js88 App.vfsUnlink = function(pDb, fname){ argument
90 if(pVfs) S.wasm.sqlite3_wasm_vfs_unlink(pVfs, fname||0);
/sqlite-3.40.0/test/
H A Dzipfile.test438 foreach {tn fname} {
444 INSERT INTO x1(name, data) VALUES($fname, NULL);
445 } [list 1 "duplicate name: \"$fname/\""]
447 INSERT INTO x1(name, data) VALUES($fname || '/', NULL);
448 } [list 1 "duplicate name: \"$fname/\""]
450 INSERT INTO x1(name, data) VALUES($fname, 'abcd');
451 } [list 1 "duplicate name: \"$fname\""]
H A Ddescidx3.test45 proc get_file_format {{fname test.db}} {
46 return [hexio_get_int [hexio_read $fname 44 4]]
H A Ddescidx2.test42 proc get_file_format {{fname test.db}} {
43 return [hexio_get_int [hexio_read $fname 44 4]]
H A Davfs.test69 proc fosAvfs {fname} {
70 if {[file size $fname] < 25} {
73 if {[catch {set fd [open $fname rb]}]} {
H A Dexclusive.test263 proc filestate {fname} {
266 if {[file exists $fname]} {
268 set hdr [hexio_read $fname 0 28]
H A Dalter3.test50 proc get_file_format {{fname test.db}} {
51 return [hexio_get_int [hexio_read $fname 44 4]]
H A Ddescidx1.test41 proc get_file_format {{fname test.db}} {
42 return [hexio_get_int [hexio_read $fname 44 4]]
H A Dcapi3.test161 # proc sqlite3_open {fname options} {sqlite3_open_new $fname $options}
713 proc get_file_format {{fname test.db}} {
714 return [hexio_get_int [hexio_read $fname 44 4]]
H A Dalter2.test54 proc get_file_format {{fname test.db}} {
55 return [hexio_get_int [hexio_read $fname 44 4]]
H A Dcapi3c.test151 # proc sqlite3_open {fname options} {sqlite3_open_new $fname $options}
658 proc get_file_format {{fname test.db}} {
659 return [hexio_get_int [hexio_read $fname 44 4]]
/sqlite-3.40.0/ext/session/
H A DsessionB.test363 foreach fname {test.db2 test.db3 test.db4 test.db5} {
364 forcedelete $fname
365 forcecopy test.db $fname
/sqlite-3.40.0/ext/wasm/api/
H A Dsqlite3-api-glue.js97 const fI64Disabled = function(fname){ argument
98 return ()=>toss(fname+"() disabled due to lack",