Home
last modified time | relevance | path

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

/external/sqlite/dist/
Dshell.c648 char *zOut; in doublequote() local
654 zOut = sqlite3_malloc(nIn*2+3); in doublequote()
655 zCsr = zOut; in doublequote()
666 sqlite3_result_text(context, zOut, -1, SQLITE_TRANSIENT); in doublequote()
667 sqlite3_free(zOut); in doublequote()
679 char *zOut = 0; in multireplace() local
703 zNew = (char*)sqlite3_realloc(zOut, nMalloc); in multireplace()
708 zOut = zNew; in multireplace()
712 memcpy(&zOut[nOut], zCopy, nCopy); in multireplace()
717 sqlite3_result_text(context, zOut, nOut, SQLITE_TRANSIENT); in multireplace()
[all …]
Dsqlite3.h809 int (*xFullPathname)(sqlite3_vfs*, const char *zName, int nOut, char *zOut);
814 int (*xRandomness)(sqlite3_vfs*, int nByte, char *zOut);
Dsqlite3.c1333 int (*xFullPathname)(sqlite3_vfs*, const char *zName, int nOut, char *zOut);
1338 int (*xRandomness)(sqlite3_vfs*, int nByte, char *zOut);
17964 #define WRITE_UTF8(zOut, c) { \ argument
17966 *zOut++ = (u8)(c&0xFF); \
17969 *zOut++ = 0xC0 + (u8)((c>>6)&0x1F); \
17970 *zOut++ = 0x80 + (u8)(c & 0x3F); \
17973 *zOut++ = 0xE0 + (u8)((c>>12)&0x0F); \
17974 *zOut++ = 0x80 + (u8)((c>>6) & 0x3F); \
17975 *zOut++ = 0x80 + (u8)(c & 0x3F); \
17977 *zOut++ = 0xF0 + (u8)((c>>18) & 0x07); \
[all …]
Dsqlite3.c.orig1314 ** of good-quality randomness into zOut. The return value is
1333 int (*xFullPathname)(sqlite3_vfs*, const char *zName, int nOut, char *zOut);
1338 int (*xRandomness)(sqlite3_vfs*, int nByte, char *zOut);
17959 #define WRITE_UTF8(zOut, c) { \
17961 *zOut++ = (u8)(c&0xFF); \
17964 *zOut++ = 0xC0 + (u8)((c>>6)&0x1F); \
17965 *zOut++ = 0x80 + (u8)(c & 0x3F); \
17968 *zOut++ = 0xE0 + (u8)((c>>12)&0x0F); \
17969 *zOut++ = 0x80 + (u8)((c>>6) & 0x3F); \
17970 *zOut++ = 0x80 + (u8)(c & 0x3F); \
[all …]
Dsqlite3.h.orig790 ** of good-quality randomness into zOut. The return value is
809 int (*xFullPathname)(sqlite3_vfs*, const char *zName, int nOut, char *zOut);
814 int (*xRandomness)(sqlite3_vfs*, int nByte, char *zOut);