Home
last modified time | relevance | path

Searched refs:sqlite3_bind_text16 (Results 1 – 10 of 10) sorted by relevance

/sqlite-3.40.0/test/
H A Dbind.test323 sqlite3_bind_text16 $VM 1 [encoding convertto unicode hellothere] 10
324 sqlite3_bind_text16 $VM 2 [encoding convertto unicode ""] 0
325 sqlite3_bind_text16 $VM 3 [encoding convertto unicode world] 10
335 sqlite3_bind_text16 $VM 1 [encoding convertto unicode hi\000yall\000] 16
336 sqlite3_bind_text16 $VM 2 [encoding convertto unicode hi\000yall\000] 14
337 sqlite3_bind_text16 $VM 3 [encoding convertto unicode hi\000yall\000] -1
402 catch { sqlite3_bind_text16 $VM 4 "abc" 2 }
H A Denc4.test76 sqlite3_bind_text16 $S 1 [encoding convertto unicode $val] [expr $x*2]
H A Dsqllimits1.test340 catch {sqlite3_bind_text16 $::STMT 1 $::str1 -1} res
350 catch {sqlite3_bind_text16 $::STMT 1 $::str1 $np1} res
360 catch {sqlite3_bind_text16 $::STMT 1 $::str1 $n} res
H A Dtrace3.test208 list [sqlite3_bind_text16 $STMT 1 \
H A Dmalloc.test242 sqlite3_bind_text16 $::STMT 1 $::bomstr 60
486 sqlite3_bind_text16 -static $::STMT 1 $static_string 112
/sqlite-3.40.0/src/
H A Dloadext.c42 # define sqlite3_bind_text16 0 macro
149 sqlite3_bind_text16,
H A Dsqlite3ext.h399 #define sqlite3_bind_text16 sqlite3_api->bind_text16 macro
H A Dvdbeapi.c1610 int sqlite3_bind_text16( in sqlite3_bind_text16() function
H A Dsqlite.h.in4457 ** ^If the third parameter to sqlite3_bind_text() or sqlite3_bind_text16()
4462 ** ^If the third parameter to sqlite3_bind_text16() is not NULL, then
4473 ** machine for sqlite3_bind_text16() or the byte order specified in
4482 ** ^If the fourth parameter to sqlite3_bind_text() or sqlite3_bind_text16()
4488 ** or sqlite3_bind_text16() or sqlite3_bind_text64() then
4567 int sqlite3_bind_text16(sqlite3_stmt*, int, const void*, int, void(*)(void*));
5835 ** the same [byte-order determination rules] as [sqlite3_bind_text16()].
H A Dtest1.c3915 rc = sqlite3_bind_text16(pStmt, idx, (void *)value, bytes, xDel); in test_bind_text16()