Home
last modified time | relevance | path

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

/external/sqlite/dist/
Dsqlite3.h811 void (*xDlError)(sqlite3_vfs*, int nByte, char *zErrMsg);
814 int (*xRandomness)(sqlite3_vfs*, int nByte, char *zOut);
2432 int nByte, /* Maximum length of zSql in bytes. */
2439 int nByte, /* Maximum length of zSql in bytes. */
2446 int nByte, /* Maximum length of zSql in bytes. */
2453 int nByte, /* Maximum length of zSql in bytes. */
Dsqlite3.c1335 void (*xDlError)(sqlite3_vfs*, int nByte, char *zErrMsg);
1338 int (*xRandomness)(sqlite3_vfs*, int nByte, char *zOut);
2956 int nByte, /* Maximum length of zSql in bytes. */
2963 int nByte, /* Maximum length of zSql in bytes. */
2970 int nByte, /* Maximum length of zSql in bytes. */
2977 int nByte, /* Maximum length of zSql in bytes. */
8979 u8 nByte; /* Size in byte of text or blob. */ member
10318 SQLITE_PRIVATE int sqlite3Utf8CharLen(const char *pData, int nByte);
12198 SQLITE_PRIVATE void sqlite3OsDlError(sqlite3_vfs *pVfs, int nByte, char *zBufOut){ in sqlite3OsDlError() argument
12199 pVfs->xDlError(pVfs, nByte, zBufOut); in sqlite3OsDlError()
[all …]
Dshell.c2497 int nByte; /* Number of bytes in an SQL string */ in do_meta_command() local
2518 nByte = strlen30(zSql); in do_meta_command()
2530 zSql = malloc( nByte + 20 + nCol*2 ); in do_meta_command()
2535 sqlite3_snprintf(nByte+20, zSql, "INSERT INTO '%q' VALUES(?", zTable); in do_meta_command()
Dsqlite3.c.orig1335 void (*xDlError)(sqlite3_vfs*, int nByte, char *zErrMsg);
1338 int (*xRandomness)(sqlite3_vfs*, int nByte, char *zOut);
1777 #define SQLITE_CONFIG_HEAP 8 /* void*, int nByte, int min */
2889 ** ^If the nByte argument is less than zero, then zSql is read up to the
2890 ** first zero terminator. ^If nByte is non-negative, then it is the maximum
2891 ** number of bytes read from zSql. ^When nByte is non-negative, the
2893 ** the nByte-th byte, whichever comes first. If the caller knows
2895 ** performance advantage to be gained by passing an nByte parameter that
2956 int nByte, /* Maximum length of zSql in bytes. */
2963 int nByte, /* Maximum length of zSql in bytes. */
[all …]
Dsqlite3.h.orig811 void (*xDlError)(sqlite3_vfs*, int nByte, char *zErrMsg);
814 int (*xRandomness)(sqlite3_vfs*, int nByte, char *zOut);
1253 #define SQLITE_CONFIG_HEAP 8 /* void*, int nByte, int min */
2365 ** ^If the nByte argument is less than zero, then zSql is read up to the
2366 ** first zero terminator. ^If nByte is non-negative, then it is the maximum
2367 ** number of bytes read from zSql. ^When nByte is non-negative, the
2369 ** the nByte-th byte, whichever comes first. If the caller knows
2371 ** performance advantage to be gained by passing an nByte parameter that
2432 int nByte, /* Maximum length of zSql in bytes. */
2439 int nByte, /* Maximum length of zSql in bytes. */
[all …]