Home
last modified time | relevance | path

Searched refs:nByte (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/sqlite3/
H A Dsqlite3.h1480 void (*xDlError)(sqlite3_vfs*, int nByte, char *zErrMsg);
1483 int (*xRandomness)(sqlite3_vfs*, int nByte, char *zOut);
4297 int nByte, /* Maximum length of zSql in bytes. */
4304 int nByte, /* Maximum length of zSql in bytes. */
4311 int nByte, /* Maximum length of zSql in bytes. */
4319 int nByte, /* Maximum length of zSql in bytes. */
4326 int nByte, /* Maximum length of zSql in bytes. */
4333 int nByte, /* Maximum length of zSql in bytes. */
H A Dshell.c3343 int nByte = sqlite3_value_bytes(argv[0]); in sha3Func() local
3358 SHA3Update(&cx, sqlite3_value_blob(argv[0]), nByte); in sha3Func()
3360 SHA3Update(&cx, sqlite3_value_text(argv[0]), nByte); in sha3Func()
7859 sqlite3_int64 nByte = nNew*sizeof(FsdirLevel); in fsdirNext() local
7860 FsdirLevel *aNew = (FsdirLevel*)sqlite3_realloc64(pCur->aLvl, nByte); in fsdirNext()
8864 static void apndDlError(sqlite3_vfs*, int nByte, char *zErrMsg);
8867 static int apndRandomness(sqlite3_vfs*, int nByte, char *zOut);
9299 static void apndDlError(sqlite3_vfs *pVfs, int nByte, char *zErrMsg){ in apndDlError() argument
9300 ORIGVFS(pVfs)->xDlError(ORIGVFS(pVfs), nByte, zErrMsg); in apndDlError()
9308 static int apndRandomness(sqlite3_vfs *pVfs, int nByte, char *zBufOut){ in apndRandomness() argument
[all …]
H A Dsqlite3.c1793 void (*xDlError)(sqlite3_vfs*, int nByte, char *zErrMsg);
1796 int (*xRandomness)(sqlite3_vfs*, int nByte, char *zOut);
4610 int nByte, /* Maximum length of zSql in bytes. */
4617 int nByte, /* Maximum length of zSql in bytes. */
4624 int nByte, /* Maximum length of zSql in bytes. */
4632 int nByte, /* Maximum length of zSql in bytes. */
4639 int nByte, /* Maximum length of zSql in bytes. */
4646 int nByte, /* Maximum length of zSql in bytes. */
21193 SQLITE_PRIVATE int sqlite3Utf8CharLen(const char *pData, int nByte);
24088 int nByte = sqlite3PagerMemUsed(pPager); in sqlite3_db_status() local
[all …]
/freebsd/contrib/sqlite3/tea/generic/
H A Dtclsqlite3.c1396 int nByte; in dbPrepareAndBind() local
1417 nByte = sizeof(SqlPreparedStmt) + nVar*sizeof(Tcl_Obj *); in dbPrepareAndBind()
1418 pPreStmt = (SqlPreparedStmt*)Tcl_Alloc(nByte); in dbPrepareAndBind()
1419 memset(pPreStmt, 0, nByte); in dbPrepareAndBind()
2476 int nByte; /* Number of bytes in an SQL string */ in DbObjCmd() local
2531 nByte = strlen30(zSql); in DbObjCmd()
2544 zSql = malloc( nByte + 50 + nCol*2 ); in DbObjCmd()
2549 sqlite3_snprintf(nByte+50, zSql, "INSERT OR %q INTO '%q' VALUES(?", in DbObjCmd()